From b0239dbdbae18384a2571ea766bb6f33af1bf5ec Mon Sep 17 00:00:00 2001 From: rbultje Date: Thu, 30 Jul 2009 15:05:33 +0000 Subject: [PATCH] Remove old_flags variable, which is a duplicate of the flags variable. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19540 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavformat/rmdec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index f3c3019de..10e7c2a3d 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -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; -- 2.11.4.GIT