remove useless assignment (st is never read after this line)
Originally committed as revision 14985 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8e44312d3f
commit
d63f529df7
1 changed files with 0 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue