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.

158 lines
4.3KB

  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. * MPL2 subtitles format demuxer
  23. */
  24. #include "libavutil/intreadwrite.h"
  25. #include "avformat.h"
  26. #include "internal.h"
  27. #include "subtitles.h"
  28. typedef struct {
  29. FFDemuxSubtitlesQueue q;
  30. } MPL2Context;
  31. static int mpl2_probe(const AVProbeData *p)
  32. {
  33. int i;
  34. char c;
  35. int64_t start, end;
  36. const unsigned char *ptr = p->buf;
  37. const unsigned char *ptr_end = ptr + p->buf_size;
  38. if (AV_RB24(ptr) == 0xefbbbf)
  39. ptr += 3;
  40. for (i = 0; i < 2; i++) {
  41. if (sscanf(ptr, "[%"SCNd64"][%"SCNd64"]%c", &start, &end, &c) != 3 &&
  42. sscanf(ptr, "[%"SCNd64"][]%c", &start, &c) != 2)
  43. return 0;
  44. ptr += ff_subtitles_next_line(ptr);
  45. if (ptr >= ptr_end)
  46. return 0;
  47. }
  48. return AVPROBE_SCORE_MAX;
  49. }
  50. static int read_ts(char **line, int64_t *pts_start, int64_t *duration)
  51. {
  52. char c;
  53. int len;
  54. int64_t end;
  55. if (sscanf(*line, "[%"SCNd64"][]%c%n",
  56. pts_start, &c, &len) >= 2) {
  57. *duration = -1;
  58. *line += len - 1;
  59. return 0;
  60. }
  61. if (sscanf(*line, "[%"SCNd64"][%"SCNd64"]%c%n",
  62. pts_start, &end, &c, &len) >= 3) {
  63. if (end < *pts_start || end - (uint64_t)*pts_start > INT64_MAX) {
  64. *duration = -1;
  65. } else
  66. *duration = end - *pts_start;
  67. *line += len - 1;
  68. return 0;
  69. }
  70. return -1;
  71. }
  72. static int mpl2_read_header(AVFormatContext *s)
  73. {
  74. MPL2Context *mpl2 = s->priv_data;
  75. AVStream *st = avformat_new_stream(s, NULL);
  76. int res = 0;
  77. if (!st)
  78. return AVERROR(ENOMEM);
  79. avpriv_set_pts_info(st, 64, 1, 10);
  80. st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
  81. st->codecpar->codec_id = AV_CODEC_ID_MPL2;
  82. if (avio_rb24(s->pb) != 0xefbbbf)
  83. avio_seek(s->pb, -3, SEEK_CUR);
  84. while (!avio_feof(s->pb)) {
  85. char line[4096];
  86. char *p = line;
  87. const int64_t pos = avio_tell(s->pb);
  88. int len = ff_get_line(s->pb, line, sizeof(line));
  89. int64_t pts_start;
  90. int64_t duration;
  91. if (!len)
  92. break;
  93. line[strcspn(line, "\r\n")] = 0;
  94. if (!read_ts(&p, &pts_start, &duration)) {
  95. AVPacket *sub;
  96. sub = ff_subtitles_queue_insert(&mpl2->q, p, strlen(p), 0);
  97. if (!sub)
  98. return AVERROR(ENOMEM);
  99. sub->pos = pos;
  100. sub->pts = pts_start;
  101. sub->duration = duration;
  102. }
  103. }
  104. ff_subtitles_queue_finalize(s, &mpl2->q);
  105. return res;
  106. }
  107. static int mpl2_read_packet(AVFormatContext *s, AVPacket *pkt)
  108. {
  109. MPL2Context *mpl2 = s->priv_data;
  110. return ff_subtitles_queue_read_packet(&mpl2->q, pkt);
  111. }
  112. static int mpl2_read_seek(AVFormatContext *s, int stream_index,
  113. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  114. {
  115. MPL2Context *mpl2 = s->priv_data;
  116. return ff_subtitles_queue_seek(&mpl2->q, s, stream_index,
  117. min_ts, ts, max_ts, flags);
  118. }
  119. static int mpl2_read_close(AVFormatContext *s)
  120. {
  121. MPL2Context *mpl2 = s->priv_data;
  122. ff_subtitles_queue_clean(&mpl2->q);
  123. return 0;
  124. }
  125. AVInputFormat ff_mpl2_demuxer = {
  126. .name = "mpl2",
  127. .long_name = NULL_IF_CONFIG_SMALL("MPL2 subtitles"),
  128. .priv_data_size = sizeof(MPL2Context),
  129. .read_probe = mpl2_probe,
  130. .read_header = mpl2_read_header,
  131. .read_packet = mpl2_read_packet,
  132. .read_seek2 = mpl2_read_seek,
  133. .read_close = mpl2_read_close,
  134. .extensions = "txt,mpl2",
  135. };