From 3c32a941b76a88f385c794823ee2c45e82ea1737 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 30 Oct 2011 04:07:44 +0100 Subject: [PATCH] propresenc: fix missed LE pixfmt occurance Signed-off-by: Michael Niedermayer --- libavcodec/proresenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c index 57c6aa2fe4..1d10304655 100644 --- a/libavcodec/proresenc.c +++ b/libavcodec/proresenc.c @@ -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; }