You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

278 lines
7.7KB

  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. * @file
  22. * JACOsub subtitle demuxer
  23. * @see http://unicorn.us.com/jacosub/jscripts.html
  24. * @todo Support P[ALETTE] directive.
  25. */
  26. #include "avformat.h"
  27. #include "internal.h"
  28. #include "subtitles.h"
  29. #include "libavcodec/internal.h"
  30. #include "libavcodec/jacosub.h"
  31. #include "libavutil/avstring.h"
  32. #include "libavutil/bprint.h"
  33. #include "libavutil/intreadwrite.h"
  34. typedef struct {
  35. int shift;
  36. unsigned timeres;
  37. FFDemuxSubtitlesQueue q;
  38. } JACOsubContext;
  39. static int timed_line(const char *ptr)
  40. {
  41. char c;
  42. int fs, fe;
  43. return (sscanf(ptr, "%*u:%*u:%*u.%*u %*u:%*u:%*u.%*u %c", &c) == 1 ||
  44. (sscanf(ptr, "@%u @%u %c", &fs, &fe, &c) == 3 && fs < fe));
  45. }
  46. static int jacosub_probe(const AVProbeData *p)
  47. {
  48. const char *ptr = p->buf;
  49. const char *ptr_end = p->buf + p->buf_size;
  50. if (AV_RB24(ptr) == 0xEFBBBF)
  51. ptr += 3; /* skip UTF-8 BOM */
  52. while (ptr < ptr_end) {
  53. while (jss_whitespace(*ptr))
  54. ptr++;
  55. if (*ptr != '#' && *ptr != '\n') {
  56. if (timed_line(ptr))
  57. return AVPROBE_SCORE_EXTENSION + 1;
  58. return 0;
  59. }
  60. ptr += ff_subtitles_next_line(ptr);
  61. }
  62. return 0;
  63. }
  64. static const char * const cmds[] = {
  65. "CLOCKPAUSE",
  66. "DIRECTIVE",
  67. "FONT",
  68. "HRES",
  69. "INCLUDE",
  70. "PALETTE",
  71. "QUANTIZE",
  72. "RAMP",
  73. "SHIFT",
  74. "TIMERES",
  75. };
  76. static int get_jss_cmd(char k)
  77. {
  78. int i;
  79. k = av_toupper(k);
  80. for (i = 0; i < FF_ARRAY_ELEMS(cmds); i++)
  81. if (k == cmds[i][0])
  82. return i;
  83. return -1;
  84. }
  85. static int jacosub_read_close(AVFormatContext *s)
  86. {
  87. JACOsubContext *jacosub = s->priv_data;
  88. ff_subtitles_queue_clean(&jacosub->q);
  89. return 0;
  90. }
  91. static const char *read_ts(JACOsubContext *jacosub, const char *buf,
  92. int64_t *start, int64_t *duration)
  93. {
  94. int len;
  95. unsigned hs, ms, ss, fs; // hours, minutes, seconds, frame start
  96. unsigned he, me, se, fe; // hours, minutes, seconds, frame end
  97. int ts_start, ts_end;
  98. int64_t ts_start64, ts_end64;
  99. /* timed format */
  100. if (sscanf(buf, "%u:%u:%u.%u %u:%u:%u.%u %n",
  101. &hs, &ms, &ss, &fs,
  102. &he, &me, &se, &fe, &len) == 8) {
  103. ts_start = (hs*3600 + ms*60 + ss) * jacosub->timeres + fs;
  104. ts_end = (he*3600 + me*60 + se) * jacosub->timeres + fe;
  105. goto shift_and_ret;
  106. }
  107. /* timestamps format */
  108. if (sscanf(buf, "@%u @%u %n", &ts_start, &ts_end, &len) == 2)
  109. goto shift_and_ret;
  110. return NULL;
  111. shift_and_ret:
  112. ts_start64 = (ts_start + jacosub->shift) * 100LL / jacosub->timeres;
  113. ts_end64 = (ts_end + jacosub->shift) * 100LL / jacosub->timeres;
  114. *start = ts_start64;
  115. *duration = ts_end64 - ts_start64;
  116. return buf + len;
  117. }
  118. static int get_shift(int timeres, const char *buf)
  119. {
  120. int sign = 1;
  121. int a = 0, b = 0, c = 0, d = 0;
  122. #define SSEP "%*1[.:]"
  123. int n = sscanf(buf, "%d"SSEP"%d"SSEP"%d"SSEP"%d", &a, &b, &c, &d);
  124. #undef SSEP
  125. if (*buf == '-' || a < 0) {
  126. sign = -1;
  127. a = FFABS(a);
  128. }
  129. switch (n) {
  130. case 4: return sign * ((a*3600 + b*60 + c) * timeres + d);
  131. case 3: return sign * (( a*60 + b) * timeres + c);
  132. case 2: return sign * (( a) * timeres + b);
  133. }
  134. return 0;
  135. }
  136. static int jacosub_read_header(AVFormatContext *s)
  137. {
  138. AVBPrint header;
  139. AVIOContext *pb = s->pb;
  140. char line[JSS_MAX_LINESIZE];
  141. JACOsubContext *jacosub = s->priv_data;
  142. int shift_set = 0; // only the first shift matters
  143. int merge_line = 0;
  144. int i, ret;
  145. AVStream *st = avformat_new_stream(s, NULL);
  146. if (!st)
  147. return AVERROR(ENOMEM);
  148. avpriv_set_pts_info(st, 64, 1, 100);
  149. st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
  150. st->codecpar->codec_id = AV_CODEC_ID_JACOSUB;
  151. jacosub->timeres = 30;
  152. av_bprint_init(&header, 1024+AV_INPUT_BUFFER_PADDING_SIZE, 4096);
  153. while (!avio_feof(pb)) {
  154. int cmd_len;
  155. const char *p = line;
  156. int64_t pos = avio_tell(pb);
  157. int len = ff_get_line(pb, line, sizeof(line));
  158. p = jss_skip_whitespace(p);
  159. /* queue timed line */
  160. if (merge_line || timed_line(p)) {
  161. AVPacket *sub;
  162. sub = ff_subtitles_queue_insert(&jacosub->q, line, len, merge_line);
  163. if (!sub) {
  164. ret = AVERROR(ENOMEM);
  165. goto fail;
  166. }
  167. sub->pos = pos;
  168. merge_line = len > 1 && !strcmp(&line[len - 2], "\\\n");
  169. continue;
  170. }
  171. /* skip all non-compiler commands and focus on the command */
  172. if (*p != '#')
  173. continue;
  174. p++;
  175. i = get_jss_cmd(p[0]);
  176. if (i == -1)
  177. continue;
  178. /* trim command + spaces */
  179. cmd_len = strlen(cmds[i]);
  180. if (av_strncasecmp(p, cmds[i], cmd_len) == 0)
  181. p += cmd_len;
  182. else
  183. p++;
  184. p = jss_skip_whitespace(p);
  185. /* handle commands which affect the whole script */
  186. switch (cmds[i][0]) {
  187. case 'S': // SHIFT command affect the whole script...
  188. if (!shift_set) {
  189. jacosub->shift = get_shift(jacosub->timeres, p);
  190. shift_set = 1;
  191. }
  192. av_bprintf(&header, "#S %s", p);
  193. break;
  194. case 'T': // ...but must be placed after TIMERES
  195. jacosub->timeres = strtol(p, NULL, 10);
  196. if (!jacosub->timeres)
  197. jacosub->timeres = 30;
  198. else
  199. av_bprintf(&header, "#T %s", p);
  200. break;
  201. }
  202. }
  203. /* general/essential directives in the extradata */
  204. ret = ff_bprint_to_codecpar_extradata(st->codecpar, &header);
  205. if (ret < 0)
  206. goto fail;
  207. /* SHIFT and TIMERES affect the whole script so packet timing can only be
  208. * done in a second pass */
  209. for (i = 0; i < jacosub->q.nb_subs; i++) {
  210. AVPacket *sub = &jacosub->q.subs[i];
  211. read_ts(jacosub, sub->data, &sub->pts, &sub->duration);
  212. }
  213. ff_subtitles_queue_finalize(s, &jacosub->q);
  214. return 0;
  215. fail:
  216. jacosub_read_close(s);
  217. return ret;
  218. }
  219. static int jacosub_read_packet(AVFormatContext *s, AVPacket *pkt)
  220. {
  221. JACOsubContext *jacosub = s->priv_data;
  222. return ff_subtitles_queue_read_packet(&jacosub->q, pkt);
  223. }
  224. static int jacosub_read_seek(AVFormatContext *s, int stream_index,
  225. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  226. {
  227. JACOsubContext *jacosub = s->priv_data;
  228. return ff_subtitles_queue_seek(&jacosub->q, s, stream_index,
  229. min_ts, ts, max_ts, flags);
  230. }
  231. AVInputFormat ff_jacosub_demuxer = {
  232. .name = "jacosub",
  233. .long_name = NULL_IF_CONFIG_SMALL("JACOsub subtitle format"),
  234. .priv_data_size = sizeof(JACOsubContext),
  235. .read_probe = jacosub_probe,
  236. .read_header = jacosub_read_header,
  237. .read_packet = jacosub_read_packet,
  238. .read_seek2 = jacosub_read_seek,
  239. .read_close = jacosub_read_close,
  240. };