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.

153 lines
4.3KB

  1. /*
  2. * TTA demuxer
  3. * Copyright (c) 2006 Alex Beregszaszi
  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 St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avformat.h"
  22. #include "bitstream.h"
  23. typedef struct {
  24. int totalframes, currentframe;
  25. uint32_t *seektable;
  26. } TTAContext;
  27. static int tta_probe(AVProbeData *p)
  28. {
  29. const uint8_t *d = p->buf;
  30. if (p->buf_size < 4)
  31. return 0;
  32. if (d[0] == 'T' && d[1] == 'T' && d[2] == 'A' && d[3] == '1')
  33. return 80;
  34. return 0;
  35. }
  36. static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap)
  37. {
  38. TTAContext *c = s->priv_data;
  39. AVStream *st;
  40. int i, channels, bps, samplerate, datalen, framelen, start;
  41. start = url_ftell(&s->pb);
  42. if (get_le32(&s->pb) != ff_get_fourcc("TTA1"))
  43. return -1; // not tta file
  44. url_fskip(&s->pb, 2); // FIXME: flags
  45. channels = get_le16(&s->pb);
  46. bps = get_le16(&s->pb);
  47. samplerate = get_le32(&s->pb);
  48. if(samplerate <= 0 || samplerate > 1000000){
  49. av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
  50. return -1;
  51. }
  52. datalen = get_le32(&s->pb);
  53. if(datalen < 0){
  54. av_log(s, AV_LOG_ERROR, "nonsense datalen\n");
  55. return -1;
  56. }
  57. url_fskip(&s->pb, 4); // header crc
  58. framelen = 1.04489795918367346939 * samplerate;
  59. c->totalframes = datalen / framelen + ((datalen % framelen) ? 1 : 0);
  60. c->currentframe = 0;
  61. if(c->totalframes >= UINT_MAX/sizeof(uint32_t)){
  62. av_log(s, AV_LOG_ERROR, "totalframes too large\n");
  63. return -1;
  64. }
  65. c->seektable = av_mallocz(sizeof(uint32_t)*c->totalframes);
  66. if (!c->seektable)
  67. return AVERROR_NOMEM;
  68. for (i = 0; i < c->totalframes; i++)
  69. c->seektable[i] = get_le32(&s->pb);
  70. url_fskip(&s->pb, 4); // seektable crc
  71. st = av_new_stream(s, 0);
  72. // av_set_pts_info(st, 32, 1, 1000);
  73. if (!st)
  74. return AVERROR_NOMEM;
  75. st->codec->codec_type = CODEC_TYPE_AUDIO;
  76. st->codec->codec_id = CODEC_ID_TTA;
  77. st->codec->channels = channels;
  78. st->codec->sample_rate = samplerate;
  79. st->codec->bits_per_sample = bps;
  80. st->codec->extradata_size = url_ftell(&s->pb) - start;
  81. if(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){
  82. //this check is redundant as get_buffer should fail
  83. av_log(s, AV_LOG_ERROR, "extradata_size too large\n");
  84. return -1;
  85. }
  86. st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
  87. url_fseek(&s->pb, start, SEEK_SET); // or SEEK_CUR and -size ? :)
  88. get_buffer(&s->pb, st->codec->extradata, st->codec->extradata_size);
  89. return 0;
  90. }
  91. static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
  92. {
  93. TTAContext *c = s->priv_data;
  94. int ret, size;
  95. // FIXME!
  96. if (c->currentframe > c->totalframes)
  97. size = 0;
  98. else
  99. size = c->seektable[c->currentframe];
  100. c->currentframe++;
  101. if (av_new_packet(pkt, size) < 0)
  102. return AVERROR_IO;
  103. pkt->pos = url_ftell(&s->pb);
  104. pkt->stream_index = 0;
  105. ret = get_buffer(&s->pb, pkt->data, size);
  106. if (ret <= 0) {
  107. av_free_packet(pkt);
  108. return AVERROR_IO;
  109. }
  110. pkt->size = ret;
  111. // av_log(s, AV_LOG_INFO, "TTA packet #%d desired size: %d read size: %d at pos %d\n",
  112. // c->currentframe, size, ret, pkt->pos);
  113. return 0; //ret;
  114. }
  115. static int tta_read_close(AVFormatContext *s)
  116. {
  117. TTAContext *c = s->priv_data;
  118. if (c->seektable)
  119. av_free(c->seektable);
  120. return 0;
  121. }
  122. AVInputFormat tta_demuxer = {
  123. "tta",
  124. "true-audio",
  125. sizeof(TTAContext),
  126. tta_probe,
  127. tta_read_header,
  128. tta_read_packet,
  129. tta_read_close,
  130. .extensions = "tta",
  131. };