]> git.sesse.net Git - ffmpeg/blob - libavformat/sccdec.c
avformat/sccdec: fix sub->pos values
[ffmpeg] / libavformat / sccdec.c
1 /*
2  * SCC subtitle demuxer
3  * Copyright (c) 2017 Paul B Mahol
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avformat.h"
23 #include "internal.h"
24 #include "subtitles.h"
25 #include "libavutil/bprint.h"
26 #include "libavutil/intreadwrite.h"
27
28 typedef struct SCCContext {
29     FFDemuxSubtitlesQueue q;
30 } SCCContext;
31
32 static int scc_probe(const AVProbeData *p)
33 {
34     char buf[18];
35     FFTextReader tr;
36
37     ff_text_init_buf(&tr, p->buf, p->buf_size);
38
39     while (ff_text_peek_r8(&tr) == '\r' || ff_text_peek_r8(&tr) == '\n')
40         ff_text_r8(&tr);
41
42     ff_text_read(&tr, buf, sizeof(buf));
43
44     if (!memcmp(buf, "Scenarist_SCC V1.0", 18))
45         return AVPROBE_SCORE_MAX;
46
47     return 0;
48 }
49
50 static int convert(uint8_t x)
51 {
52     if (x >= 'a')
53         x -= 87;
54     else if (x >= 'A')
55         x -= 55;
56     else
57         x -= '0';
58     return x;
59 }
60
61 static int scc_read_header(AVFormatContext *s)
62 {
63     SCCContext *scc = s->priv_data;
64     AVStream *st = avformat_new_stream(s, NULL);
65     char line[4096], line2[4096];
66     int64_t ts_start, ts_end;
67     int count = 0, ret = 0;
68     ptrdiff_t len2, len;
69     uint8_t out[4096];
70     FFTextReader tr;
71
72     ff_text_init_avio(s, &tr, s->pb);
73
74     if (!st)
75         return AVERROR(ENOMEM);
76     avpriv_set_pts_info(st, 64, 1, 1000);
77     st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
78     st->codecpar->codec_id   = AV_CODEC_ID_EIA_608;
79
80     while (!ff_text_eof(&tr)) {
81         int64_t current_pos, next_pos;
82         char *saveptr = NULL, *lline;
83         int hh1, mm1, ss1, fs1, i;
84         int hh2, mm2, ss2, fs2;
85         AVPacket *sub;
86
87         if (count == 0) {
88             current_pos = ff_text_pos(&tr);
89             while (!ff_text_eof(&tr)) {
90                 len = ff_subtitles_read_line(&tr, line, sizeof(line));
91                 if (len > 13)
92                     break;
93             }
94         }
95
96         if (!strncmp(line, "Scenarist_SCC V1.0", 18))
97             continue;
98         if (sscanf(line, "%d:%d:%d%*[:;]%d", &hh1, &mm1, &ss1, &fs1) != 4)
99             continue;
100
101         ts_start = (hh1 * 3600LL + mm1 * 60LL + ss1) * 1000LL + fs1 * 33;
102
103         next_pos = ff_text_pos(&tr);
104         while (!ff_text_eof(&tr)) {
105             len2 = ff_subtitles_read_line(&tr, line2, sizeof(line2));
106             if (len2 > 13)
107                 break;
108         }
109         if (sscanf(line2, "%d:%d:%d%*[:;]%d", &hh2, &mm2, &ss2, &fs2) != 4)
110             continue;
111
112         ts_end = (hh2 * 3600LL + mm2 * 60LL + ss2) * 1000LL + fs2 * 33;
113         count++;
114
115 try_again:
116         lline = (char *)&line;
117         lline += 12;
118
119         for (i = 0; i < 4095; i += 3) {
120             char *ptr = av_strtok(lline, " ", &saveptr);
121             char c1, c2, c3, c4;
122
123             if (!ptr)
124                 break;
125
126             if (sscanf(ptr, "%c%c%c%c", &c1, &c2, &c3, &c4) != 4)
127                 break;
128
129             lline = NULL;
130             out[i+0] = 0xfc;
131             out[i+1] = convert(c2) | (convert(c1) << 4);
132             out[i+2] = convert(c4) | (convert(c3) << 4);
133         }
134         out[i] = 0;
135
136         sub = ff_subtitles_queue_insert(&scc->q, out, i, 0);
137         if (!sub)
138             return AVERROR(ENOMEM);
139
140         sub->pos = current_pos;
141         sub->pts = ts_start;
142         sub->duration = FFMAX(1200, ts_end - ts_start);
143         memmove(line, line2, sizeof(line));
144         current_pos = next_pos;
145         line2[0] = 0;
146     }
147
148     if (line[0]) {
149         ts_start = ts_end;
150         goto try_again;
151     }
152
153     ff_subtitles_queue_finalize(s, &scc->q);
154
155     return ret;
156 }
157
158 static int scc_read_packet(AVFormatContext *s, AVPacket *pkt)
159 {
160     SCCContext *scc = s->priv_data;
161     return ff_subtitles_queue_read_packet(&scc->q, pkt);
162 }
163
164 static int scc_read_seek(AVFormatContext *s, int stream_index,
165                          int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
166 {
167     SCCContext *scc = s->priv_data;
168     return ff_subtitles_queue_seek(&scc->q, s, stream_index,
169                                    min_ts, ts, max_ts, flags);
170 }
171
172 static int scc_read_close(AVFormatContext *s)
173 {
174     SCCContext *scc = s->priv_data;
175     ff_subtitles_queue_clean(&scc->q);
176     return 0;
177 }
178
179 AVInputFormat ff_scc_demuxer = {
180     .name           = "scc",
181     .long_name      = NULL_IF_CONFIG_SMALL("Scenarist Closed Captions"),
182     .priv_data_size = sizeof(SCCContext),
183     .read_probe     = scc_probe,
184     .read_header    = scc_read_header,
185     .read_packet    = scc_read_packet,
186     .read_seek2     = scc_read_seek,
187     .read_close     = scc_read_close,
188     .extensions     = "scc",
189 };