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.

174 lines
4.9KB

  1. /*
  2. * Tele-typewriter demuxer
  3. * Copyright (c) 2010 Peter Ross <pross@xvid.org>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Tele-typewriter demuxer
  24. */
  25. #include "libavutil/intreadwrite.h"
  26. #include "libavutil/avstring.h"
  27. #include "libavutil/log.h"
  28. #include "libavutil/opt.h"
  29. #include "libavutil/parseutils.h"
  30. #include "avformat.h"
  31. #include "sauce.h"
  32. typedef struct {
  33. AVClass *class;
  34. int chars_per_frame;
  35. uint64_t fsize; /**< file size less metadata buffer */
  36. char *video_size;/**< A string describing video size, set by a private option. */
  37. } TtyDemuxContext;
  38. /**
  39. * Parse EFI header
  40. */
  41. static int efi_read(AVFormatContext *avctx, uint64_t start_pos)
  42. {
  43. TtyDemuxContext *s = avctx->priv_data;
  44. AVIOContext *pb = avctx->pb;
  45. char buf[37];
  46. int len;
  47. avio_seek(pb, start_pos, SEEK_SET);
  48. if (avio_r8(pb) != 0x1A)
  49. return -1;
  50. #define GET_EFI_META(name,size) \
  51. len = avio_r8(pb); \
  52. if (len < 1 || len > size) \
  53. return -1; \
  54. if (avio_read(pb, buf, size) == size) { \
  55. buf[len] = 0; \
  56. av_metadata_set2(&avctx->metadata, name, buf, 0); \
  57. }
  58. GET_EFI_META("filename", 12)
  59. GET_EFI_META("title", 36)
  60. s->fsize = start_pos;
  61. return 0;
  62. }
  63. static int read_header(AVFormatContext *avctx,
  64. AVFormatParameters *ap)
  65. {
  66. TtyDemuxContext *s = avctx->priv_data;
  67. int width = 0, height = 0, ret = 0;
  68. AVStream *st = av_new_stream(avctx, 0);
  69. if (!st) {
  70. ret = AVERROR(ENOMEM);
  71. goto fail;
  72. }
  73. st->codec->codec_tag = 0;
  74. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  75. st->codec->codec_id = CODEC_ID_ANSI;
  76. if (s->video_size && (ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
  77. av_log (avctx, AV_LOG_ERROR, "Couldn't parse video size.\n");
  78. goto fail;
  79. }
  80. #if FF_API_FORMAT_PARAMETERS
  81. if (ap->width > 0)
  82. width = ap->width;
  83. if (ap->height > 0)
  84. height = ap->height;
  85. #endif
  86. st->codec->width = width;
  87. st->codec->height = height;
  88. if (!ap->time_base.num) {
  89. av_set_pts_info(st, 60, 1, 25);
  90. } else {
  91. av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
  92. }
  93. /* simulate tty display speed */
  94. #if FF_API_FORMAT_PARAMETERS
  95. if (ap->sample_rate)
  96. s->chars_per_frame = ap->sample_rate;
  97. #endif
  98. s->chars_per_frame = FFMAX(av_q2d(st->time_base)*s->chars_per_frame, 1);
  99. if (avctx->pb->seekable) {
  100. s->fsize = avio_size(avctx->pb);
  101. st->duration = (s->fsize + s->chars_per_frame - 1) / s->chars_per_frame;
  102. if (ff_sauce_read(avctx, &s->fsize, 0, 0) < 0)
  103. efi_read(avctx, s->fsize - 51);
  104. avio_seek(avctx->pb, 0, SEEK_SET);
  105. }
  106. fail:
  107. return ret;
  108. }
  109. static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
  110. {
  111. TtyDemuxContext *s = avctx->priv_data;
  112. int n;
  113. if (avctx->pb->eof_reached)
  114. return AVERROR_EOF;
  115. n = s->chars_per_frame;
  116. if (s->fsize) {
  117. // ignore metadata buffer
  118. uint64_t p = avio_tell(avctx->pb);
  119. if (p + s->chars_per_frame > s->fsize)
  120. n = s->fsize - p;
  121. }
  122. pkt->size = av_get_packet(avctx->pb, pkt, n);
  123. if (pkt->size <= 0)
  124. return AVERROR(EIO);
  125. pkt->flags |= AV_PKT_FLAG_KEY;
  126. return 0;
  127. }
  128. #define OFFSET(x) offsetof(TtyDemuxContext, x)
  129. #define DEC AV_OPT_FLAG_DECODING_PARAM
  130. static const AVOption options[] = {
  131. { "chars_per_frame", "", offsetof(TtyDemuxContext, chars_per_frame), FF_OPT_TYPE_INT, {.dbl = 6000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM},
  132. { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  133. { NULL },
  134. };
  135. static const AVClass tty_demuxer_class = {
  136. .class_name = "TTY demuxer",
  137. .item_name = av_default_item_name,
  138. .option = options,
  139. .version = LIBAVUTIL_VERSION_INT,
  140. };
  141. AVInputFormat ff_tty_demuxer = {
  142. .name = "tty",
  143. .long_name = NULL_IF_CONFIG_SMALL("Tele-typewriter"),
  144. .priv_data_size = sizeof(TtyDemuxContext),
  145. .read_header = read_header,
  146. .read_packet = read_packet,
  147. .extensions = "ans,art,asc,diz,ice,nfo,txt,vt",
  148. .priv_class = &tty_demuxer_class,
  149. };