You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
Make truncated mpeg4 GOP header check a bit more specific.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user