FFmpeg
Loading...
Searching...
No Matches
tta.c
Go to the documentation of this file.
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
22#include "libavutil/crc.h"
23#include "libavutil/dict.h"
25
26#include "apetag.h"
27#include "avformat.h"
28#include "avio_internal.h"
29#include "demux.h"
30#include "internal.h"
31#include "id3v1.h"
32
33typedef struct TTAContext {
38
39static int tta_probe(const 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
51{
52 TTAContext *c = s->priv_data;
53 AVStream *st;
54 int64_t framepos;
55 uint8_t header[22];
56
58
59 int ret = ffio_read_size(s->pb, header, sizeof(header));
60 if (ret < 0)
61 return ret;
62
63 if (AV_RL32(header) != MKTAG('T', 'T', 'A', '1'))
65
66 int channels = AV_RL16(header + 6);
67 int bps = AV_RL16(header + 8);
68 int samplerate = AV_RL32(header + 10);
69 if(samplerate <= 0 || samplerate > 1000000){
70 av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
72 }
73
74 uint32_t nb_samples = AV_RL32(header + 14);
75 if (!nb_samples) {
76 av_log(s, AV_LOG_ERROR, "invalid number of samples\n");
78 }
79
80 uint32_t crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE_LE), UINT32_MAX, header, 18) ^ UINT32_MAX;
81 if (crc != AV_RL32(header + 18) && s->error_recognition & AV_EF_CRCCHECK) {
82 av_log(s, AV_LOG_ERROR, "Header CRC error\n");
84 }
85
86 c->frame_size = samplerate * 256 / 245;
87 c->last_frame_size = nb_samples % c->frame_size;
88 if (!c->last_frame_size)
89 c->last_frame_size = c->frame_size;
90 c->totalframes = nb_samples / c->frame_size + (c->last_frame_size < c->frame_size);
91 c->currentframe = 0;
92
93 if(c->totalframes >= (INT_MAX - 4)/sizeof(uint32_t) || c->totalframes <= 0){
94 av_log(s, AV_LOG_ERROR, "totalframes %d invalid\n", c->totalframes);
96 }
97
99 if (!st)
100 return AVERROR(ENOMEM);
101
102 avpriv_set_pts_info(st, 64, 1, samplerate);
103 st->start_time = 0;
104 st->duration = nb_samples;
105
106 ret = ff_alloc_extradata(st->codecpar, sizeof(header));
107 if (ret < 0)
108 return ret;
109 memcpy(st->codecpar->extradata, header, sizeof(header));
110
111 framepos = avio_tell(s->pb);
112 if (framepos < 0)
113 return framepos;
114 framepos += 4 * c->totalframes + 4;
115
117 for (int i = 0; i < c->totalframes; i++) {
118 uint32_t size = avio_rl32(s->pb);
119 int r;
120 if (avio_feof(s->pb))
121 return AVERROR_INVALIDDATA;
122 if ((r = av_add_index_entry(st, framepos, i * (int64_t)c->frame_size, size, 0,
123 AVINDEX_KEYFRAME)) < 0)
124 return r;
125 framepos += size;
126 }
127 crc = ffio_get_checksum(s->pb) ^ UINT32_MAX;
128 if (crc != avio_rl32(s->pb) && s->error_recognition & AV_EF_CRCCHECK) {
129 av_log(s, AV_LOG_ERROR, "Seek table CRC error\n");
130 return AVERROR_INVALIDDATA;
131 }
132
136 st->codecpar->sample_rate = samplerate;
138
139 if (s->pb->seekable & AVIO_SEEKABLE_NORMAL) {
140 int64_t pos = avio_tell(s->pb);
142 avio_seek(s->pb, pos, SEEK_SET);
143 }
144
145 return 0;
146}
147
149{
150 TTAContext *c = s->priv_data;
151 AVStream *st = s->streams[0];
152 FFStream *const sti = ffstream(st);
153 int size, ret;
154
155 // FIXME!
156 if (c->currentframe >= c->totalframes)
157 return AVERROR_EOF;
158
159 if (sti->nb_index_entries < c->totalframes) {
160 av_log(s, AV_LOG_ERROR, "Index entry disappeared\n");
161 return AVERROR_INVALIDDATA;
162 }
163
164 size = sti->index_entries[c->currentframe].size;
165
166 ret = av_get_packet(s->pb, pkt, size);
167 pkt->dts = sti->index_entries[c->currentframe++].timestamp;
168 pkt->duration = c->currentframe == c->totalframes ? c->last_frame_size :
169 c->frame_size;
170 return ret;
171}
172
173static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
174{
175 TTAContext *c = s->priv_data;
176 AVStream *st = s->streams[stream_index];
177 int index = av_index_search_timestamp(st, timestamp, flags);
178 if (index < 0)
179 return -1;
180 if (avio_seek(s->pb, ffstream(st)->index_entries[index].pos, SEEK_SET) < 0)
181 return -1;
182
183 c->currentframe = index;
184
185 return 0;
186}
187
189 .p.name = "tta",
190 .p.long_name = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
191 .p.extensions = "tta",
192 .priv_data_size = sizeof(TTAContext),
193 .flags_internal = FF_INFMT_FLAG_ID3V2_AUTO,
198};
const FFInputFormat ff_tta_demuxer
Definition tta.c:188
int64_t ff_ape_parse_tag(AVFormatContext *s)
Read and parse an APE tag.
Definition apetag.c:110
channels
Definition aptx.h:31
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVINDEX_KEYFRAME
Definition avformat.h:628
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition avformat.h:481
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition utils.c:98
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition avio.h:41
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
void ffio_init_checksum(AVIOContext *s, unsigned long(*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum)
Definition aviobuf.c:594
unsigned long ffio_get_checksum(AVIOContext *s)
Definition aviobuf.c:586
unsigned long ff_crcEDB88320_update(unsigned long checksum, const uint8_t *buf, unsigned int len)
Definition aviobuf.c:574
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
Public header for CRC hash function implementation.
#define AV_EF_CRCCHECK
Verify checksums embedded in the bitstream (could be of either encoded or decoded data,...
Definition defs.h:48
#define FF_INFMT_FLAG_ID3V2_AUTO
Automatically parse ID3v2 metadata.
Definition demux.h:45
static AVPacket * pkt
Public dictionary API.
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_CODEC_ID_TTA
Definition codec_id.h:475
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition seek.c:122
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition seek.c:245
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
Definition crc.c:389
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
Definition crc.c:421
@ AV_CRC_32_IEEE_LE
Definition crc.h:53
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
int index
Definition gxfenc.c:90
void ff_id3v1_read(AVFormatContext *s)
Read an ID3v1 tag.
Definition id3v1.c:278
#define r
Definition input.c:42
#define AV_RL32(p)
#define AV_RL16(p)
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition utils.c:237
static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition tta.c:148
static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition tta.c:173
static int tta_read_header(AVFormatContext *s)
Definition tta.c:50
static int tta_probe(const AVProbeData *p)
Definition tta.c:39
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition libcdio.c:151
#define MKTAG(a, b, c, d)
Definition macros.h:55
unsigned bps
Definition movenc.c:2088
static const uint8_t header[24]
Definition sdr2.c:68
unsigned int pos
Definition spdifenc.c:431
int nb_channels
Number of channels in this layout.
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
Definition avformat.h:622
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition avformat.h:815
int nb_index_entries
Definition internal.h:193
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition internal.h:191
int totalframes
Definition tta.c:34
int last_frame_size
Definition tta.c:36
int frame_size
Definition tta.c:35
int currentframe
Definition tta.c:34
#define av_log(a,...)
int size
static double c[64]