From 0910488a16217564201204e1a37ba9a9b6f92991 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 21 Feb 2016 04:21:34 +0100 Subject: avformat/riffenc: Also check codec tag before setting raw_pal_avi Signed-off-by: Michael Niedermayer --- libavformat/riffenc.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/riffenc.c') diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c index b626aaa0a1..0d958e312f 100644 --- a/libavformat/riffenc.c +++ b/libavformat/riffenc.c @@ -212,6 +212,7 @@ void ff_put_bmp_header(AVIOContext *pb, AVCodecContext *enc, int raw_pal_avi; raw_pal_avi = !for_asf && enc->codec_id == AV_CODEC_ID_RAWVIDEO && + !enc->codec_tag && enc->bits_per_coded_sample >= 1 && enc->bits_per_coded_sample <= 8; if (!enc->extradata_size && raw_pal_avi) extradata_size = 4 * (1 << enc->bits_per_coded_sample); -- cgit v1.2.3