FFmpeg
Loading...
Searching...
No Matches
tak.c
Go to the documentation of this file.
1/*
2 * TAK common code
3 * Copyright (c) 2012 Paul B Mahol
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
23#include "libavutil/crc.h"
25
26#define CACHED_BITSTREAM_READER !ARCH_X86_32
27#define BITSTREAM_READER_LE
28#include "tak.h"
29
51
52static const uint16_t frame_duration_type_quants[] = {
53 3, 4, 6, 8, 4096, 8192, 16384, 512, 1024, 2048,
54};
55
56static int tak_get_nb_samples(int sample_rate, enum TAKFrameSizeType type)
57{
58 int nb_samples, max_nb_samples;
59
60 if (type <= TAK_FST_250ms) {
61 nb_samples = sample_rate * frame_duration_type_quants[type] >>
63 max_nb_samples = 16384;
65 nb_samples = frame_duration_type_quants[type];
66 max_nb_samples = sample_rate *
69 } else {
71 }
72
73 if (nb_samples <= 0 || nb_samples > max_nb_samples)
75
76 return nb_samples;
77}
78
79int ff_tak_check_crc(const uint8_t *buf, unsigned int buf_size)
80{
81 uint32_t crc, CRC;
82
83 if (buf_size < 4)
85 buf_size -= 3;
86
87 CRC = AV_RB24(buf + buf_size);
88 crc = av_crc(av_crc_get_table(AV_CRC_24_IEEE), 0xCE04B7U, buf, buf_size);
89 if (CRC != crc)
91
92 return 0;
93}
94
96{
97 uint64_t channel_mask = 0;
98 int frame_type, i, ret;
99
100 s->codec = get_bits(gb, TAK_ENCODER_CODEC_BITS);
102
104 s->samples = get_bits64(gb, TAK_SIZE_SAMPLES_NUM_BITS);
105
106 s->data_type = get_bits(gb, TAK_FORMAT_DATA_TYPE_BITS);
107 s->sample_rate = get_bits(gb, TAK_FORMAT_SAMPLE_RATE_BITS) +
109 s->bps = get_bits(gb, TAK_FORMAT_BPS_BITS) +
111 s->channels = get_bits(gb, TAK_FORMAT_CHANNEL_BITS) +
113
114 if (get_bits1(gb)) {
116 if (get_bits1(gb)) {
117 for (i = 0; i < s->channels; i++) {
119
121 channel_mask |= tak_channel_layouts[value];
122 }
123 }
124 }
125
126 s->ch_layout = channel_mask;
127
128 ret = tak_get_nb_samples(s->sample_rate, frame_type);
129 if (ret < 0)
130 return ret;
131 s->frame_samples = ret;
132
133 return 0;
134}
135
136int avpriv_tak_parse_streaminfo(TAKStreamInfo *s, const uint8_t *buf, int size)
137{
138 GetBitContext gb;
139 int ret = init_get_bits8(&gb, buf, size);
140
141 if (ret < 0)
142 return AVERROR_INVALIDDATA;
143
144 return tak_parse_streaminfo(s, &gb);
145}
146
148 TAKStreamInfo *ti, int log_level_offset)
149{
151 av_log(logctx, AV_LOG_ERROR + log_level_offset, "missing sync id\n");
152 return AVERROR_INVALIDDATA;
153 }
154
157
158 if (ti->flags & TAK_FRAME_FLAG_IS_LAST) {
160 skip_bits(gb, 2);
161 } else {
162 ti->last_frame_samples = 0;
163 }
164
165 if (ti->flags & TAK_FRAME_FLAG_HAS_INFO) {
166 int ret = tak_parse_streaminfo(ti, gb);
167 if (ret < 0)
168 return ret;
169
170 if (get_bits(gb, 6))
171 skip_bits(gb, 25);
172 align_get_bits(gb);
173 }
174
176 return AVERROR_INVALIDDATA;
177
178 if (get_bits_left(gb) < 24)
179 return AVERROR_INVALIDDATA;
180
181 skip_bits(gb, 24);
182
183 return 0;
184}
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
long long int64_t
Definition coverity.c:34
Public header for CRC hash function implementation.
double value
Definition eval.c:102
static int get_bits_left(GetBitContext *gb)
Definition get_bits.h:688
static unsigned int get_bits1(GetBitContext *s)
Definition get_bits.h:391
static void skip_bits(GetBitContext *s, int n)
Definition get_bits.h:383
static uint64_t get_bits64(GetBitContext *s, int n)
Read 0-64 bits.
Definition get_bits.h:456
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition get_bits.h:544
static const uint8_t * align_get_bits(GetBitContext *s)
Definition get_bits.h:560
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition get_bits.h:337
#define AV_CH_SIDE_LEFT
#define AV_CH_TOP_FRONT_LEFT
#define AV_CH_FRONT_RIGHT
#define AV_CH_TOP_BACK_CENTER
#define AV_CH_FRONT_RIGHT_OF_CENTER
#define AV_CH_BACK_CENTER
#define AV_CH_TOP_FRONT_CENTER
#define AV_CH_FRONT_LEFT_OF_CENTER
#define AV_CH_BACK_RIGHT
#define AV_CH_FRONT_CENTER
#define AV_CH_TOP_BACK_RIGHT
#define AV_CH_TOP_CENTER
#define AV_CH_SIDE_RIGHT
#define AV_CH_BACK_LEFT
#define AV_CH_TOP_BACK_LEFT
#define AV_CH_LOW_FREQUENCY
#define AV_CH_TOP_FRONT_RIGHT
#define AV_CH_FRONT_LEFT
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_24_IEEE
Definition crc.h:55
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
cl_device_type type
#define AV_RB24(x)
frame_type
#define FF_ARRAY_ELEMS(a)
int last_frame_samples
Definition tak.h:135
int frame_num
Definition tak.h:133
int flags
Definition tak.h:127
#define av_log(a,...)
static int tak_get_nb_samples(int sample_rate, enum TAKFrameSizeType type)
Definition tak.c:56
static const int64_t tak_channel_layouts[]
Definition tak.c:30
int ff_tak_decode_frame_header(void *logctx, GetBitContext *gb, TAKStreamInfo *ti, int log_level_offset)
Validate and decode a frame header.
Definition tak.c:147
int ff_tak_check_crc(const uint8_t *buf, unsigned int buf_size)
Definition tak.c:79
static int tak_parse_streaminfo(TAKStreamInfo *s, GetBitContext *gb)
Definition tak.c:95
static const uint16_t frame_duration_type_quants[]
Definition tak.c:52
int avpriv_tak_parse_streaminfo(TAKStreamInfo *s, const uint8_t *buf, int size)
Parse the Streaminfo metadata block.
Definition tak.c:136
TAK (Tom's lossless Audio Kompressor) decoder/demuxer common functions.
#define TAK_FRAME_FLAG_HAS_METADATA
Definition tak.h:60
#define TAK_FORMAT_CH_LAYOUT_BITS
Definition tak.h:39
#define TAK_CHANNELS_MIN
Definition tak.h:47
#define TAK_FRAME_HEADER_NO_BITS
Definition tak.h:53
TAKFrameSizeType
Definition tak.h:113
@ TAK_FST_250ms
Definition tak.h:117
#define TAK_FRAME_HEADER_SYNC_ID
Definition tak.h:50
#define TAK_FORMAT_CHANNEL_BITS
Definition tak.h:37
#define TAK_BPS_MIN
Definition tak.h:48
#define TAK_ENCODER_CODEC_BITS
Definition tak.h:44
#define TAK_ENCODER_PROFILE_BITS
Definition tak.h:45
#define TAK_FRAME_FLAG_IS_LAST
Definition tak.h:58
#define TAK_FRAME_HEADER_FLAGS_BITS
Definition tak.h:49
#define TAK_FRAME_FLAG_HAS_INFO
Definition tak.h:59
#define TAK_SIZE_SAMPLES_NUM_BITS
Definition tak.h:41
#define TAK_FORMAT_SAMPLE_RATE_BITS
Definition tak.h:35
#define TAK_FORMAT_BPS_BITS
Definition tak.h:36
#define TAK_FRAME_HEADER_SYNC_ID_BITS
Definition tak.h:51
#define TAK_SAMPLE_RATE_MIN
Definition tak.h:46
#define TAK_SIZE_FRAME_DURATION_BITS
Definition tak.h:40
#define TAK_FORMAT_VALID_BITS
Definition tak.h:38
#define TAK_FRAME_HEADER_SAMPLE_COUNT_BITS
Definition tak.h:52
#define TAK_FORMAT_DATA_TYPE_BITS
Definition tak.h:34
#define TAK_FRAME_DURATION_QUANT_SHIFT
Definition tak.h:54
int size