Commit 3c32a941 authored by Michael Niedermayer's avatar Michael Niedermayer

propresenc: fix missed LE pixfmt occurance

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 64a41dc2
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment