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.

165 lines
4.6KB

  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 Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavcodec/get_bits.h"
  22. #include "avformat.h"
  23. #include "id3v2.h"
  24. #include "id3v1.h"
  25. typedef struct {
  26. int totalframes, currentframe;
  27. } TTAContext;
  28. static int tta_probe(AVProbeData *p)
  29. {
  30. const uint8_t *d = p->buf;
  31. if (ff_id3v2_match(d, ID3v2_DEFAULT_MAGIC))
  32. d += ff_id3v2_tag_len(d);
  33. if (d - p->buf >= p->buf_size)
  34. return 0;
  35. if (d[0] == 'T' && d[1] == 'T' && d[2] == 'A' && d[3] == '1')
  36. return 80;
  37. return 0;
  38. }
  39. static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap)
  40. {
  41. TTAContext *c = s->priv_data;
  42. AVStream *st;
  43. int i, channels, bps, samplerate, datalen, framelen;
  44. uint64_t framepos, start_offset;
  45. ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC);
  46. if (!av_metadata_get(s->metadata, "", NULL, AV_METADATA_IGNORE_SUFFIX))
  47. ff_id3v1_read(s);
  48. start_offset = url_ftell(s->pb);
  49. if (get_le32(s->pb) != AV_RL32("TTA1"))
  50. return -1; // not tta file
  51. url_fskip(s->pb, 2); // FIXME: flags
  52. channels = get_le16(s->pb);
  53. bps = get_le16(s->pb);
  54. samplerate = get_le32(s->pb);
  55. if(samplerate <= 0 || samplerate > 1000000){
  56. av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
  57. return -1;
  58. }
  59. datalen = get_le32(s->pb);
  60. if(datalen < 0){
  61. av_log(s, AV_LOG_ERROR, "nonsense datalen\n");
  62. return -1;
  63. }
  64. url_fskip(s->pb, 4); // header crc
  65. framelen = samplerate*256/245;
  66. c->totalframes = datalen / framelen + ((datalen % framelen) ? 1 : 0);
  67. c->currentframe = 0;
  68. if(c->totalframes >= UINT_MAX/sizeof(uint32_t)){
  69. av_log(s, AV_LOG_ERROR, "totalframes too large\n");
  70. return -1;
  71. }
  72. st = av_new_stream(s, 0);
  73. if (!st)
  74. return AVERROR(ENOMEM);
  75. av_set_pts_info(st, 64, 1, samplerate);
  76. st->start_time = 0;
  77. st->duration = datalen;
  78. framepos = url_ftell(s->pb) + 4*c->totalframes + 4;
  79. for (i = 0; i < c->totalframes; i++) {
  80. uint32_t size = get_le32(s->pb);
  81. av_add_index_entry(st, framepos, i*framelen, size, 0, AVINDEX_KEYFRAME);
  82. framepos += size;
  83. }
  84. url_fskip(s->pb, 4); // seektable crc
  85. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  86. st->codec->codec_id = CODEC_ID_TTA;
  87. st->codec->channels = channels;
  88. st->codec->sample_rate = samplerate;
  89. st->codec->bits_per_coded_sample = bps;
  90. st->codec->extradata_size = url_ftell(s->pb) - start_offset;
  91. if(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){
  92. //this check is redundant as get_buffer should fail
  93. av_log(s, AV_LOG_ERROR, "extradata_size too large\n");
  94. return -1;
  95. }
  96. st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
  97. url_fseek(s->pb, start_offset, SEEK_SET);
  98. get_buffer(s->pb, st->codec->extradata, st->codec->extradata_size);
  99. return 0;
  100. }
  101. static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
  102. {
  103. TTAContext *c = s->priv_data;
  104. AVStream *st = s->streams[0];
  105. int size, ret;
  106. // FIXME!
  107. if (c->currentframe > c->totalframes)
  108. return -1;
  109. size = st->index_entries[c->currentframe].size;
  110. ret = av_get_packet(s->pb, pkt, size);
  111. pkt->dts = st->index_entries[c->currentframe++].timestamp;
  112. return ret;
  113. }
  114. static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  115. {
  116. TTAContext *c = s->priv_data;
  117. AVStream *st = s->streams[stream_index];
  118. int index = av_index_search_timestamp(st, timestamp, flags);
  119. if (index < 0)
  120. return -1;
  121. c->currentframe = index;
  122. url_fseek(s->pb, st->index_entries[index].pos, SEEK_SET);
  123. return 0;
  124. }
  125. AVInputFormat tta_demuxer = {
  126. "tta",
  127. NULL_IF_CONFIG_SMALL("True Audio"),
  128. sizeof(TTAContext),
  129. tta_probe,
  130. tta_read_header,
  131. tta_read_packet,
  132. NULL,
  133. tta_read_seek,
  134. .extensions = "tta",
  135. };