You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
mpeg12dec: dont consider parsing extradata as having achived sync.
Fixes Ticket67 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -2346,7 +2346,8 @@ static int decode_chunks(AVCodecContext *avctx,
|
|||||||
case SEQ_START_CODE:
|
case SEQ_START_CODE:
|
||||||
if (last_code == 0) {
|
if (last_code == 0) {
|
||||||
mpeg1_decode_sequence(avctx, buf_ptr, input_size);
|
mpeg1_decode_sequence(avctx, buf_ptr, input_size);
|
||||||
s->sync=1;
|
if(buf != avctx->extradata)
|
||||||
|
s->sync=1;
|
||||||
} else {
|
} else {
|
||||||
av_log(avctx, AV_LOG_ERROR, "ignoring SEQ_START_CODE after %X\n", last_code);
|
av_log(avctx, AV_LOG_ERROR, "ignoring SEQ_START_CODE after %X\n", last_code);
|
||||||
if (avctx->error_recognition >= FF_ER_EXPLODE)
|
if (avctx->error_recognition >= FF_ER_EXPLODE)
|
||||||
|
Reference in New Issue
Block a user