diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-23 21:43:54 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-02 00:06:03 +0100 |
commit | bad4e112a24a5c857120c7a7b3bff9a304f6acaa (patch) | |
tree | 2b7e6eeff24abf49b7ac04b3bd147c565ba2997c /libavformat/jacosubdec.c | |
parent | ad5d72b1235a58442c231c3e9b8d78fc4e7b422e (diff) | |
download | ffmpeg-bad4e112a24a5c857120c7a7b3bff9a304f6acaa.tar.gz |
lavf: use ff_subtitles_queue_seek() for text subtitles demuxers.
Diffstat (limited to 'libavformat/jacosubdec.c')
-rw-r--r-- | libavformat/jacosubdec.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/jacosubdec.c b/libavformat/jacosubdec.c index f9defd292d..1c58e3bf25 100644 --- a/libavformat/jacosubdec.c +++ b/libavformat/jacosubdec.c @@ -248,6 +248,14 @@ static int jacosub_read_packet(AVFormatContext *s, AVPacket *pkt) return ff_subtitles_queue_read_packet(&jacosub->q, pkt); } +static int jacosub_read_seek(AVFormatContext *s, int stream_index, + int64_t min_ts, int64_t ts, int64_t max_ts, int flags) +{ + JACOsubContext *jacosub = s->priv_data; + return ff_subtitles_queue_seek(&jacosub->q, s, stream_index, + min_ts, ts, max_ts, flags); +} + AVInputFormat ff_jacosub_demuxer = { .name = "jacosub", .long_name = NULL_IF_CONFIG_SMALL("JACOsub subtitle format"), @@ -255,6 +263,7 @@ AVInputFormat ff_jacosub_demuxer = { .read_probe = jacosub_probe, .read_header = jacosub_read_header, .read_packet = jacosub_read_packet, + .read_seek2 = jacosub_read_seek, .read_close = jacosub_read_close, .flags = AVFMT_GENERIC_INDEX, }; |