3 * Copyright (c) 2006 Alex Beregszaszi
5 * This file is part of Libav.
7 * Libav 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.
12 * Libav 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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavcodec/get_bits.h"
26 #include "libavutil/dict.h"
29 int totalframes, currentframe;
34 static int tta_probe(AVProbeData *p)
36 const uint8_t *d = p->buf;
38 if (d[0] == 'T' && d[1] == 'T' && d[2] == 'A' && d[3] == '1')
43 static int tta_read_header(AVFormatContext *s)
45 TTAContext *c = s->priv_data;
47 int i, channels, bps, samplerate, datalen;
48 uint64_t framepos, start_offset;
50 if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
53 start_offset = avio_tell(s->pb);
54 if (avio_rl32(s->pb) != AV_RL32("TTA1"))
55 return -1; // not tta file
57 avio_skip(s->pb, 2); // FIXME: flags
58 channels = avio_rl16(s->pb);
59 bps = avio_rl16(s->pb);
60 samplerate = avio_rl32(s->pb);
61 if(samplerate <= 0 || samplerate > 1000000){
62 av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
66 datalen = avio_rl32(s->pb);
68 av_log(s, AV_LOG_ERROR, "nonsense datalen\n");
72 avio_skip(s->pb, 4); // header crc
74 c->frame_size = samplerate * 256 / 245;
75 c->last_frame_size = datalen % c->frame_size;
76 if (!c->last_frame_size)
77 c->last_frame_size = c->frame_size;
78 c->totalframes = datalen / c->frame_size + (c->last_frame_size < c->frame_size);
81 if(c->totalframes >= UINT_MAX/sizeof(uint32_t)){
82 av_log(s, AV_LOG_ERROR, "totalframes too large\n");
86 st = avformat_new_stream(s, NULL);
88 return AVERROR(ENOMEM);
90 avpriv_set_pts_info(st, 64, 1, samplerate);
92 st->duration = datalen;
94 framepos = avio_tell(s->pb) + 4*c->totalframes + 4;
96 for (i = 0; i < c->totalframes; i++) {
97 uint32_t size = avio_rl32(s->pb);
98 av_add_index_entry(st, framepos, i * c->frame_size, size, 0,
102 avio_skip(s->pb, 4); // seektable crc
104 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
105 st->codec->codec_id = CODEC_ID_TTA;
106 st->codec->channels = channels;
107 st->codec->sample_rate = samplerate;
108 st->codec->bits_per_coded_sample = bps;
110 st->codec->extradata_size = avio_tell(s->pb) - start_offset;
111 if(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){
112 //this check is redundant as avio_read should fail
113 av_log(s, AV_LOG_ERROR, "extradata_size too large\n");
116 st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
117 if (!st->codec->extradata) {
118 st->codec->extradata_size = 0;
119 return AVERROR(ENOMEM);
121 avio_seek(s->pb, start_offset, SEEK_SET);
122 avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
127 static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
129 TTAContext *c = s->priv_data;
130 AVStream *st = s->streams[0];
134 if (c->currentframe >= c->totalframes)
137 size = st->index_entries[c->currentframe].size;
139 ret = av_get_packet(s->pb, pkt, size);
140 pkt->dts = st->index_entries[c->currentframe++].timestamp;
141 pkt->duration = c->currentframe == c->totalframes ? c->last_frame_size :
146 static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
148 TTAContext *c = s->priv_data;
149 AVStream *st = s->streams[stream_index];
150 int index = av_index_search_timestamp(st, timestamp, flags);
153 if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
156 c->currentframe = index;
161 AVInputFormat ff_tta_demuxer = {
163 .long_name = NULL_IF_CONFIG_SMALL("True Audio"),
164 .priv_data_size = sizeof(TTAContext),
165 .read_probe = tta_probe,
166 .read_header = tta_read_header,
167 .read_packet = tta_read_packet,
168 .read_seek = tta_read_seek,