diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-12 10:28:27 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-12 10:28:27 +0000 |
commit | 8bcb147f54f25126476587205ee8374bed4e39dc (patch) | |
tree | 8e63ec4f9b30b52ccffd7d7621dd1311b4c5ced2 /libavformat/dv.c | |
parent | 4471e59b24a7092d92c42997788b77a3f4100ff9 (diff) | |
download | ffmpeg-8bcb147f54f25126476587205ee8374bed4e39dc.tar.gz |
generic cur_dts update
removing cur_dts update code from dv again, i think its not needed
Originally committed as revision 3588 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r-- | libavformat/dv.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index 10dcee64f9..c2af7f7b7c 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -913,15 +913,6 @@ static int dv_read_seek(AVFormatContext *s, int stream_index, } } - for(i = 0; i < s->nb_streams; i++) { - AVStream *st = s->streams[stream_index]; - AVStream *st2 = s->streams[i]; - - st->cur_dts = av_rescale(timestamp, - st2->time_base.den * (int64_t)st ->time_base.num, - st ->time_base.den * (int64_t)st2->time_base.num); - } - return url_fseek(&s->pb, offset, SEEK_SET); } |