[FFmpeg-cvslog] r22022 - trunk/libavformat/bink.c

pross subversion
Wed Feb 24 12:43:33 CET 2010


Author: pross
Date: Wed Feb 24 12:43:33 2010
New Revision: 22022

Log:
low-complexity Bink file seeking

Modified:
   trunk/libavformat/bink.c

Modified: trunk/libavformat/bink.c
==============================================================================
--- trunk/libavformat/bink.c	Wed Feb 24 12:30:38 2010	(r22021)
+++ trunk/libavformat/bink.c	Wed Feb 24 12:43:33 2010	(r22022)
@@ -241,6 +241,19 @@ static int read_packet(AVFormatContext *
     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 = {
     "bink",
     NULL_IF_CONFIG_SMALL("Bink"),
@@ -248,4 +261,6 @@ AVInputFormat bink_demuxer = {
     probe,
     read_header,
     read_packet,
+    NULL,
+    read_seek,
 };



More information about the ffmpeg-cvslog mailing list