tty.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Tele-typewriter demuxer
  3. * Copyright (c) 2010 Peter Ross <pross@xvid.org>
  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. /**
  22. * @file
  23. * Tele-typewriter demuxer
  24. */
  25. #include "libavutil/intreadwrite.h"
  26. #include "libavutil/avstring.h"
  27. #include "avformat.h"
  28. #include "sauce.h"
  29. #include <strings.h>
  30. #define LINE_RATE 6000 /* characters per second */
  31. typedef struct {
  32. int chars_per_frame;
  33. uint64_t fsize; /** file size less metadata buffer */
  34. } TtyDemuxContext;
  35. /**
  36. * Parse EFI header
  37. */
  38. static int efi_read(AVFormatContext *avctx, uint64_t start_pos)
  39. {
  40. TtyDemuxContext *s = avctx->priv_data;
  41. ByteIOContext *pb = avctx->pb;
  42. char buf[37];
  43. int len;
  44. url_fseek(pb, start_pos, SEEK_SET);
  45. if (get_byte(pb) != 0x1A)
  46. return -1;
  47. #define GET_EFI_META(name,size) \
  48. len = get_byte(pb); \
  49. if (len < 1 || len > size) \
  50. return -1; \
  51. if (get_buffer(pb, buf, size) == size) { \
  52. buf[len] = 0; \
  53. av_metadata_set2(&avctx->metadata, name, buf, 0); \
  54. }
  55. GET_EFI_META("filename", 12)
  56. GET_EFI_META("title", 36)
  57. s->fsize = start_pos;
  58. return 0;
  59. }
  60. static int read_header(AVFormatContext *avctx,
  61. AVFormatParameters *ap)
  62. {
  63. TtyDemuxContext *s = avctx->priv_data;
  64. AVStream *st = av_new_stream(avctx, 0);
  65. if (!st)
  66. return AVERROR(ENOMEM);
  67. st->codec->codec_tag = 0;
  68. st->codec->codec_type = CODEC_TYPE_VIDEO;
  69. st->codec->codec_id = CODEC_ID_ANSI;
  70. if (ap->width) st->codec->width = ap->width;
  71. if (ap->height) st->codec->height = ap->height;
  72. if (!ap->time_base.num) {
  73. av_set_pts_info(st, 60, 1, 25);
  74. } else {
  75. av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
  76. }
  77. /* simulate tty display speed */
  78. s->chars_per_frame = FFMAX(av_q2d(st->time_base) * (ap->sample_rate ? ap->sample_rate : LINE_RATE), 1);
  79. if (!url_is_streamed(avctx->pb)) {
  80. s->fsize = url_fsize(avctx->pb);
  81. st->duration = (s->fsize + s->chars_per_frame - 1) / s->chars_per_frame;
  82. if (ff_sauce_read(avctx, &s->fsize, 0, 0) < 0)
  83. efi_read(avctx, s->fsize - 51);
  84. url_fseek(avctx->pb, 0, SEEK_SET);
  85. }
  86. return 0;
  87. }
  88. static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
  89. {
  90. TtyDemuxContext *s = avctx->priv_data;
  91. int n;
  92. if (url_feof(avctx->pb))
  93. return AVERROR_EOF;
  94. n = s->chars_per_frame;
  95. if (s->fsize) {
  96. // ignore metadata buffer
  97. uint64_t p = url_ftell(avctx->pb);
  98. if (p + s->chars_per_frame > s->fsize)
  99. n = s->fsize - p;
  100. }
  101. pkt->size = av_get_packet(avctx->pb, pkt, n);
  102. if (pkt->size <= 0)
  103. return AVERROR(EIO);
  104. pkt->flags |= PKT_FLAG_KEY;
  105. return 0;
  106. }
  107. AVInputFormat tty_demuxer = {
  108. .name = "tty",
  109. .long_name = NULL_IF_CONFIG_SMALL("Tele-typewriter"),
  110. .priv_data_size = sizeof(TtyDemuxContext),
  111. .read_header = read_header,
  112. .read_packet = read_packet,
  113. .extensions = "ans,art,asc,diz,ice,nfo,txt,vt",
  114. };