mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
propresenc: fix missed LE pixfmt occurance
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
64a41dc21f
commit
3c32a941b7
@ -533,7 +533,7 @@ static av_cold int prores_encode_init(AVCodecContext *avctx)
|
||||
int i;
|
||||
ProresContext* ctx = avctx->priv_data;
|
||||
|
||||
if (avctx->pix_fmt != PIX_FMT_YUV422P10LE) {
|
||||
if (avctx->pix_fmt != PIX_FMT_YUV422P10) {
|
||||
av_log(avctx, AV_LOG_ERROR, "need YUV422P10\n");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user