X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fmpegvideo_parser.c;h=28ed590320b3e9a662d1d38abe391dc218dd3b65;hb=f9310cbb2fcfcd9e41cafb3789c3b7ae3b90dbf4;hp=df998a3a37b9caa2f35c39cb8b731a2d99a02c2b;hpb=f50270c9c0d6339f11d766ef9493cf41d93b33de;p=ffmpeg diff --git a/libavcodec/mpegvideo_parser.c b/libavcodec/mpegvideo_parser.c index df998a3a37b..28ed590320b 100644 --- a/libavcodec/mpegvideo_parser.c +++ b/libavcodec/mpegvideo_parser.c @@ -28,7 +28,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s, const uint8_t *buf, int buf_size) { ParseContext1 *pc = s->priv_data; - const uint8_t *buf_end; + const uint8_t *buf_end = buf + buf_size; uint32_t start_code; int frame_rate_index, ext_type, bytes_left; int frame_rate_ext_n, frame_rate_ext_d; @@ -37,7 +37,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s, int did_set_size=0; //FIXME replace the crap with get_bits() s->repeat_pict = 0; - buf_end = buf + buf_size; + while (buf < buf_end) { start_code= -1; buf= ff_find_start_code(buf, buf_end, &start_code);