]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
remove useless assignment (st is never read after this line)
authoraurel <aurel@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Tue, 26 Aug 2008 20:38:04 +0000 (20:38 +0000)
committeraurel <aurel@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Tue, 26 Aug 2008 20:38:04 +0000 (20:38 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14985 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavformat/utils.c

index 1cc8bac23af90a5acb4a937d33365fd5e6b59367..a3a0a06757744a940128f0f9c70e969a89dc8919 100644 (file)
@@ -1557,7 +1557,6 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int f
        /* timestamp for default must be expressed in AV_TIME_BASE units */
         timestamp = av_rescale(timestamp, st->time_base.den, AV_TIME_BASE * (int64_t)st->time_base.num);
     }
-    st= s->streams[stream_index];
 
     /* first, we try the format specific seek */
     if (s->iformat->read_seek)