Remove old_flags variable, which is a duplicate of the flags variable.
authorRonald S. Bultje <rsbultje@gmail.com>
Thu, 30 Jul 2009 15:05:33 +0000 (15:05 +0000)
committerRonald S. Bultje <rsbultje@gmail.com>
Thu, 30 Jul 2009 15:05:33 +0000 (15:05 +0000)
Originally committed as revision 19540 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rmdec.c

index f3c3019dec2abe0372a4944b1049c0f7f3626f8e..10e7c2a3dfe1414584e3979e856b938d4e6f364d 100644 (file)
@@ -810,7 +810,7 @@ static int rm_read_packet(AVFormatContext *s, AVPacket *pkt)
     AVStream *st;
     int i, len, res, seq = 1;
     int64_t timestamp, pos;
-    int old_flags, flags;
+    int flags;
 
     for (;;) {
         if (rm->audio_pkt_cnt) {
@@ -836,10 +836,9 @@ static int rm_read_packet(AVFormatContext *s, AVPacket *pkt)
             if(len<0 || url_feof(s->pb))
                 return AVERROR(EIO);
 
-            old_flags = flags;
             res = ff_rm_parse_packet (s, s->pb, st, st->priv_data, len, pkt,
                                       &seq, flags, timestamp);
-            if((old_flags&2) && (seq&0x7F) == 1)
+            if((flags&2) && (seq&0x7F) == 1)
                 av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME);
             if (res)
                 continue;