2 * Copyright (c) 2012-2013 Clément Bœsch <u pkh me>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "subtitles.h"
23 #include "avio_internal.h"
24 #include "libavutil/avassert.h"
25 #include "libavutil/avstring.h"
27 void ff_text_init_avio(void *s, FFTextReader *r, AVIOContext *pb)
31 r->buf_pos = r->buf_len = 0;
33 for (i = 0; i < 2; i++)
34 r->buf[r->buf_len++] = avio_r8(r->pb);
35 if (strncmp("\xFF\xFE", r->buf, 2) == 0) {
38 } else if (strncmp("\xFE\xFF", r->buf, 2) == 0) {
42 r->buf[r->buf_len++] = avio_r8(r->pb);
43 if (strncmp("\xEF\xBB\xBF", r->buf, 3) == 0) {
48 if (s && (r->type == FF_UTF16LE || r->type == FF_UTF16BE))
49 av_log(s, AV_LOG_INFO,
50 "UTF16 is automatically converted to UTF8, do not specify a character encoding\n");
53 void ff_text_init_buf(FFTextReader *r, void *buf, size_t size)
55 memset(&r->buf_pb, 0, sizeof(r->buf_pb));
56 ffio_init_context(&r->buf_pb, buf, size, 0, NULL, NULL, NULL, NULL);
57 ff_text_init_avio(NULL, r, &r->buf_pb);
60 int64_t ff_text_pos(FFTextReader *r)
62 return avio_tell(r->pb) - r->buf_len + r->buf_pos;
65 int ff_text_r8(FFTextReader *r)
69 if (r->buf_pos < r->buf_len)
70 return r->buf[r->buf_pos++];
71 if (r->type == FF_UTF16LE) {
72 GET_UTF16(val, avio_rl16(r->pb), return 0;)
73 } else if (r->type == FF_UTF16BE) {
74 GET_UTF16(val, avio_rb16(r->pb), return 0;)
76 return avio_r8(r->pb);
82 PUT_UTF8(val, tmp, r->buf[r->buf_len++] = tmp;)
83 return r->buf[r->buf_pos++]; // buf_len is at least 1
86 void ff_text_read(FFTextReader *r, char *buf, size_t size)
88 for ( ; size > 0; size--)
89 *buf++ = ff_text_r8(r);
92 int ff_text_eof(FFTextReader *r)
94 return r->buf_pos >= r->buf_len && avio_feof(r->pb);
97 int ff_text_peek_r8(FFTextReader *r)
100 if (r->buf_pos < r->buf_len)
101 return r->buf[r->buf_pos];
103 if (!avio_feof(r->pb)) {
111 AVPacket *ff_subtitles_queue_insert(FFDemuxSubtitlesQueue *q,
112 const uint8_t *event, size_t len, int merge)
114 AVPacket *subs, *sub;
116 if (merge && q->nb_subs > 0) {
117 /* merge with previous event */
120 sub = &q->subs[q->nb_subs - 1];
122 if (av_grow_packet(sub, len) < 0)
124 memcpy(sub->data + old_len, event, len);
128 if (q->nb_subs >= INT_MAX/sizeof(*q->subs) - 1)
130 subs = av_fast_realloc(q->subs, &q->allocated_size,
131 (q->nb_subs + 1) * sizeof(*q->subs));
135 sub = &subs[q->nb_subs++];
136 if (av_new_packet(sub, len) < 0)
138 sub->flags |= AV_PKT_FLAG_KEY;
139 sub->pts = sub->dts = 0;
140 memcpy(sub->data, event, len);
145 static int cmp_pkt_sub_ts_pos(const void *a, const void *b)
147 const AVPacket *s1 = a;
148 const AVPacket *s2 = b;
149 if (s1->pts == s2->pts)
150 return FFDIFFSIGN(s1->pos, s2->pos);
151 return FFDIFFSIGN(s1->pts , s2->pts);
154 static int cmp_pkt_sub_pos_ts(const void *a, const void *b)
156 const AVPacket *s1 = a;
157 const AVPacket *s2 = b;
158 if (s1->pos == s2->pos) {
159 if (s1->pts == s2->pts)
161 return s1->pts > s2->pts ? 1 : -1;
163 return s1->pos > s2->pos ? 1 : -1;
166 static void drop_dups(void *log_ctx, FFDemuxSubtitlesQueue *q)
170 for (i = 1; i < q->nb_subs; i++) {
171 const int last_id = i - 1 - drop;
172 const AVPacket *last = &q->subs[last_id];
174 if (q->subs[i].pts == last->pts &&
175 q->subs[i].duration == last->duration &&
176 q->subs[i].stream_index == last->stream_index &&
177 !strcmp(q->subs[i].data, last->data)) {
179 av_packet_unref(&q->subs[i]);
182 q->subs[last_id + 1] = q->subs[i];
183 memset(&q->subs[i], 0, sizeof(q->subs[i])); // for safety
189 av_log(log_ctx, AV_LOG_WARNING, "Dropping %d duplicated subtitle events\n", drop);
193 void ff_subtitles_queue_finalize(void *log_ctx, FFDemuxSubtitlesQueue *q)
197 qsort(q->subs, q->nb_subs, sizeof(*q->subs),
198 q->sort == SUB_SORT_TS_POS ? cmp_pkt_sub_ts_pos
199 : cmp_pkt_sub_pos_ts);
200 for (i = 0; i < q->nb_subs; i++)
201 if (q->subs[i].duration < 0 && i < q->nb_subs - 1)
202 q->subs[i].duration = q->subs[i + 1].pts - q->subs[i].pts;
204 if (!q->keep_duplicates)
205 drop_dups(log_ctx, q);
208 int ff_subtitles_queue_read_packet(FFDemuxSubtitlesQueue *q, AVPacket *pkt)
210 AVPacket *sub = q->subs + q->current_sub_idx;
212 if (q->current_sub_idx == q->nb_subs)
214 if (av_packet_ref(pkt, sub) < 0) {
215 return AVERROR(ENOMEM);
219 q->current_sub_idx++;
223 static int search_sub_ts(const FFDemuxSubtitlesQueue *q, int64_t ts)
225 int s1 = 0, s2 = q->nb_subs - 1;
228 return AVERROR(ERANGE);
236 return q->subs[s1].pts <= q->subs[s2].pts ? s1 : s2;
238 if (q->subs[mid].pts <= ts)
245 int ff_subtitles_queue_seek(FFDemuxSubtitlesQueue *q, AVFormatContext *s, int stream_index,
246 int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
248 if (flags & AVSEEK_FLAG_BYTE) {
249 return AVERROR(ENOSYS);
250 } else if (flags & AVSEEK_FLAG_FRAME) {
251 if (ts < 0 || ts >= q->nb_subs)
252 return AVERROR(ERANGE);
253 q->current_sub_idx = ts;
255 int i, idx = search_sub_ts(q, ts);
260 for (i = idx; i < q->nb_subs && q->subs[i].pts < min_ts; i++)
261 if (stream_index == -1 || q->subs[i].stream_index == stream_index)
263 for (i = idx; i > 0 && q->subs[i].pts > max_ts; i--)
264 if (stream_index == -1 || q->subs[i].stream_index == stream_index)
267 ts_selected = q->subs[idx].pts;
268 if (ts_selected < min_ts || ts_selected > max_ts)
269 return AVERROR(ERANGE);
271 /* look back in the latest subtitles for overlapping subtitles */
272 for (i = idx - 1; i >= 0; i--) {
273 int64_t pts = q->subs[i].pts;
274 if (q->subs[i].duration <= 0 ||
275 (stream_index != -1 && q->subs[i].stream_index != stream_index))
277 if (pts >= min_ts && pts > ts_selected - q->subs[i].duration)
283 /* If the queue is used to store multiple subtitles streams (like with
284 * VobSub) and the stream index is not specified, we need to make sure
285 * to focus on the smallest file position offset for a same timestamp;
286 * queue is ordered by pts and then filepos, so we can take the first
287 * entry for a given timestamp. */
288 if (stream_index == -1)
289 while (idx > 0 && q->subs[idx - 1].pts == q->subs[idx].pts)
292 q->current_sub_idx = idx;
297 void ff_subtitles_queue_clean(FFDemuxSubtitlesQueue *q)
301 for (i = 0; i < q->nb_subs; i++)
302 av_packet_unref(&q->subs[i]);
304 q->nb_subs = q->allocated_size = q->current_sub_idx = 0;
307 int ff_smil_extract_next_text_chunk(FFTextReader *tr, AVBPrint *buf, char *c)
312 if (!*c) // cached char?
317 end_chr = *c == '<' ? '>' : '<';
319 av_bprint_chars(buf, *c, 1);
322 } while (*c != end_chr && *c);
323 if (end_chr == '>') {
324 av_bprint_chars(buf, '>', 1);
330 const char *ff_smil_get_attr_ptr(const char *s, const char *attr)
333 const size_t len = strlen(attr);
337 if (!in_quotes && av_isspace(*s))
339 in_quotes ^= *s == '"'; // XXX: support escaping?
342 while (av_isspace(*s))
344 if (!av_strncasecmp(s, attr, len) && s[len] == '=')
345 return s + len + 1 + (s[len + 1] == '"');
350 static inline int is_eol(char c)
352 return c == '\r' || c == '\n';
355 void ff_subtitles_read_text_chunk(FFTextReader *tr, AVBPrint *buf)
357 char eol_buf[5], last_was_cr = 0;
358 int n = 0, i = 0, nb_eol = 0;
360 av_bprint_clear(buf);
363 char c = ff_text_r8(tr);
368 /* ignore all initial line breaks */
369 if (n == 0 && is_eol(c))
372 /* line break buffering: we don't want to add the trailing \r\n */
374 nb_eol += c == '\n' || last_was_cr;
378 if (i == sizeof(eol_buf) - 1)
380 last_was_cr = c == '\r';
384 /* only one line break followed by data: we flush the line breaks
388 av_bprintf(buf, "%s", eol_buf);
392 av_bprint_chars(buf, c, 1);
397 void ff_subtitles_read_chunk(AVIOContext *pb, AVBPrint *buf)
400 tr.buf_pos = tr.buf_len = 0;
403 ff_subtitles_read_text_chunk(&tr, buf);
406 ptrdiff_t ff_subtitles_read_line(FFTextReader *tr, char *buf, size_t size)
411 while (cur + 1 < size) {
412 unsigned char c = ff_text_r8(tr);
414 return ff_text_eof(tr) ? cur : AVERROR_INVALIDDATA;
415 if (c == '\r' || c == '\n')
420 if (ff_text_peek_r8(tr) == '\r')
422 if (ff_text_peek_r8(tr) == '\n')