/src/ffmpeg/libavformat/jacosubdec.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright (c) 2012 Clément Bœsch |
3 | | * |
4 | | * This file is part of FFmpeg. |
5 | | * |
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. |
10 | | * |
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. |
15 | | * |
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 |
19 | | */ |
20 | | |
21 | | /** |
22 | | * @file |
23 | | * JACOsub subtitle demuxer |
24 | | * @see http://unicorn.us.com/jacosub/jscripts.html |
25 | | * @todo Support P[ALETTE] directive. |
26 | | */ |
27 | | |
28 | | #include "avformat.h" |
29 | | #include "demux.h" |
30 | | #include "internal.h" |
31 | | #include "subtitles.h" |
32 | | #include "libavcodec/jacosub.h" |
33 | | #include "libavutil/avstring.h" |
34 | | #include "libavutil/bprint.h" |
35 | | #include "libavutil/intreadwrite.h" |
36 | | |
37 | | typedef struct { |
38 | | FFDemuxSubtitlesQueue q; |
39 | | int shift; |
40 | | unsigned timeres; |
41 | | } JACOsubContext; |
42 | | |
43 | | static int timed_line(const char *ptr) |
44 | 4.84M | { |
45 | 4.84M | char c; |
46 | 4.84M | int fs, fe; |
47 | 4.84M | return (sscanf(ptr, "%*u:%*u:%*u.%*u %*u:%*u:%*u.%*u %c", &c) == 1 || |
48 | 4.84M | (sscanf(ptr, "@%u @%u %c", &fs, &fe, &c) == 3 && fs < fe)); |
49 | 4.84M | } |
50 | | |
51 | | static int jacosub_probe(const AVProbeData *p) |
52 | 358k | { |
53 | 358k | const char *ptr = p->buf; |
54 | 358k | const char *ptr_end = p->buf + p->buf_size; |
55 | | |
56 | 358k | if (AV_RB24(ptr) == 0xEFBBBF) |
57 | 240 | ptr += 3; /* skip UTF-8 BOM */ |
58 | | |
59 | 367k | while (ptr < ptr_end) { |
60 | 2.06M | while (jss_whitespace(*ptr)) |
61 | 1.69M | ptr++; |
62 | 363k | if (*ptr != '#' && *ptr != '\n') { |
63 | 354k | if (timed_line(ptr)) |
64 | 126 | return AVPROBE_SCORE_EXTENSION + 1; |
65 | 354k | return 0; |
66 | 354k | } |
67 | 9.13k | ptr += ff_subtitles_next_line(ptr); |
68 | 9.13k | } |
69 | 3.69k | return 0; |
70 | 358k | } |
71 | | |
72 | | static const char * const cmds[] = { |
73 | | "CLOCKPAUSE", |
74 | | "DIRECTIVE", |
75 | | "FONT", |
76 | | "HRES", |
77 | | "INCLUDE", |
78 | | "PALETTE", |
79 | | "QUANTIZE", |
80 | | "RAMP", |
81 | | "SHIFT", |
82 | | "TIMERES", |
83 | | }; |
84 | | |
85 | | static int get_jss_cmd(char k) |
86 | 1.32M | { |
87 | 1.32M | int i; |
88 | | |
89 | 1.32M | k = av_toupper(k); |
90 | 12.0M | for (i = 0; i < FF_ARRAY_ELEMS(cmds); i++) |
91 | 12.0M | if (k == cmds[i][0]) |
92 | 1.31M | return i; |
93 | 16.1k | return -1; |
94 | 1.32M | } |
95 | | |
96 | | static const char *read_ts(JACOsubContext *jacosub, const char *buf, |
97 | | int64_t *start, int64_t *duration) |
98 | 1.12M | { |
99 | 1.12M | int len; |
100 | 1.12M | unsigned hs, ms, ss, fs; // hours, minutes, seconds, frame start |
101 | 1.12M | unsigned he, me, se, fe; // hours, minutes, seconds, frame end |
102 | 1.12M | int ts_start, ts_end; |
103 | 1.12M | int64_t ts_start64, ts_end64; |
104 | | |
105 | | /* timed format */ |
106 | 1.12M | if (sscanf(buf, "%u:%u:%u.%u %u:%u:%u.%u %n", |
107 | 1.12M | &hs, &ms, &ss, &fs, |
108 | 1.12M | &he, &me, &se, &fe, &len) == 8) { |
109 | 1.40k | ts_start = (hs*3600 + ms*60 + ss) * jacosub->timeres + fs; |
110 | 1.40k | ts_end = (he*3600 + me*60 + se) * jacosub->timeres + fe; |
111 | 1.40k | goto shift_and_ret; |
112 | 1.40k | } |
113 | | |
114 | | /* timestamps format */ |
115 | 1.12M | if (sscanf(buf, "@%u @%u %n", &ts_start, &ts_end, &len) == 2) |
116 | 1.12M | goto shift_and_ret; |
117 | | |
118 | 202 | return NULL; |
119 | | |
120 | 1.12M | shift_and_ret: |
121 | 1.12M | ts_start64 = (ts_start + (int64_t)jacosub->shift) * 100LL / jacosub->timeres; |
122 | 1.12M | ts_end64 = (ts_end + (int64_t)jacosub->shift) * 100LL / jacosub->timeres; |
123 | 1.12M | *start = ts_start64; |
124 | 1.12M | *duration = ts_end64 - ts_start64; |
125 | 1.12M | return buf + len; |
126 | 1.12M | } |
127 | | |
128 | | static int get_shift(unsigned timeres, const char *buf) |
129 | 602 | { |
130 | 602 | int sign = 1; |
131 | 602 | int h = 0, m = 0, s = 0, d = 0; |
132 | 602 | int64_t ret; |
133 | 602 | #define SSEP "%*1[.:]" |
134 | 602 | int n = sscanf(buf, "%d"SSEP"%d"SSEP"%d"SSEP"%d", &h, &m, &s, &d); |
135 | 602 | #undef SSEP |
136 | | |
137 | 602 | if (h == INT_MIN) |
138 | 2 | return 0; |
139 | | |
140 | 600 | if (*buf == '-' || h < 0) { |
141 | 148 | sign = -1; |
142 | 148 | h = FFABS(h); |
143 | 148 | } |
144 | | |
145 | 600 | ret = 0; |
146 | 600 | switch (n) { |
147 | 131 | case 1: h = 0; //clear all in case of a single parameter |
148 | 333 | case 2: s = m; m = h; h = 0; //shift into second subsecondd |
149 | 413 | case 3: d = s; s = m; m = h; h = 0; //shift into minute second subsecond |
150 | 600 | } |
151 | | |
152 | 600 | ret = (int64_t)h*3600 + (int64_t)m*60 + s; |
153 | 600 | if (FFABS(ret) > (INT64_MAX - FFABS((int64_t)d)) / timeres) |
154 | 35 | return 0; |
155 | 565 | ret = sign * (ret * timeres + d); |
156 | | |
157 | 565 | if ((int)ret != ret) |
158 | 84 | ret = 0; |
159 | | |
160 | 565 | return ret; |
161 | 600 | } |
162 | | |
163 | | static int jacosub_read_header(AVFormatContext *s) |
164 | 6.15k | { |
165 | 6.15k | AVBPrint header; |
166 | 6.15k | AVIOContext *pb = s->pb; |
167 | 6.15k | char line[JSS_MAX_LINESIZE]; |
168 | 6.15k | JACOsubContext *jacosub = s->priv_data; |
169 | 6.15k | int shift_set = 0; // only the first shift matters |
170 | 6.15k | int merge_line = 0; |
171 | 6.15k | int i, ret; |
172 | | |
173 | 6.15k | AVStream *st = avformat_new_stream(s, NULL); |
174 | 6.15k | if (!st) |
175 | 0 | return AVERROR(ENOMEM); |
176 | 6.15k | avpriv_set_pts_info(st, 64, 1, 100); |
177 | 6.15k | st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE; |
178 | 6.15k | st->codecpar->codec_id = AV_CODEC_ID_JACOSUB; |
179 | | |
180 | 6.15k | jacosub->timeres = 30; |
181 | | |
182 | 6.15k | av_bprint_init(&header, 1024+AV_INPUT_BUFFER_PADDING_SIZE, 4096); |
183 | | |
184 | 4.81M | while (!avio_feof(pb)) { |
185 | 4.80M | int cmd_len; |
186 | 4.80M | const char *p = line; |
187 | 4.80M | int64_t pos = avio_tell(pb); |
188 | 4.80M | int len = ff_get_line(pb, line, sizeof(line)); |
189 | | |
190 | 4.80M | p = jss_skip_whitespace(p); |
191 | | |
192 | | /* queue timed line */ |
193 | 4.80M | if (merge_line || timed_line(p)) { |
194 | 1.44M | AVPacket *sub; |
195 | | |
196 | 1.44M | sub = ff_subtitles_queue_insert(&jacosub->q, line, len, merge_line); |
197 | 1.44M | if (!sub) { |
198 | 0 | av_bprint_finalize(&header, NULL); |
199 | 0 | return AVERROR(ENOMEM); |
200 | 0 | } |
201 | 1.44M | sub->pos = pos; |
202 | 1.44M | merge_line = len > 1 && !strcmp(&line[len - 2], "\\\n"); |
203 | 1.44M | continue; |
204 | 1.44M | } |
205 | | |
206 | | /* skip all non-compiler commands and focus on the command */ |
207 | 3.36M | if (*p != '#') |
208 | 2.03M | continue; |
209 | 1.32M | p++; |
210 | 1.32M | i = get_jss_cmd(p[0]); |
211 | 1.32M | if (i == -1) |
212 | 16.1k | continue; |
213 | | |
214 | | /* trim command + spaces */ |
215 | 1.31M | cmd_len = strlen(cmds[i]); |
216 | 1.31M | if (av_strncasecmp(p, cmds[i], cmd_len) == 0) |
217 | 280 | p += cmd_len; |
218 | 1.31M | else |
219 | 1.31M | p++; |
220 | 1.31M | p = jss_skip_whitespace(p); |
221 | | |
222 | | /* handle commands which affect the whole script */ |
223 | 1.31M | switch (cmds[i][0]) { |
224 | 1.25M | case 'S': // SHIFT command affect the whole script... |
225 | 1.25M | if (!shift_set) { |
226 | 602 | jacosub->shift = get_shift(jacosub->timeres, p); |
227 | 602 | shift_set = 1; |
228 | 602 | } |
229 | 1.25M | av_bprintf(&header, "#S %s", p); |
230 | 1.25M | break; |
231 | 50.4k | case 'T': { // ...but must be placed after TIMERES |
232 | 50.4k | int64_t timeres = strtol(p, NULL, 10); |
233 | 50.4k | if (timeres <= 0 || timeres > UINT32_MAX) { |
234 | 45.3k | jacosub->timeres = 30; |
235 | 45.3k | } else { |
236 | 5.09k | jacosub->timeres = timeres; |
237 | 5.09k | av_bprintf(&header, "#T %s", p); |
238 | 5.09k | } |
239 | 50.4k | break; |
240 | 0 | } |
241 | 1.31M | } |
242 | 1.31M | } |
243 | | |
244 | | /* general/essential directives in the extradata */ |
245 | 6.15k | ret = ff_bprint_to_codecpar_extradata(st->codecpar, &header); |
246 | 6.15k | if (ret < 0) |
247 | 47 | return ret; |
248 | | |
249 | | /* SHIFT and TIMERES affect the whole script so packet timing can only be |
250 | | * done in a second pass */ |
251 | 1.12M | for (i = 0; i < jacosub->q.nb_subs; i++) { |
252 | 1.12M | AVPacket *sub = jacosub->q.subs[i]; |
253 | 1.12M | read_ts(jacosub, sub->data, &sub->pts, &sub->duration); |
254 | 1.12M | } |
255 | 6.10k | ff_subtitles_queue_finalize(s, &jacosub->q); |
256 | | |
257 | 6.10k | return 0; |
258 | 6.15k | } |
259 | | |
260 | | const FFInputFormat ff_jacosub_demuxer = { |
261 | | .p.name = "jacosub", |
262 | | .p.long_name = NULL_IF_CONFIG_SMALL("JACOsub subtitle format"), |
263 | | .priv_data_size = sizeof(JACOsubContext), |
264 | | .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP, |
265 | | .read_probe = jacosub_probe, |
266 | | .read_header = jacosub_read_header, |
267 | | .read_packet = ff_subtitles_read_packet, |
268 | | .read_seek2 = ff_subtitles_read_seek, |
269 | | .read_close = ff_subtitles_read_close, |
270 | | }; |