Browse Source

Remove dead initialization.

Originally committed as revision 22781 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Ronald S. Bultje 16 years ago
parent
commit
ddf8e75ede
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/rmdec.c

+ 2
- 2
libavformat/rmdec.c View File

@@ -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++) {


Loading…
Cancel
Save