diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-04-09 17:03:20 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-04-09 17:03:20 +0000 |
commit | 6207bb209e1aae9b696b6147a12d52246e1a8811 (patch) | |
tree | dff66d683b617b865e6f29e0d3c23b5fd231625b /libavformat/matroska.c | |
parent | 79f26346869ca68ec7139bc95ca596f7156bc5e9 (diff) | |
download | ffmpeg-6207bb209e1aae9b696b6147a12d52246e1a8811.tar.gz |
add support for seeking to a keyframe instead of a random frame
Originally committed as revision 8698 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r-- | libavformat/matroska.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index d0ee9afc5d..a8a855f630 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -343,6 +343,10 @@ typedef struct MatroskaDemuxContext { /* The index for seeking. */ int num_indexes; MatroskaDemuxIndex *index; + + /* What to skip before effectively reading a packet. */ + int skip_to_keyframe; + AVStream *skip_to_stream; } MatroskaDemuxContext; /* @@ -2436,6 +2440,13 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size, size -= 1; if (is_keyframe == -1) is_keyframe = flags & 1 ? PKT_FLAG_KEY : 0; + + if (matroska->skip_to_keyframe) { + if (!is_keyframe || st != matroska->skip_to_stream) + return res; + matroska->skip_to_keyframe = 0; + } + switch ((flags & 0x06) >> 1) { case 0x0: /* no lacing */ laces = 1; @@ -2782,6 +2793,8 @@ matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, /* do the seek */ url_fseek(&s->pb, st->index_entries[index].pos, SEEK_SET); + matroska->skip_to_keyframe = !(flags & AVSEEK_FLAG_ANY); + matroska->skip_to_stream = st; matroska->num_packets = 0; matroska->peek_id = 0; return 0; |