Commit 550becb5 authored by aurel's avatar aurel

remove useless assignment (st is never read after this line)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14985 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b890e130
...@@ -1557,7 +1557,6 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int f ...@@ -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 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); 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 */ /* first, we try the format specific seek */
if (s->iformat->read_seek) if (s->iformat->read_seek)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment