diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-12-14 11:57:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-12-14 11:57:33 +0000 |
commit | 7debef33f8fb38ade91d88b2caceed41ebc60cbf (patch) | |
tree | 513c46d1fefb114f37d9985206a60ad10681ea04 | |
parent | b8af4fe9a51bc054507d6f56375eb754faa1409d (diff) | |
download | ffmpeg-7debef33f8fb38ade91d88b2caceed41ebc60cbf.tar.gz |
Merge init & declaration of buf_end.
From ffmbc0.3
Originally committed as revision 20863 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegvideo_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo_parser.c b/libavcodec/mpegvideo_parser.c index df998a3a37..28ed590320 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); |