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.

172 lines
4.6KB

  1. /*
  2. * SSA/ASS demuxer
  3. * Copyright (c) 2008 Michael Niedermayer
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <stdint.h>
  22. #include "avformat.h"
  23. #include "internal.h"
  24. #include "subtitles.h"
  25. #include "libavcodec/internal.h"
  26. #include "libavutil/bprint.h"
  27. typedef struct ASSContext {
  28. FFDemuxSubtitlesQueue q;
  29. } ASSContext;
  30. static int ass_probe(AVProbeData *p)
  31. {
  32. const char *header = "[Script Info]";
  33. if (!memcmp(p->buf, header, strlen(header)) ||
  34. !memcmp(p->buf + 3, header, strlen(header)))
  35. return AVPROBE_SCORE_MAX;
  36. return 0;
  37. }
  38. static int ass_read_close(AVFormatContext *s)
  39. {
  40. ASSContext *ass = s->priv_data;
  41. ff_subtitles_queue_clean(&ass->q);
  42. return 0;
  43. }
  44. static int read_ts(const uint8_t *p, int64_t *start, int *duration)
  45. {
  46. int64_t end;
  47. int hh1, mm1, ss1, ms1;
  48. int hh2, mm2, ss2, ms2;
  49. if (sscanf(p, "%*[^,],%d:%d:%d%*c%d,%d:%d:%d%*c%d",
  50. &hh1, &mm1, &ss1, &ms1,
  51. &hh2, &mm2, &ss2, &ms2) == 8) {
  52. end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
  53. *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
  54. *duration = end - *start;
  55. return 0;
  56. }
  57. return -1;
  58. }
  59. static int64_t get_line(AVBPrint *buf, AVIOContext *pb)
  60. {
  61. int64_t pos = avio_tell(pb);
  62. av_bprint_clear(buf);
  63. for (;;) {
  64. char c = avio_r8(pb);
  65. if (!c)
  66. break;
  67. av_bprint_chars(buf, c, 1);
  68. if (c == '\n')
  69. break;
  70. }
  71. return pos;
  72. }
  73. static int ass_read_header(AVFormatContext *s)
  74. {
  75. ASSContext *ass = s->priv_data;
  76. AVBPrint header, line;
  77. int header_remaining, res = 0;
  78. AVStream *st;
  79. st = avformat_new_stream(s, NULL);
  80. if (!st)
  81. return AVERROR(ENOMEM);
  82. avpriv_set_pts_info(st, 64, 1, 100);
  83. st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
  84. st->codec->codec_id = AV_CODEC_ID_SSA;
  85. header_remaining = INT_MAX;
  86. av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
  87. av_bprint_init(&line, 0, AV_BPRINT_SIZE_UNLIMITED);
  88. for (;;) {
  89. int64_t pos = get_line(&line, s->pb);
  90. if (!line.str[0]) // EOF
  91. break;
  92. if (!memcmp(line.str, "[Events]", 8))
  93. header_remaining = 2;
  94. else if (line.str[0] == '[')
  95. header_remaining = INT_MAX;
  96. if (header_remaining) {
  97. av_bprintf(&header, "%s", line.str);
  98. header_remaining--;
  99. } else {
  100. int64_t ts_start = AV_NOPTS_VALUE;
  101. int duration = -1;
  102. AVPacket *sub;
  103. if (read_ts(line.str, &ts_start, &duration) < 0)
  104. continue;
  105. sub = ff_subtitles_queue_insert(&ass->q, line.str, line.len, 0);
  106. if (!sub) {
  107. res = AVERROR(ENOMEM);
  108. goto end;
  109. }
  110. sub->pos = pos;
  111. sub->pts = ts_start;
  112. sub->duration = duration;
  113. }
  114. }
  115. av_bprint_finalize(&line, NULL);
  116. res = avpriv_bprint_to_extradata(st->codec, &header);
  117. if (res < 0)
  118. goto end;
  119. ff_subtitles_queue_finalize(&ass->q);
  120. end:
  121. return res;
  122. }
  123. static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
  124. {
  125. ASSContext *ass = s->priv_data;
  126. return ff_subtitles_queue_read_packet(&ass->q, pkt);
  127. }
  128. static int ass_read_seek(AVFormatContext *s, int stream_index,
  129. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  130. {
  131. ASSContext *ass = s->priv_data;
  132. return ff_subtitles_queue_seek(&ass->q, s, stream_index,
  133. min_ts, ts, max_ts, flags);
  134. }
  135. AVInputFormat ff_ass_demuxer = {
  136. .name = "ass",
  137. .long_name = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
  138. .priv_data_size = sizeof(ASSContext),
  139. .read_probe = ass_probe,
  140. .read_header = ass_read_header,
  141. .read_packet = ass_read_packet,
  142. .read_close = ass_read_close,
  143. .read_seek2 = ass_read_seek,
  144. };