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.

289 lines
7.9KB

  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 + (int64_t)jacosub->shift) * 100LL / jacosub->timeres;
  113. ts_end64 = (ts_end + (int64_t)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. int64_t ret;
  123. #define SSEP "%*1[.:]"
  124. int n = sscanf(buf, "%d"SSEP"%d"SSEP"%d"SSEP"%d", &a, &b, &c, &d);
  125. #undef SSEP
  126. if (*buf == '-' || a < 0) {
  127. sign = -1;
  128. a = FFABS(a);
  129. }
  130. ret = 0;
  131. switch (n) {
  132. case 4:
  133. ret = sign * (((int64_t)a*3600 + b*60 + c) * timeres + d);
  134. break;
  135. case 3:
  136. ret = sign * (( (int64_t)a*60 + b) * timeres + c);
  137. break;
  138. case 2:
  139. ret = sign * (( (int64_t)a) * timeres + b);
  140. break;
  141. }
  142. if ((int)ret != ret)
  143. ret = 0;
  144. return ret;
  145. }
  146. static int jacosub_read_header(AVFormatContext *s)
  147. {
  148. AVBPrint header;
  149. AVIOContext *pb = s->pb;
  150. char line[JSS_MAX_LINESIZE];
  151. JACOsubContext *jacosub = s->priv_data;
  152. int shift_set = 0; // only the first shift matters
  153. int merge_line = 0;
  154. int i, ret;
  155. AVStream *st = avformat_new_stream(s, NULL);
  156. if (!st)
  157. return AVERROR(ENOMEM);
  158. avpriv_set_pts_info(st, 64, 1, 100);
  159. st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
  160. st->codecpar->codec_id = AV_CODEC_ID_JACOSUB;
  161. jacosub->timeres = 30;
  162. av_bprint_init(&header, 1024+AV_INPUT_BUFFER_PADDING_SIZE, 4096);
  163. while (!avio_feof(pb)) {
  164. int cmd_len;
  165. const char *p = line;
  166. int64_t pos = avio_tell(pb);
  167. int len = ff_get_line(pb, line, sizeof(line));
  168. p = jss_skip_whitespace(p);
  169. /* queue timed line */
  170. if (merge_line || timed_line(p)) {
  171. AVPacket *sub;
  172. sub = ff_subtitles_queue_insert(&jacosub->q, line, len, merge_line);
  173. if (!sub) {
  174. av_bprint_finalize(&header, NULL);
  175. ret = AVERROR(ENOMEM);
  176. goto fail;
  177. }
  178. sub->pos = pos;
  179. merge_line = len > 1 && !strcmp(&line[len - 2], "\\\n");
  180. continue;
  181. }
  182. /* skip all non-compiler commands and focus on the command */
  183. if (*p != '#')
  184. continue;
  185. p++;
  186. i = get_jss_cmd(p[0]);
  187. if (i == -1)
  188. continue;
  189. /* trim command + spaces */
  190. cmd_len = strlen(cmds[i]);
  191. if (av_strncasecmp(p, cmds[i], cmd_len) == 0)
  192. p += cmd_len;
  193. else
  194. p++;
  195. p = jss_skip_whitespace(p);
  196. /* handle commands which affect the whole script */
  197. switch (cmds[i][0]) {
  198. case 'S': // SHIFT command affect the whole script...
  199. if (!shift_set) {
  200. jacosub->shift = get_shift(jacosub->timeres, p);
  201. shift_set = 1;
  202. }
  203. av_bprintf(&header, "#S %s", p);
  204. break;
  205. case 'T': // ...but must be placed after TIMERES
  206. jacosub->timeres = strtol(p, NULL, 10);
  207. if (!jacosub->timeres)
  208. jacosub->timeres = 30;
  209. else
  210. av_bprintf(&header, "#T %s", p);
  211. break;
  212. }
  213. }
  214. /* general/essential directives in the extradata */
  215. ret = ff_bprint_to_codecpar_extradata(st->codecpar, &header);
  216. if (ret < 0)
  217. goto fail;
  218. /* SHIFT and TIMERES affect the whole script so packet timing can only be
  219. * done in a second pass */
  220. for (i = 0; i < jacosub->q.nb_subs; i++) {
  221. AVPacket *sub = jacosub->q.subs[i];
  222. read_ts(jacosub, sub->data, &sub->pts, &sub->duration);
  223. }
  224. ff_subtitles_queue_finalize(s, &jacosub->q);
  225. return 0;
  226. fail:
  227. jacosub_read_close(s);
  228. return ret;
  229. }
  230. static int jacosub_read_packet(AVFormatContext *s, AVPacket *pkt)
  231. {
  232. JACOsubContext *jacosub = s->priv_data;
  233. return ff_subtitles_queue_read_packet(&jacosub->q, pkt);
  234. }
  235. static int jacosub_read_seek(AVFormatContext *s, int stream_index,
  236. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  237. {
  238. JACOsubContext *jacosub = s->priv_data;
  239. return ff_subtitles_queue_seek(&jacosub->q, s, stream_index,
  240. min_ts, ts, max_ts, flags);
  241. }
  242. AVInputFormat ff_jacosub_demuxer = {
  243. .name = "jacosub",
  244. .long_name = NULL_IF_CONFIG_SMALL("JACOsub subtitle format"),
  245. .priv_data_size = sizeof(JACOsubContext),
  246. .read_probe = jacosub_probe,
  247. .read_header = jacosub_read_header,
  248. .read_packet = jacosub_read_packet,
  249. .read_seek2 = jacosub_read_seek,
  250. .read_close = jacosub_read_close,
  251. };