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.

272 lines
7.5KB

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