Browse Source

* 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
tags/v0.5
Nathan Kurz Roman Shaposhnik 21 years ago
parent
commit
0bf4e2b8a3
1 changed files with 12 additions and 3 deletions
  1. +12
    -3
      libavformat/dv.c

+ 12
- 3
libavformat/dv.c View File

@@ -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);

// 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 sys->frame_size * ((timestamp * sys->frame_rate) /
(AV_TIME_BASE * sys->frame_rate_base));
return offset;
}

/************************************************************


Loading…
Cancel
Save