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/realtextdec.c | |
parent | ad5d72b1235a58442c231c3e9b8d78fc4e7b422e (diff) | |
download | ffmpeg-bad4e112a24a5c857120c7a7b3bff9a304f6acaa.tar.gz |
lavf: use ff_subtitles_queue_seek() for text subtitles demuxers.
Diffstat (limited to 'libavformat/realtextdec.c')
-rw-r--r-- | libavformat/realtextdec.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/realtextdec.c b/libavformat/realtextdec.c index cc7c1841b5..6a6a8447f1 100644 --- a/libavformat/realtextdec.c +++ b/libavformat/realtextdec.c @@ -125,6 +125,14 @@ static int realtext_read_packet(AVFormatContext *s, AVPacket *pkt) return ff_subtitles_queue_read_packet(&rt->q, pkt); } +static int realtext_read_seek(AVFormatContext *s, int stream_index, + int64_t min_ts, int64_t ts, int64_t max_ts, int flags) +{ + RealTextContext *rt = s->priv_data; + return ff_subtitles_queue_seek(&rt->q, s, stream_index, + min_ts, ts, max_ts, flags); +} + static int realtext_read_close(AVFormatContext *s) { RealTextContext *rt = s->priv_data; @@ -139,6 +147,7 @@ AVInputFormat ff_realtext_demuxer = { .read_probe = realtext_probe, .read_header = realtext_read_header, .read_packet = realtext_read_packet, + .read_seek2 = realtext_read_seek, .read_close = realtext_read_close, .flags = AVFMT_GENERIC_INDEX, .extensions = "rt", |