Browse Source

mpeg12: print an error when there was a frame in extradata.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
e20f46481b
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavcodec/mpeg12.c

+ 4
- 1
libavcodec/mpeg12.c View File

@@ -2288,7 +2288,10 @@ static int mpeg_decode_frame(AVCodecContext *avctx,

if (avctx->extradata && !avctx->frame_number) {
int ret = decode_chunks(avctx, picture, data_size, avctx->extradata, avctx->extradata_size);
*data_size = 0;
if(*data_size) {
av_log(avctx, AV_LOG_ERROR, "picture in extradata\n");
*data_size = 0;
}
if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
return ret;
}


Loading…
Cancel
Save