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/avstring.h"
26 #include "libavutil/bprint.h"
27 #include "libavutil/intreadwrite.h"
28 
29 typedef struct SCCContext {
30     FFDemuxSubtitlesQueue q;
31 } SCCContext;
32 
scc_probe(const AVProbeData * p)33 static int scc_probe(const AVProbeData *p)
34 {
35     char buf[18];
36     FFTextReader tr;
37 
38     ff_text_init_buf(&tr, p->buf, p->buf_size);
39 
40     while (ff_text_peek_r8(&tr) == '\r' || ff_text_peek_r8(&tr) == '\n')
41         ff_text_r8(&tr);
42 
43     ff_text_read(&tr, buf, sizeof(buf));
44 
45     if (!memcmp(buf, "Scenarist_SCC V1.0", 18))
46         return AVPROBE_SCORE_MAX;
47 
48     return 0;
49 }
50 
convert(uint8_t x)51 static int convert(uint8_t x)
52 {
53     if (x >= 'a')
54         x -= 87;
55     else if (x >= 'A')
56         x -= 55;
57     else
58         x -= '0';
59     return x;
60 }
61 
scc_read_header(AVFormatContext * s)62 static int scc_read_header(AVFormatContext *s)
63 {
64     SCCContext *scc = s->priv_data;
65     AVStream *st = avformat_new_stream(s, NULL);
66     char line2[4096], line[4096];
67     int64_t pos, ts, next_ts = AV_NOPTS_VALUE;
68     ptrdiff_t 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) || next_ts == AV_NOPTS_VALUE || line2[0]) {
81         char *saveptr = NULL, *lline;
82         int hh, mm, ss, fs, i;
83         AVPacket *sub;
84 
85         if (next_ts == AV_NOPTS_VALUE) {
86             while (!ff_text_eof(&tr)) {
87                 len = ff_subtitles_read_line(&tr, line, sizeof(line));
88                 if (len <= 13)
89                     continue;
90                 if (!strncmp(line, "Scenarist_SCC V1.0", 18))
91                     continue;
92                 if (av_sscanf(line, "%d:%d:%d%*[:;]%d", &hh, &mm, &ss, &fs) == 4)
93                     break;
94             }
95 
96             ts = (hh * 3600LL + mm * 60LL + ss) * 1000LL + fs * 33LL;
97 
98             while (!ff_text_eof(&tr)) {
99                 len = ff_subtitles_read_line(&tr, line2, sizeof(line2));
100                 if (len <= 13)
101                     continue;
102 
103                 if (av_sscanf(line2, "%d:%d:%d%*[:;]%d", &hh, &mm, &ss, &fs) == 4)
104                     break;
105             }
106         } else {
107             memmove(line, line2, sizeof(line));
108             line2[0] = 0;
109 
110             while (!ff_text_eof(&tr)) {
111                 len = ff_subtitles_read_line(&tr, line2, sizeof(line2));
112                 if (len <= 13)
113                     continue;
114 
115                 if (av_sscanf(line2, "%d:%d:%d%*[:;]%d", &hh, &mm, &ss, &fs) == 4)
116                     break;
117             }
118         }
119 
120         next_ts = (hh * 3600LL + mm * 60LL + ss) * 1000LL + fs * 33LL;
121 
122         pos = ff_text_pos(&tr);
123         lline = (char *)&line;
124         lline += 12;
125 
126         for (i = 0; i < 4095; i += 3) {
127             char *ptr = av_strtok(lline, " ", &saveptr);
128             char c1, c2, c3, c4;
129             uint8_t o1, o2;
130 
131             if (!ptr)
132                 break;
133 
134             if (av_sscanf(ptr, "%c%c%c%c", &c1, &c2, &c3, &c4) != 4)
135                 break;
136             o1 = convert(c2) | (convert(c1) << 4);
137             o2 = convert(c4) | (convert(c3) << 4);
138 
139             lline = NULL;
140 
141             if (i > 12 && o1 == 0x94 && o2 == 0x20 && saveptr &&
142                 (av_strncasecmp(saveptr, "942f", 4) && !av_strncasecmp(saveptr, "942c", 4))) {
143 
144                 out[i] = 0;
145 
146                 sub = ff_subtitles_queue_insert(&scc->q, out, i, 0);
147                 if (!sub)
148                     goto fail;
149 
150                 sub->pos = pos;
151                 pos += i;
152                 sub->pts = ts;
153                 sub->duration = i * 11;
154                 ts += sub->duration;
155                 i = 0;
156             }
157 
158             out[i+0] = 0xfc;
159             out[i+1] = o1;
160             out[i+2] = o2;
161         }
162 
163         out[i] = 0;
164 
165         sub = ff_subtitles_queue_insert(&scc->q, out, i, 0);
166         if (!sub)
167             goto fail;
168 
169         sub->pos = pos;
170         sub->pts = ts;
171         sub->duration = next_ts - ts;
172         ts = next_ts;
173     }
174 
175     ff_subtitles_queue_finalize(s, &scc->q);
176 
177     return 0;
178 fail:
179     ff_subtitles_queue_clean(&scc->q);
180     return AVERROR(ENOMEM);
181 }
182 
scc_read_packet(AVFormatContext * s,AVPacket * pkt)183 static int scc_read_packet(AVFormatContext *s, AVPacket *pkt)
184 {
185     SCCContext *scc = s->priv_data;
186     return ff_subtitles_queue_read_packet(&scc->q, pkt);
187 }
188 
scc_read_seek(AVFormatContext * s,int stream_index,int64_t min_ts,int64_t ts,int64_t max_ts,int flags)189 static int scc_read_seek(AVFormatContext *s, int stream_index,
190                          int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
191 {
192     SCCContext *scc = s->priv_data;
193     return ff_subtitles_queue_seek(&scc->q, s, stream_index,
194                                    min_ts, ts, max_ts, flags);
195 }
196 
scc_read_close(AVFormatContext * s)197 static int scc_read_close(AVFormatContext *s)
198 {
199     SCCContext *scc = s->priv_data;
200     ff_subtitles_queue_clean(&scc->q);
201     return 0;
202 }
203 
204 AVInputFormat ff_scc_demuxer = {
205     .name           = "scc",
206     .long_name      = NULL_IF_CONFIG_SMALL("Scenarist Closed Captions"),
207     .priv_data_size = sizeof(SCCContext),
208     .read_probe     = scc_probe,
209     .read_header    = scc_read_header,
210     .read_packet    = scc_read_packet,
211     .read_seek2     = scc_read_seek,
212     .read_close     = scc_read_close,
213     .extensions     = "scc",
214 };
215