FFmpeg
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"
24 #include "libavutil/intreadwrite.h"
25 
26 #define CACHED_BITSTREAM_READER !ARCH_X86_32
27 #define BITSTREAM_READER_LE
28 #include "tak.h"
29 
30 static const int64_t tak_channel_layouts[] = {
31  0,
50 };
51 
52 static const uint16_t frame_duration_type_quants[] = {
53  3, 4, 6, 8, 4096, 8192, 16384, 512, 1024, 2048,
54 };
55 
57 {
58  int nb_samples, max_nb_samples;
59 
60  if (type <= TAK_FST_250ms) {
63  max_nb_samples = 16384;
65  nb_samples = frame_duration_type_quants[type];
66  max_nb_samples = sample_rate *
69  } else {
70  return AVERROR_INVALIDDATA;
71  }
72 
73  if (nb_samples <= 0 || nb_samples > max_nb_samples)
74  return AVERROR_INVALIDDATA;
75 
76  return nb_samples;
77 }
78 
79 int ff_tak_check_crc(const uint8_t *buf, unsigned int buf_size)
80 {
81  uint32_t crc, CRC;
82 
83  if (buf_size < 4)
84  return AVERROR_INVALIDDATA;
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)
90  return AVERROR_INVALIDDATA;
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) +
110  TAK_BPS_MIN;
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 
136 int 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 }
ff_tak_decode_frame_header
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
get_bits_left
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:694
tak_channel_layouts
static const int64_t tak_channel_layouts[]
Definition: tak.c:30
AV_CH_TOP_FRONT_CENTER
#define AV_CH_TOP_FRONT_CENTER
Definition: channel_layout.h:181
TAK_FRAME_HEADER_NO_BITS
#define TAK_FRAME_HEADER_NO_BITS
Definition: tak.h:53
AV_CH_TOP_FRONT_RIGHT
#define AV_CH_TOP_FRONT_RIGHT
Definition: channel_layout.h:182
TAK_FRAME_HEADER_SYNC_ID
#define TAK_FRAME_HEADER_SYNC_ID
Definition: tak.h:50
TAKStreamInfo::flags
int flags
Definition: tak.h:127
AV_CRC_24_IEEE
@ AV_CRC_24_IEEE
Definition: crc.h:55
TAK_FORMAT_CH_LAYOUT_BITS
#define TAK_FORMAT_CH_LAYOUT_BITS
Definition: tak.h:39
AV_CH_TOP_FRONT_LEFT
#define AV_CH_TOP_FRONT_LEFT
Definition: channel_layout.h:180
TAKStreamInfo::last_frame_samples
int last_frame_samples
Definition: tak.h:135
TAK_BPS_MIN
#define TAK_BPS_MIN
Definition: tak.h:48
sample_rate
sample_rate
Definition: ffmpeg_filter.c:425
AV_CH_TOP_BACK_LEFT
#define AV_CH_TOP_BACK_LEFT
Definition: channel_layout.h:183
TAK_SIZE_FRAME_DURATION_BITS
#define TAK_SIZE_FRAME_DURATION_BITS
Definition: tak.h:40
crc.h
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:381
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:335
AV_CH_TOP_BACK_CENTER
#define AV_CH_TOP_BACK_CENTER
Definition: channel_layout.h:184
TAK_FRAME_FLAG_HAS_INFO
#define TAK_FRAME_FLAG_HAS_INFO
Definition: tak.h:59
GetBitContext
Definition: get_bits.h:108
AV_CH_BACK_LEFT
#define AV_CH_BACK_LEFT
Definition: channel_layout.h:172
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:545
AV_CH_LOW_FREQUENCY
#define AV_CH_LOW_FREQUENCY
Definition: channel_layout.h:171
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
frame_duration_type_quants
static const uint16_t frame_duration_type_quants[]
Definition: tak.c:52
TAK_FORMAT_BPS_BITS
#define TAK_FORMAT_BPS_BITS
Definition: tak.h:36
TAK_FRAME_FLAG_IS_LAST
#define TAK_FRAME_FLAG_IS_LAST
Definition: tak.h:58
TAK_FORMAT_SAMPLE_RATE_BITS
#define TAK_FORMAT_SAMPLE_RATE_BITS
Definition: tak.h:35
TAK_FRAME_FLAG_HAS_METADATA
#define TAK_FRAME_FLAG_HAS_METADATA
Definition: tak.h:60
AV_CH_TOP_CENTER
#define AV_CH_TOP_CENTER
Definition: channel_layout.h:179
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:388
tak.h
AV_CH_FRONT_CENTER
#define AV_CH_FRONT_CENTER
Definition: channel_layout.h:170
AV_CH_FRONT_LEFT_OF_CENTER
#define AV_CH_FRONT_LEFT_OF_CENTER
Definition: channel_layout.h:174
TAKStreamInfo::frame_num
int frame_num
Definition: tak.h:133
TAK_FORMAT_CHANNEL_BITS
#define TAK_FORMAT_CHANNEL_BITS
Definition: tak.h:37
TAK_FST_250ms
@ TAK_FST_250ms
Definition: tak.h:117
size
int size
Definition: twinvq_data.h:10344
ff_tak_check_crc
int ff_tak_check_crc(const uint8_t *buf, unsigned int buf_size)
Definition: tak.c:79
av_crc_get_table
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
Definition: crc.c:374
AV_CH_TOP_BACK_RIGHT
#define AV_CH_TOP_BACK_RIGHT
Definition: channel_layout.h:185
AV_CH_FRONT_RIGHT_OF_CENTER
#define AV_CH_FRONT_RIGHT_OF_CENTER
Definition: channel_layout.h:175
get_bits64
static uint64_t get_bits64(GetBitContext *s, int n)
Read 0-64 bits.
Definition: get_bits.h:453
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
frame_type
frame_type
Definition: jpeg2000_parser.c:31
tak_parse_streaminfo
static int tak_parse_streaminfo(TAKStreamInfo *s, GetBitContext *gb)
Definition: tak.c:95
AV_CH_BACK_CENTER
#define AV_CH_BACK_CENTER
Definition: channel_layout.h:176
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
AV_CH_FRONT_LEFT
#define AV_CH_FRONT_LEFT
Definition: channel_layout.h:168
tak_get_nb_samples
static int tak_get_nb_samples(int sample_rate, enum TAKFrameSizeType type)
Definition: tak.c:56
AV_CH_SIDE_RIGHT
#define AV_CH_SIDE_RIGHT
Definition: channel_layout.h:178
TAK_FRAME_HEADER_FLAGS_BITS
#define TAK_FRAME_HEADER_FLAGS_BITS
Definition: tak.h:49
ret
ret
Definition: filter_design.txt:187
avpriv_tak_parse_streaminfo
int avpriv_tak_parse_streaminfo(TAKStreamInfo *s, const uint8_t *buf, int size)
Parse the Streaminfo metadata block.
Definition: tak.c:136
TAK_FRAME_HEADER_SYNC_ID_BITS
#define TAK_FRAME_HEADER_SYNC_ID_BITS
Definition: tak.h:51
align_get_bits
static const uint8_t * align_get_bits(GetBitContext *s)
Definition: get_bits.h:561
channel_layout.h
av_crc
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:392
TAK_SAMPLE_RATE_MIN
#define TAK_SAMPLE_RATE_MIN
Definition: tak.h:46
TAK_FORMAT_VALID_BITS
#define TAK_FORMAT_VALID_BITS
Definition: tak.h:38
TAK_ENCODER_PROFILE_BITS
#define TAK_ENCODER_PROFILE_BITS
Definition: tak.h:45
AV_CH_FRONT_RIGHT
#define AV_CH_FRONT_RIGHT
Definition: channel_layout.h:169
TAK_CHANNELS_MIN
#define TAK_CHANNELS_MIN
Definition: tak.h:47
TAKStreamInfo
Definition: tak.h:126
TAK_FRAME_DURATION_QUANT_SHIFT
#define TAK_FRAME_DURATION_QUANT_SHIFT
Definition: tak.h:54
TAK_FRAME_HEADER_SAMPLE_COUNT_BITS
#define TAK_FRAME_HEADER_SAMPLE_COUNT_BITS
Definition: tak.h:52
TAKFrameSizeType
TAKFrameSizeType
Definition: tak.h:113
TAK_SIZE_SAMPLES_NUM_BITS
#define TAK_SIZE_SAMPLES_NUM_BITS
Definition: tak.h:41
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
AV_CH_BACK_RIGHT
#define AV_CH_BACK_RIGHT
Definition: channel_layout.h:173
TAK_FORMAT_DATA_TYPE_BITS
#define TAK_FORMAT_DATA_TYPE_BITS
Definition: tak.h:34
AV_RB24
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_RB24
Definition: bytestream.h:97
AV_CH_SIDE_LEFT
#define AV_CH_SIDE_LEFT
Definition: channel_layout.h:177
TAK_ENCODER_CODEC_BITS
#define TAK_ENCODER_CODEC_BITS
Definition: tak.h:44