Commit ddf8e75e authored by Ronald S. Bultje's avatar Ronald S. Bultje

Remove dead initialization.

Originally committed as revision 22781 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0b9535b9
......@@ -535,7 +535,7 @@ static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_
uint32_t state=0xFFFFFFFF;
while(!url_feof(pb)){
int len, num, res, i;
int len, num, i;
*pos= url_ftell(pb) - 3;
if(rm->remaining_len > 0){
num= rm->current_stream;
......@@ -574,7 +574,7 @@ static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_
num = get_be16(pb);
*timestamp = get_be32(pb);
res= get_byte(pb); /* reserved */
get_byte(pb); /* reserved */
*flags = get_byte(pb); /* flags */
}
for(i=0;i<s->nb_streams;i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment