Merge init & declaration of buf_end.
From ffmbc0.3 Originally committed as revision 20863 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -28,7 +28,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
|
|||||||
const uint8_t *buf, int buf_size)
|
const uint8_t *buf, int buf_size)
|
||||||
{
|
{
|
||||||
ParseContext1 *pc = s->priv_data;
|
ParseContext1 *pc = s->priv_data;
|
||||||
const uint8_t *buf_end;
|
const uint8_t *buf_end = buf + buf_size;
|
||||||
uint32_t start_code;
|
uint32_t start_code;
|
||||||
int frame_rate_index, ext_type, bytes_left;
|
int frame_rate_index, ext_type, bytes_left;
|
||||||
int frame_rate_ext_n, frame_rate_ext_d;
|
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;
|
int did_set_size=0;
|
||||||
//FIXME replace the crap with get_bits()
|
//FIXME replace the crap with get_bits()
|
||||||
s->repeat_pict = 0;
|
s->repeat_pict = 0;
|
||||||
buf_end = buf + buf_size;
|
|
||||||
while (buf < buf_end) {
|
while (buf < buf_end) {
|
||||||
start_code= -1;
|
start_code= -1;
|
||||||
buf= ff_find_start_code(buf, buf_end, &start_code);
|
buf= ff_find_start_code(buf, buf_end, &start_code);
|
||||||
|
Reference in New Issue
Block a user