Make truncated mpeg4 GOP header check a bit more specific.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-02-14 14:44:17 +01:00
parent 49d57a8269
commit 499c2d41d7
1 changed files with 1 additions and 1 deletions

View File

@ -1495,7 +1495,7 @@ end:
static int mpeg4_decode_gop_header(MpegEncContext * s, GetBitContext *gb){
int hours, minutes, seconds;
if(!show_bits(gb, 18)){
if(!show_bits(gb, 23)){
av_log(s->avctx, AV_LOG_WARNING, "GOP header invalid\n");
return -1;
}