mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/rawdec: Fix nut pal8 test
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
bbb45773b0
commit
efcea77996
@ -121,7 +121,7 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx)
|
||||
if (avctx->codec_tag == MKTAG('B','1','W','0') ||
|
||||
avctx->codec_tag == MKTAG('B','0','W','1'))
|
||||
context->is_nut_mono = 1;
|
||||
else if (avctx->codec_tag == MKTAG('P','A','L','8'))
|
||||
else if (avctx->codec_tag == MKTAG('P','A','L',8))
|
||||
context->is_nut_pal8 = 1;
|
||||
|
||||
if (avctx->codec_tag == AV_RL32("yuv2") &&
|
||||
|
Loading…
Reference in New Issue
Block a user