forked from FFmpeg/FFmpeg
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
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue