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.

197 lines
6.0KB

  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 "libavutil/crc.h"
  22. #include "libavutil/dict.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "apetag.h"
  25. #include "avformat.h"
  26. #include "avio_internal.h"
  27. #include "internal.h"
  28. #include "id3v1.h"
  29. typedef struct TTAContext {
  30. int totalframes, currentframe;
  31. int frame_size;
  32. int last_frame_size;
  33. } TTAContext;
  34. static int tta_probe(const AVProbeData *p)
  35. {
  36. if (AV_RL32(&p->buf[0]) == MKTAG('T', 'T', 'A', '1') &&
  37. (AV_RL16(&p->buf[4]) == 1 || AV_RL16(&p->buf[4]) == 2) &&
  38. AV_RL16(&p->buf[6]) > 0 &&
  39. AV_RL16(&p->buf[8]) > 0 &&
  40. AV_RL32(&p->buf[10]) > 0)
  41. return AVPROBE_SCORE_EXTENSION + 30;
  42. return 0;
  43. }
  44. static int tta_read_header(AVFormatContext *s)
  45. {
  46. TTAContext *c = s->priv_data;
  47. AVStream *st;
  48. int i, channels, bps, samplerate;
  49. int64_t framepos, start_offset;
  50. uint32_t nb_samples, crc;
  51. ff_id3v1_read(s);
  52. start_offset = avio_tell(s->pb);
  53. if (start_offset < 0)
  54. return start_offset;
  55. ffio_init_checksum(s->pb, ff_crcEDB88320_update, UINT32_MAX);
  56. if (avio_rl32(s->pb) != AV_RL32("TTA1"))
  57. return AVERROR_INVALIDDATA;
  58. avio_skip(s->pb, 2); // FIXME: flags
  59. channels = avio_rl16(s->pb);
  60. bps = avio_rl16(s->pb);
  61. samplerate = avio_rl32(s->pb);
  62. if(samplerate <= 0 || samplerate > 1000000){
  63. av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
  64. return AVERROR_INVALIDDATA;
  65. }
  66. nb_samples = avio_rl32(s->pb);
  67. if (!nb_samples) {
  68. av_log(s, AV_LOG_ERROR, "invalid number of samples\n");
  69. return AVERROR_INVALIDDATA;
  70. }
  71. crc = ffio_get_checksum(s->pb) ^ UINT32_MAX;
  72. if (crc != avio_rl32(s->pb) && s->error_recognition & AV_EF_CRCCHECK) {
  73. av_log(s, AV_LOG_ERROR, "Header CRC error\n");
  74. return AVERROR_INVALIDDATA;
  75. }
  76. c->frame_size = samplerate * 256 / 245;
  77. c->last_frame_size = nb_samples % c->frame_size;
  78. if (!c->last_frame_size)
  79. c->last_frame_size = c->frame_size;
  80. c->totalframes = nb_samples / c->frame_size + (c->last_frame_size < c->frame_size);
  81. c->currentframe = 0;
  82. if(c->totalframes >= UINT_MAX/sizeof(uint32_t) || c->totalframes <= 0){
  83. av_log(s, AV_LOG_ERROR, "totalframes %d invalid\n", c->totalframes);
  84. return AVERROR_INVALIDDATA;
  85. }
  86. st = avformat_new_stream(s, NULL);
  87. if (!st)
  88. return AVERROR(ENOMEM);
  89. avpriv_set_pts_info(st, 64, 1, samplerate);
  90. st->start_time = 0;
  91. st->duration = nb_samples;
  92. framepos = avio_tell(s->pb);
  93. if (framepos < 0)
  94. return framepos;
  95. framepos += 4 * c->totalframes + 4;
  96. if (ff_alloc_extradata(st->codecpar, avio_tell(s->pb) - start_offset))
  97. return AVERROR(ENOMEM);
  98. avio_seek(s->pb, start_offset, SEEK_SET);
  99. avio_read(s->pb, st->codecpar->extradata, st->codecpar->extradata_size);
  100. ffio_init_checksum(s->pb, ff_crcEDB88320_update, UINT32_MAX);
  101. for (i = 0; i < c->totalframes; i++) {
  102. uint32_t size = avio_rl32(s->pb);
  103. int r;
  104. if ((r = av_add_index_entry(st, framepos, i * (int64_t)c->frame_size, size, 0,
  105. AVINDEX_KEYFRAME)) < 0)
  106. return r;
  107. framepos += size;
  108. }
  109. crc = ffio_get_checksum(s->pb) ^ UINT32_MAX;
  110. if (crc != avio_rl32(s->pb) && s->error_recognition & AV_EF_CRCCHECK) {
  111. av_log(s, AV_LOG_ERROR, "Seek table CRC error\n");
  112. return AVERROR_INVALIDDATA;
  113. }
  114. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  115. st->codecpar->codec_id = AV_CODEC_ID_TTA;
  116. st->codecpar->channels = channels;
  117. st->codecpar->sample_rate = samplerate;
  118. st->codecpar->bits_per_coded_sample = bps;
  119. if (s->pb->seekable & AVIO_SEEKABLE_NORMAL) {
  120. int64_t pos = avio_tell(s->pb);
  121. ff_ape_parse_tag(s);
  122. avio_seek(s->pb, pos, SEEK_SET);
  123. }
  124. return 0;
  125. }
  126. static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
  127. {
  128. TTAContext *c = s->priv_data;
  129. AVStream *st = s->streams[0];
  130. int size, ret;
  131. // FIXME!
  132. if (c->currentframe >= c->totalframes)
  133. return AVERROR_EOF;
  134. if (st->internal->nb_index_entries < c->totalframes) {
  135. av_log(s, AV_LOG_ERROR, "Index entry disappeared\n");
  136. return AVERROR_INVALIDDATA;
  137. }
  138. size = st->internal->index_entries[c->currentframe].size;
  139. ret = av_get_packet(s->pb, pkt, size);
  140. pkt->dts = st->internal->index_entries[c->currentframe++].timestamp;
  141. pkt->duration = c->currentframe == c->totalframes ? c->last_frame_size :
  142. c->frame_size;
  143. return ret;
  144. }
  145. static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  146. {
  147. TTAContext *c = s->priv_data;
  148. AVStream *st = s->streams[stream_index];
  149. int index = av_index_search_timestamp(st, timestamp, flags);
  150. if (index < 0)
  151. return -1;
  152. if (avio_seek(s->pb, st->internal->index_entries[index].pos, SEEK_SET) < 0)
  153. return -1;
  154. c->currentframe = index;
  155. return 0;
  156. }
  157. AVInputFormat ff_tta_demuxer = {
  158. .name = "tta",
  159. .long_name = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
  160. .priv_data_size = sizeof(TTAContext),
  161. .read_probe = tta_probe,
  162. .read_header = tta_read_header,
  163. .read_packet = tta_read_packet,
  164. .read_seek = tta_read_seek,
  165. .extensions = "tta",
  166. };