diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-04-02 14:56:59 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-04-02 14:56:59 +0000 |
commit | ddf8e75edede697af90eac4995022cae2965f403 (patch) | |
tree | 1feffa99d766ee1b10dda1c1a835db2d7295ea9b /libavformat/rmdec.c | |
parent | 0b9535b9a2a8a95c0626866ef792881ca51c0926 (diff) | |
download | ffmpeg-ddf8e75edede697af90eac4995022cae2965f403.tar.gz |
Remove dead initialization.
Originally committed as revision 22781 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r-- | libavformat/rmdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index eb58d66640..24c1e54d8c 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -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++) { |