Browse Source

avcodec/h263dec: Workaround H263 end padding bug

Fixes: H263PaddingBugFixVID_6647.MOV

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
ec6d043f8e
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      libavcodec/h263dec.c

+ 11
- 0
libavcodec/h263dec.c View File

@@ -319,6 +319,17 @@ static int decode_slice(MpegEncContext *s)
}
}

if (s->codec_id == AV_CODEC_ID_H263 &&
(s->workaround_bugs & FF_BUG_AUTODETECT) &&
get_bits_left(&s->gb) >= 8 &&
get_bits_left(&s->gb) < 300 &&
s->pict_type == AV_PICTURE_TYPE_I &&
show_bits(&s->gb, 8) == 0 &&
!s->data_partitioning) {

s->padding_bug_score += 32;
}

if (s->workaround_bugs & FF_BUG_AUTODETECT) {
if (s->padding_bug_score > -2 && !s->data_partitioning)
s->workaround_bugs |= FF_BUG_NO_PADDING;


Loading…
Cancel
Save