From e832d769f46531a07e2e306c8e483661a757b1fc Mon Sep 17 00:00:00 2001 From: Martin Vignali Date: Mon, 8 Oct 2018 15:51:41 +0200 Subject: avcodec/proresenc_aw : use for frame flag in the header the same value than the official encoder --- libavcodec/proresenc_anatoliy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/proresenc_anatoliy.c') diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index c723fbf540..6b9ce4a59a 100644 --- a/libavcodec/proresenc_anatoliy.c +++ b/libavcodec/proresenc_anatoliy.c @@ -553,7 +553,7 @@ static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt, if (avctx->profile == FF_PROFILE_PRORES_444) { *buf++ = 0xC2; // 444, not interlaced } else { - *buf++ = 0x83; // 422, not interlaced + *buf++ = 0x82; // 422, not interlaced } *buf++ = 0; *buf++ = pict->color_primaries; -- cgit v1.2.3