Mercurial > libavformat.hg
changeset 523:d788959a01e2 libavformat
* seek in raw DV patch by Nathan Kurz (nate at verse dot com)
author | romansh |
---|---|
date | Sat, 18 Sep 2004 00:32:36 +0000 |
parents | c6043f70304f |
children | 0b9dfb0cddc8 |
files | dv.c |
diffstat | 1 files changed, 12 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/dv.c Thu Sep 16 17:15:58 2004 +0000 +++ b/dv.c Sat Sep 18 00:32:36 2004 +0000 @@ -821,10 +821,19 @@ int64_t dv_frame_offset(DVDemuxContext *c, int64_t timestamp) { - const DVprofile* sys = dv_codec_profile(&c->vst->codec); + const DVprofile* sys; + + // FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk) + sys = dv_codec_profile(&c->vst->codec); - return sys->frame_size * ((timestamp * sys->frame_rate) / - (AV_TIME_BASE * sys->frame_rate_base)); + // timestamp was scaled by time_base/AV_BASE_RATE by av_seek_frame() + int64_t frame_number = av_rescale(sys->frame_rate, timestamp, + (int64_t) 30000 * sys->frame_rate_base); + + // offset must be a multiple of frame_size else dv_read_packet() will fail + int64_t offset = (int64_t) sys->frame_size * frame_number; + + return offset; } /************************************************************