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.

147 lines
4.0KB

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