diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-26 20:38:04 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-26 20:38:04 +0000 |
commit | d63f529df7156ff3a38f8efb00fc46b10bac1f62 (patch) | |
tree | a40a5f635d17c08423dffe9bd880a6dcc728b617 | |
parent | 8e44312d3f64bc299e8cf9f87de74ea8ccf110a2 (diff) | |
download | ffmpeg-d63f529df7156ff3a38f8efb00fc46b10bac1f62.tar.gz |
remove useless assignment (st is never read after this line)
Originally committed as revision 14985 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 1cc8bac23a..a3a0a06757 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -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) |