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.

193 lines
5.9KB

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