avcodec/mjpegbdec: Fix yuv444 pix_fmt detection

by default adobe_transform set to 0 and because of that mjpegb decoder detects yuv444 pix fmt as bgrp
This commit is contained in:
Alex Mogurenko 2019-11-20 13:22:46 +02:00 committed by Carl Eugen Hoyos
parent 176ac987aa
commit b6571777d2
1 changed files with 1 additions and 0 deletions

View File

@ -56,6 +56,7 @@ static int mjpegb_decode_frame(AVCodecContext *avctx,
buf_ptr = buf;
buf_end = buf + buf_size;
s->got_picture = 0;
s->adobe_transform = -1;
read_header:
/* reset on every SOI */