3 * Copyright (c) 2006 Alex Beregszaszi
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavcodec/get_bits.h"
25 #include "libavutil/dict.h"
28 int totalframes, currentframe;
31 static int tta_probe(AVProbeData *p)
33 const uint8_t *d = p->buf;
35 if (d[0] == 'T' && d[1] == 'T' && d[2] == 'A' && d[3] == '1')
40 static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap)
42 TTAContext *c = s->priv_data;
44 int i, channels, bps, samplerate, datalen, framelen;
45 uint64_t framepos, start_offset;
47 if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
50 start_offset = avio_tell(s->pb);
51 if (avio_rl32(s->pb) != AV_RL32("TTA1"))
52 return -1; // not tta file
54 avio_skip(s->pb, 2); // FIXME: flags
55 channels = avio_rl16(s->pb);
56 bps = avio_rl16(s->pb);
57 samplerate = avio_rl32(s->pb);
58 if(samplerate <= 0 || samplerate > 1000000){
59 av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
63 datalen = avio_rl32(s->pb);
65 av_log(s, AV_LOG_ERROR, "nonsense datalen\n");
69 avio_skip(s->pb, 4); // header crc
71 framelen = samplerate*256/245;
72 c->totalframes = datalen / framelen + ((datalen % framelen) ? 1 : 0);
75 if(c->totalframes >= UINT_MAX/sizeof(uint32_t)){
76 av_log(s, AV_LOG_ERROR, "totalframes too large\n");
80 st = av_new_stream(s, 0);
82 return AVERROR(ENOMEM);
84 av_set_pts_info(st, 64, 1, samplerate);
86 st->duration = datalen;
88 framepos = avio_tell(s->pb) + 4*c->totalframes + 4;
90 for (i = 0; i < c->totalframes; i++) {
91 uint32_t size = avio_rl32(s->pb);
92 av_add_index_entry(st, framepos, i*framelen, size, 0, AVINDEX_KEYFRAME);
95 avio_skip(s->pb, 4); // seektable crc
97 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
98 st->codec->codec_id = CODEC_ID_TTA;
99 st->codec->channels = channels;
100 st->codec->sample_rate = samplerate;
101 st->codec->bits_per_coded_sample = bps;
103 st->codec->extradata_size = avio_tell(s->pb) - start_offset;
104 if(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){
105 //this check is redundant as avio_read should fail
106 av_log(s, AV_LOG_ERROR, "extradata_size too large\n");
109 st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
110 avio_seek(s->pb, start_offset, SEEK_SET);
111 avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
116 static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
118 TTAContext *c = s->priv_data;
119 AVStream *st = s->streams[0];
123 if (c->currentframe > c->totalframes)
126 size = st->index_entries[c->currentframe].size;
128 ret = av_get_packet(s->pb, pkt, size);
129 pkt->dts = st->index_entries[c->currentframe++].timestamp;
133 static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
135 TTAContext *c = s->priv_data;
136 AVStream *st = s->streams[stream_index];
137 int index = av_index_search_timestamp(st, timestamp, flags);
140 if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
143 c->currentframe = index;
148 AVInputFormat ff_tta_demuxer = {
150 .long_name = NULL_IF_CONFIG_SMALL("True Audio"),
151 .priv_data_size = sizeof(TTAContext),
152 .read_probe = tta_probe,
153 .read_header = tta_read_header,
154 .read_packet = tta_read_packet,
155 .read_seek = tta_read_seek,