mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 21:40:34 +00:00
* seek in raw DV patch by Nathan Kurz (nate at verse dot com)
Originally committed as revision 3477 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
66d1cdb672
commit
0bf4e2b8a3
@ -821,10 +821,19 @@ int dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user