Commit b88b2558 authored by pross's avatar pross

low-complexity Bink file seeking

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22022 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 15598174
...@@ -241,6 +241,19 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -241,6 +241,19 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
return 0; return 0;
} }
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
{
BinkDemuxContext *bink = s->priv_data;
AVStream *vst = s->streams[0];
/* seek to the first frame */
url_fseek(s->pb, vst->index_entries[0].pos, SEEK_SET);
bink->video_pts = 0;
memset(bink->audio_pts, 0, sizeof(bink->audio_pts));
bink->current_track = -1;
return 0;
}
AVInputFormat bink_demuxer = { AVInputFormat bink_demuxer = {
"bink", "bink",
NULL_IF_CONFIG_SMALL("Bink"), NULL_IF_CONFIG_SMALL("Bink"),
...@@ -248,4 +261,6 @@ AVInputFormat bink_demuxer = { ...@@ -248,4 +261,6 @@ AVInputFormat bink_demuxer = {
probe, probe,
read_header, read_header,
read_packet, read_packet,
NULL,
read_seek,
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment