2 * SubRip subtitle demuxer
3 * Copyright (c) 2010 Aurelien Jacobs <aurel@gnuage.org>
4 * Copyright (c) 2015 Clément Bœsch <u pkh me>
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "subtitles.h"
26 #include "libavutil/bprint.h"
27 #include "libavutil/intreadwrite.h"
30 FFDemuxSubtitlesQueue q;
33 static int srt_probe(const AVProbeData *p)
39 ff_text_init_buf(&tr, p->buf, p->buf_size);
41 while (ff_text_peek_r8(&tr) == '\r' || ff_text_peek_r8(&tr) == '\n')
44 /* Check if the first non-empty line is a number. We do not check what the
45 * number is because in practice it can be anything.
46 * Also, that number can be followed by random garbage, so we can not
47 * unfortunately check that we only have a number. */
48 if (ff_subtitles_read_line(&tr, buf, sizeof(buf)) < 0 ||
49 strtol(buf, &pbuf, 10) < 0 || pbuf == buf)
52 /* Check if the next line matches a SRT timestamp */
53 if (ff_subtitles_read_line(&tr, buf, sizeof(buf)) < 0)
58 if (pbuf[0] >= '0' && pbuf[0] <= '9' && strstr(buf, " --> ")
59 && sscanf(buf, "%*d:%*d:%*d%*1[,.]%*d --> %*d:%*d:%*d%*1[,.]%d", &v) == 1)
60 return AVPROBE_SCORE_MAX;
66 int32_t x1, x2, y1, y2;
72 static int get_event_info(const char *line, struct event_info *ei)
74 int hh1, mm1, ss1, ms1;
75 int hh2, mm2, ss2, ms2;
77 ei->x1 = ei->x2 = ei->y1 = ei->y2 = ei->duration = -1;
78 ei->pts = AV_NOPTS_VALUE;
80 if (sscanf(line, "%d:%d:%d%*1[,.]%d --> %d:%d:%d%*1[,.]%d"
81 "%*[ ]X1:%"PRId32" X2:%"PRId32" Y1:%"PRId32" Y2:%"PRId32,
82 &hh1, &mm1, &ss1, &ms1,
83 &hh2, &mm2, &ss2, &ms2,
84 &ei->x1, &ei->x2, &ei->y1, &ei->y2) >= 8) {
85 const int64_t start = (hh1*3600LL + mm1*60LL + ss1) * 1000LL + ms1;
86 const int64_t end = (hh2*3600LL + mm2*60LL + ss2) * 1000LL + ms2;
87 ei->duration = end - start;
94 static int add_event(FFDemuxSubtitlesQueue *q, AVBPrint *buf, char *line_cache,
95 const struct event_info *ei, int append_cache)
97 if (append_cache && line_cache[0])
98 av_bprintf(buf, "%s\n", line_cache);
101 while (buf->len > 0 && buf->str[buf->len - 1] == '\n')
102 buf->str[--buf->len] = 0;
105 AVPacket *sub = ff_subtitles_queue_insert(q, buf->str, buf->len, 0);
107 return AVERROR(ENOMEM);
108 av_bprint_clear(buf);
111 sub->duration = ei->duration;
113 uint8_t *p = av_packet_new_side_data(sub, AV_PKT_DATA_SUBTITLE_POSITION, 16);
116 AV_WL32(p + 4, ei->y1);
117 AV_WL32(p + 8, ei->x2);
118 AV_WL32(p + 12, ei->y2);
126 static int srt_read_header(AVFormatContext *s)
128 SRTContext *srt = s->priv_data;
130 AVStream *st = avformat_new_stream(s, NULL);
132 char line[4096], line_cache[4096];
133 int has_event_info = 0;
134 struct event_info ei;
136 ff_text_init_avio(s, &tr, s->pb);
139 return AVERROR(ENOMEM);
140 avpriv_set_pts_info(st, 64, 1, 1000);
141 st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
142 st->codecpar->codec_id = AV_CODEC_ID_SUBRIP;
144 av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
148 while (!ff_text_eof(&tr)) {
149 struct event_info tmp_ei;
150 const int64_t pos = ff_text_pos(&tr);
151 ptrdiff_t len = ff_subtitles_read_line(&tr, line, sizeof(line));
156 if (!len || !line[0])
159 if (get_event_info(line, &tmp_ei) < 0) {
166 /* We got some cache and a new line so we assume the cached
167 * line was actually part of the payload */
168 av_bprintf(&buf, "%s\n", line_cache);
172 /* If the line doesn't start with a number, we assume it's part of
173 * the payload, otherwise is likely an event number preceding the
174 * timing information... but we can't be sure of this yet, so we
176 if (strtol(line, &pline, 10) < 0 || line == pline)
177 av_bprintf(&buf, "%s\n", line);
179 strcpy(line_cache, line);
181 if (has_event_info) {
182 /* We have the information of previous event, append it to the
183 * queue. We insert the cached line if and only if the payload
184 * is empty and the cached line is not a standalone number. */
186 const int standalone_number = strtol(line_cache, &pline, 10) >= 0 && pline && !*pline;
187 res = add_event(&srt->q, &buf, line_cache, &ei, !buf.len && !standalone_number);
198 /* Append the last event. Here we force the cache to be flushed, because a
199 * trailing number is more likely to be geniune (for example a copyright
200 * date) and not the event index of an inexistant event */
201 if (has_event_info) {
202 res = add_event(&srt->q, &buf, line_cache, &ei, 1);
207 ff_subtitles_queue_finalize(s, &srt->q);
211 ff_subtitles_queue_clean(&srt->q);
212 av_bprint_finalize(&buf, NULL);
216 static int srt_read_packet(AVFormatContext *s, AVPacket *pkt)
218 SRTContext *srt = s->priv_data;
219 return ff_subtitles_queue_read_packet(&srt->q, pkt);
222 static int srt_read_seek(AVFormatContext *s, int stream_index,
223 int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
225 SRTContext *srt = s->priv_data;
226 return ff_subtitles_queue_seek(&srt->q, s, stream_index,
227 min_ts, ts, max_ts, flags);
230 static int srt_read_close(AVFormatContext *s)
232 SRTContext *srt = s->priv_data;
233 ff_subtitles_queue_clean(&srt->q);
237 AVInputFormat ff_srt_demuxer = {
239 .long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
240 .priv_data_size = sizeof(SRTContext),
241 .read_probe = srt_probe,
242 .read_header = srt_read_header,
243 .read_packet = srt_read_packet,
244 .read_seek2 = srt_read_seek,
245 .read_close = srt_read_close,