mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
mjpegbdec: dont return a picture when there is no picture.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6d1c5ea04a
commit
909a18f73b
@ -136,6 +136,11 @@ read_header:
|
||||
|
||||
//XXX FIXME factorize, this looks very similar to the EOI code
|
||||
|
||||
if(!s->got_picture) {
|
||||
av_log(avctx, AV_LOG_WARNING, "no picture\n");
|
||||
return buf_size;
|
||||
}
|
||||
|
||||
*picture= *s->picture_ptr;
|
||||
*data_size = sizeof(AVFrame);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user