/src/ffmpeg/libavformat/jacosubdec.c
Line | Count | Source |
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 | 10.8M | { |
45 | 10.8M | char c; |
46 | 10.8M | int fs, fe; |
47 | 10.8M | return (sscanf(ptr, "%*u:%*u:%*u.%*u %*u:%*u:%*u.%*u %c", &c) == 1 || |
48 | 10.8M | (sscanf(ptr, "@%u @%u %c", &fs, &fe, &c) == 3 && fs < fe)); |
49 | 10.8M | } |
50 | | |
51 | | static int jacosub_probe(const AVProbeData *p) |
52 | 958k | { |
53 | 958k | const char *ptr = p->buf; |
54 | 958k | const char *ptr_end = p->buf + p->buf_size; |
55 | | |
56 | 958k | if (AV_RB24(ptr) == 0xEFBBBF) |
57 | 807 | ptr += 3; /* skip UTF-8 BOM */ |
58 | | |
59 | 982k | while (ptr < ptr_end) { |
60 | 5.99M | while (jss_whitespace(*ptr)) |
61 | 5.02M | ptr++; |
62 | 971k | if (*ptr != '#' && *ptr != '\n') { |
63 | 947k | if (timed_line(ptr)) |
64 | 485 | return AVPROBE_SCORE_EXTENSION + 1; |
65 | 946k | return 0; |
66 | 947k | } |
67 | 24.0k | ptr += ff_subtitles_next_line(ptr); |
68 | 24.0k | } |
69 | 11.2k | return 0; |
70 | 958k | } |
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 | 3.32M | { |
87 | 3.32M | int i; |
88 | | |
89 | 3.32M | k = av_toupper(k); |
90 | 29.9M | for (i = 0; i < FF_ARRAY_ELEMS(cmds); i++) |
91 | 29.9M | if (k == cmds[i][0]) |
92 | 3.30M | return i; |
93 | 26.2k | return -1; |
94 | 3.32M | } |
95 | | |
96 | | static const char *read_ts(JACOsubContext *jacosub, const char *buf, |
97 | | int64_t *start, int64_t *duration) |
98 | 2.67M | { |
99 | 2.67M | int len; |
100 | 2.67M | unsigned hs, ms, ss, fs; // hours, minutes, seconds, frame start |
101 | 2.67M | unsigned he, me, se, fe; // hours, minutes, seconds, frame end |
102 | 2.67M | int ts_start, ts_end; |
103 | 2.67M | int64_t ts_start64, ts_end64; |
104 | | |
105 | | /* timed format */ |
106 | 2.67M | if (sscanf(buf, "%u:%u:%u.%u %u:%u:%u.%u %n", |
107 | 2.67M | &hs, &ms, &ss, &fs, |
108 | 2.67M | &he, &me, &se, &fe, &len) == 8) { |
109 | 3.07k | ts_start = (hs*3600 + ms*60 + ss) * jacosub->timeres + fs; |
110 | 3.07k | ts_end = (he*3600 + me*60 + se) * jacosub->timeres + fe; |
111 | 3.07k | goto shift_and_ret; |
112 | 3.07k | } |
113 | | |
114 | | /* timestamps format */ |
115 | 2.67M | if (sscanf(buf, "@%u @%u %n", &ts_start, &ts_end, &len) == 2) |
116 | 2.67M | goto shift_and_ret; |
117 | | |
118 | 409 | return NULL; |
119 | | |
120 | 2.67M | shift_and_ret: |
121 | 2.67M | ts_start64 = (ts_start + (int64_t)jacosub->shift) * 100LL / jacosub->timeres; |
122 | 2.67M | ts_end64 = (ts_end + (int64_t)jacosub->shift) * 100LL / jacosub->timeres; |
123 | 2.67M | *start = ts_start64; |
124 | 2.67M | *duration = ts_end64 - ts_start64; |
125 | 2.67M | return buf + len; |
126 | 2.67M | } |
127 | | |
128 | | static int get_shift(unsigned timeres, const char *buf) |
129 | 844 | { |
130 | 844 | int sign = 1; |
131 | 844 | int h = 0, m = 0, s = 0, d = 0; |
132 | 844 | int64_t ret; |
133 | 844 | #define SSEP "%*1[.:]" |
134 | 844 | int n = sscanf(buf, "%d"SSEP"%d"SSEP"%d"SSEP"%d", &h, &m, &s, &d); |
135 | 844 | #undef SSEP |
136 | | |
137 | 844 | if (h == INT_MIN) |
138 | 2 | return 0; |
139 | | |
140 | 842 | if (*buf == '-' || h < 0) { |
141 | 171 | sign = -1; |
142 | 171 | h = FFABS(h); |
143 | 171 | } |
144 | | |
145 | 842 | ret = 0; |
146 | 842 | switch (n) { |
147 | 156 | case 1: h = 0; //clear all in case of a single parameter |
148 | 412 | case 2: s = m; m = h; h = 0; //shift into second subsecondd |
149 | 496 | case 3: d = s; s = m; m = h; h = 0; //shift into minute second subsecond |
150 | 842 | } |
151 | | |
152 | 842 | ret = (int64_t)h*3600 + (int64_t)m*60 + s; |
153 | 842 | if (FFABS(ret) > (INT64_MAX - FFABS((int64_t)d)) / timeres) |
154 | 43 | return 0; |
155 | 799 | ret = sign * (ret * timeres + d); |
156 | | |
157 | 799 | if ((int)ret != ret) |
158 | 92 | ret = 0; |
159 | | |
160 | 799 | return ret; |
161 | 842 | } |
162 | | |
163 | | static int jacosub_read_header(AVFormatContext *s) |
164 | 2.62k | { |
165 | 2.62k | AVBPrint header; |
166 | 2.62k | AVIOContext *pb = s->pb; |
167 | 2.62k | char line[JSS_MAX_LINESIZE]; |
168 | 2.62k | JACOsubContext *jacosub = s->priv_data; |
169 | 2.62k | int shift_set = 0; // only the first shift matters |
170 | 2.62k | int merge_line = 0; |
171 | 2.62k | int i, ret; |
172 | | |
173 | 2.62k | AVStream *st = avformat_new_stream(s, NULL); |
174 | 2.62k | if (!st) |
175 | 0 | return AVERROR(ENOMEM); |
176 | 2.62k | avpriv_set_pts_info(st, 64, 1, 100); |
177 | 2.62k | st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE; |
178 | 2.62k | st->codecpar->codec_id = AV_CODEC_ID_JACOSUB; |
179 | | |
180 | 2.62k | jacosub->timeres = 30; |
181 | | |
182 | 2.62k | av_bprint_init(&header, 1024+AV_INPUT_BUFFER_PADDING_SIZE, 4096); |
183 | | |
184 | 10.1M | while (!avio_feof(pb)) { |
185 | 10.1M | int cmd_len; |
186 | 10.1M | const char *p = line; |
187 | 10.1M | int64_t pos = avio_tell(pb); |
188 | 10.1M | int len = ff_get_line(pb, line, sizeof(line)); |
189 | | |
190 | 10.1M | p = jss_skip_whitespace(p); |
191 | | |
192 | | /* queue timed line */ |
193 | 10.1M | if (merge_line || timed_line(p)) { |
194 | 2.93M | AVPacket *sub; |
195 | | |
196 | 2.93M | sub = ff_subtitles_queue_insert(&jacosub->q, line, len, merge_line); |
197 | 2.93M | if (!sub) { |
198 | 0 | av_bprint_finalize(&header, NULL); |
199 | 0 | return AVERROR(ENOMEM); |
200 | 0 | } |
201 | 2.93M | sub->pos = pos; |
202 | 2.93M | merge_line = len > 1 && !strcmp(&line[len - 2], "\\\n"); |
203 | 2.93M | continue; |
204 | 2.93M | } |
205 | | |
206 | | /* skip all non-compiler commands and focus on the command */ |
207 | 7.19M | if (*p != '#') |
208 | 3.87M | continue; |
209 | 3.32M | p++; |
210 | 3.32M | i = get_jss_cmd(p[0]); |
211 | 3.32M | if (i == -1) |
212 | 26.2k | continue; |
213 | | |
214 | | /* trim command + spaces */ |
215 | 3.30M | cmd_len = strlen(cmds[i]); |
216 | 3.30M | if (av_strncasecmp(p, cmds[i], cmd_len) == 0) |
217 | 861 | p += cmd_len; |
218 | 3.29M | else |
219 | 3.29M | p++; |
220 | 3.30M | p = jss_skip_whitespace(p); |
221 | | |
222 | | /* handle commands which affect the whole script */ |
223 | 3.30M | switch (cmds[i][0]) { |
224 | 3.29M | case 'S': // SHIFT command affect the whole script... |
225 | 3.29M | if (!shift_set) { |
226 | 844 | jacosub->shift = get_shift(jacosub->timeres, p); |
227 | 844 | shift_set = 1; |
228 | 844 | } |
229 | 3.29M | av_bprintf(&header, "#S %s", p); |
230 | 3.29M | break; |
231 | 3.38k | case 'T': { // ...but must be placed after TIMERES |
232 | 3.38k | int64_t timeres = strtol(p, NULL, 10); |
233 | 3.38k | if (timeres <= 0 || timeres > UINT32_MAX) { |
234 | 2.12k | jacosub->timeres = 30; |
235 | 2.12k | } else { |
236 | 1.26k | jacosub->timeres = timeres; |
237 | 1.26k | av_bprintf(&header, "#T %s", p); |
238 | 1.26k | } |
239 | 3.38k | break; |
240 | 0 | } |
241 | 3.30M | } |
242 | 3.30M | } |
243 | | |
244 | | /* general/essential directives in the extradata */ |
245 | 2.62k | ret = ff_bprint_to_codecpar_extradata(st->codecpar, &header); |
246 | 2.62k | if (ret < 0) |
247 | 90 | return ret; |
248 | | |
249 | | /* SHIFT and TIMERES affect the whole script so packet timing can only be |
250 | | * done in a second pass */ |
251 | 2.67M | for (i = 0; i < jacosub->q.nb_subs; i++) { |
252 | 2.67M | AVPacket *sub = jacosub->q.subs[i]; |
253 | 2.67M | read_ts(jacosub, sub->data, &sub->pts, &sub->duration); |
254 | 2.67M | } |
255 | 2.53k | ff_subtitles_queue_finalize(s, &jacosub->q); |
256 | | |
257 | 2.53k | return 0; |
258 | 2.62k | } |
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 | | }; |