]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/proresenc.c
propresenc: fix missed LE pixfmt occurance
[ffmpeg] / libavcodec / proresenc.c
index 57c6aa2fe4f341a62bc936eb5a66a5f013628ce8..1d103046550dbac0ec7791194660c1a6ce469c3e 100644 (file)
@@ -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;
     }