FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tta.c
Go to the documentation of this file.
1 /*
2  * TTA (The Lossless True Audio) decoder
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 /**
23  * @file
24  * TTA (The Lossless True Audio) decoder
25  * @see http://www.true-audio.com/
26  * @see http://tta.corecodec.org/
27  * @author Alex Beregszaszi
28  */
29 
30 #define BITSTREAM_READER_LE
31 #include <limits.h>
32 #include "ttadata.h"
33 #include "ttadsp.h"
34 #include "avcodec.h"
35 #include "get_bits.h"
36 #include "thread.h"
37 #include "unary.h"
38 #include "internal.h"
39 #include "libavutil/crc.h"
40 #include "libavutil/intreadwrite.h"
41 #include "libavutil/opt.h"
42 
43 #define FORMAT_SIMPLE 1
44 #define FORMAT_ENCRYPTED 2
45 
46 typedef struct TTAContext {
47  AVClass *class;
49  const AVCRC *crc_table;
50 
52  unsigned data_length;
54 
56 
61 } TTAContext;
62 
63 static const int64_t tta_channel_layouts[7] = {
67  0,
69  AV_CH_LAYOUT_5POINT1_BACK|AV_CH_BACK_CENTER,
71 };
72 
73 static int tta_check_crc(TTAContext *s, const uint8_t *buf, int buf_size)
74 {
75  uint32_t crc, CRC;
76 
77  CRC = AV_RL32(buf + buf_size);
78  crc = av_crc(s->crc_table, 0xFFFFFFFFU, buf, buf_size);
79  if (CRC != (crc ^ 0xFFFFFFFFU)) {
80  av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
81  return AVERROR_INVALIDDATA;
82  }
83 
84  return 0;
85 }
86 
87 static uint64_t tta_check_crc64(uint8_t *pass)
88 {
89  uint64_t crc = UINT64_MAX, poly = 0x42F0E1EBA9EA3693U;
90  uint8_t *end = pass + strlen(pass);
91  int i;
92 
93  while (pass < end) {
94  crc ^= (uint64_t)*pass++ << 56;
95  for (i = 0; i < 8; i++)
96  crc = (crc << 1) ^ (poly & (((int64_t) crc) >> 63));
97  }
98 
99  return crc ^ UINT64_MAX;
100 }
101 
103 {
104  TTAContext *s = avctx->priv_data;
105 
106  if (s->bps < 3) {
108  if (!s->decode_buffer)
109  return AVERROR(ENOMEM);
110  } else
111  s->decode_buffer = NULL;
112  s->ch_ctx = av_malloc_array(avctx->channels, sizeof(*s->ch_ctx));
113  if (!s->ch_ctx) {
114  av_freep(&s->decode_buffer);
115  return AVERROR(ENOMEM);
116  }
117 
118  return 0;
119 }
120 
122 {
123  TTAContext *s = avctx->priv_data;
124  GetBitContext gb;
125  int total_frames;
126 
127  s->avctx = avctx;
128 
129  // 30bytes includes TTA1 header
130  if (avctx->extradata_size < 22)
131  return AVERROR_INVALIDDATA;
132 
134  init_get_bits8(&gb, avctx->extradata, avctx->extradata_size);
135  if (show_bits_long(&gb, 32) == AV_RL32("TTA1")) {
136  /* signature */
137  skip_bits_long(&gb, 32);
138 
139  s->format = get_bits(&gb, 16);
140  if (s->format > 2) {
141  av_log(avctx, AV_LOG_ERROR, "Invalid format\n");
142  return AVERROR_INVALIDDATA;
143  }
144  if (s->format == FORMAT_ENCRYPTED) {
145  if (!s->pass) {
146  av_log(avctx, AV_LOG_ERROR, "Missing password for encrypted stream. Please use the -password option\n");
147  return AVERROR(EINVAL);
148  }
150  }
151  avctx->channels = s->channels = get_bits(&gb, 16);
152  if (s->channels > 1 && s->channels < 9)
154  avctx->bits_per_raw_sample = get_bits(&gb, 16);
155  s->bps = (avctx->bits_per_raw_sample + 7) / 8;
156  avctx->sample_rate = get_bits_long(&gb, 32);
157  s->data_length = get_bits_long(&gb, 32);
158  skip_bits_long(&gb, 32); // CRC32 of header
159 
160  if (s->channels == 0) {
161  av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
162  return AVERROR_INVALIDDATA;
163  } else if (avctx->sample_rate == 0) {
164  av_log(avctx, AV_LOG_ERROR, "Invalid samplerate\n");
165  return AVERROR_INVALIDDATA;
166  }
167 
168  switch(s->bps) {
169  case 1: avctx->sample_fmt = AV_SAMPLE_FMT_U8; break;
170  case 2:
171  avctx->sample_fmt = AV_SAMPLE_FMT_S16;
172  break;
173  case 3:
174  avctx->sample_fmt = AV_SAMPLE_FMT_S32;
175  break;
176  //case 4: avctx->sample_fmt = AV_SAMPLE_FMT_S32; break;
177  default:
178  av_log(avctx, AV_LOG_ERROR, "Invalid/unsupported sample format.\n");
179  return AVERROR_INVALIDDATA;
180  }
181 
182  // prevent overflow
183  if (avctx->sample_rate > 0x7FFFFFu) {
184  av_log(avctx, AV_LOG_ERROR, "sample_rate too large\n");
185  return AVERROR(EINVAL);
186  }
187  s->frame_length = 256 * avctx->sample_rate / 245;
188 
190  total_frames = s->data_length / s->frame_length +
191  (s->last_frame_length ? 1 : 0);
192 
193  av_log(avctx, AV_LOG_DEBUG, "format: %d chans: %d bps: %d rate: %d block: %d\n",
194  s->format, avctx->channels, avctx->bits_per_coded_sample, avctx->sample_rate,
195  avctx->block_align);
196  av_log(avctx, AV_LOG_DEBUG, "data_length: %d frame_length: %d last: %d total: %d\n",
197  s->data_length, s->frame_length, s->last_frame_length, total_frames);
198 
199  if(s->frame_length >= UINT_MAX / (s->channels * sizeof(int32_t))){
200  av_log(avctx, AV_LOG_ERROR, "frame_length too large\n");
201  return AVERROR_INVALIDDATA;
202  }
203  } else {
204  av_log(avctx, AV_LOG_ERROR, "Wrong extradata present\n");
205  return AVERROR_INVALIDDATA;
206  }
207 
208  ff_ttadsp_init(&s->dsp);
209 
210  return allocate_buffers(avctx);
211 }
212 
213 static int tta_decode_frame(AVCodecContext *avctx, void *data,
214  int *got_frame_ptr, AVPacket *avpkt)
215 {
216  AVFrame *frame = data;
217  ThreadFrame tframe = { .f = data };
218  const uint8_t *buf = avpkt->data;
219  int buf_size = avpkt->size;
220  TTAContext *s = avctx->priv_data;
221  GetBitContext gb;
222  int i, ret;
223  int cur_chan = 0, framelen = s->frame_length;
224  int32_t *p;
225 
226  if (avctx->err_recognition & AV_EF_CRCCHECK) {
227  if (buf_size < 4 ||
228  (tta_check_crc(s, buf, buf_size - 4) && avctx->err_recognition & AV_EF_EXPLODE))
229  return AVERROR_INVALIDDATA;
230  }
231 
232  if ((ret = init_get_bits8(&gb, avpkt->data, avpkt->size)) < 0)
233  return ret;
234 
235  /* get output buffer */
236  frame->nb_samples = framelen;
237  if ((ret = ff_thread_get_buffer(avctx, &tframe, 0)) < 0)
238  return ret;
239 
240  // decode directly to output buffer for 24-bit sample format
241  if (s->bps == 3)
242  s->decode_buffer = (int32_t *)frame->data[0];
243 
244  // init per channel states
245  for (i = 0; i < s->channels; i++) {
246  TTAFilter *filter = &s->ch_ctx[i].filter;
247  s->ch_ctx[i].predictor = 0;
249  if (s->format == FORMAT_ENCRYPTED) {
250  int i;
251  for (i = 0; i < 8; i++)
252  filter->qm[i] = sign_extend(s->crc_pass[i], 8);
253  }
254  ff_tta_rice_init(&s->ch_ctx[i].rice, 10, 10);
255  }
256 
257  i = 0;
258  for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++) {
259  int32_t *predictor = &s->ch_ctx[cur_chan].predictor;
260  TTAFilter *filter = &s->ch_ctx[cur_chan].filter;
261  TTARice *rice = &s->ch_ctx[cur_chan].rice;
262  uint32_t unary, depth, k;
263  int32_t value;
264 
265  unary = get_unary(&gb, 0, get_bits_left(&gb));
266 
267  if (unary == 0) {
268  depth = 0;
269  k = rice->k0;
270  } else {
271  depth = 1;
272  k = rice->k1;
273  unary--;
274  }
275 
276  if (get_bits_left(&gb) < k) {
277  ret = AVERROR_INVALIDDATA;
278  goto error;
279  }
280 
281  if (k) {
282  if (k > MIN_CACHE_BITS) {
283  ret = AVERROR_INVALIDDATA;
284  goto error;
285  }
286  value = (unary << k) + get_bits(&gb, k);
287  } else
288  value = unary;
289 
290  // FIXME: copy paste from original
291  switch (depth) {
292  case 1:
293  rice->sum1 += value - (rice->sum1 >> 4);
294  if (rice->k1 > 0 && rice->sum1 < ff_tta_shift_16[rice->k1])
295  rice->k1--;
296  else if(rice->sum1 > ff_tta_shift_16[rice->k1 + 1])
297  rice->k1++;
298  value += ff_tta_shift_1[rice->k0];
299  default:
300  rice->sum0 += value - (rice->sum0 >> 4);
301  if (rice->k0 > 0 && rice->sum0 < ff_tta_shift_16[rice->k0])
302  rice->k0--;
303  else if(rice->sum0 > ff_tta_shift_16[rice->k0 + 1])
304  rice->k0++;
305  }
306 
307  // extract coded value
308  *p = 1 + ((value >> 1) ^ ((value & 1) - 1));
309 
310  // run hybrid filter
311  s->dsp.ttafilter_process_dec(filter->qm, filter->dx, filter->dl, &filter->error, p,
312  filter->shift, filter->round);
313 
314  // fixed order prediction
315 #define PRED(x, k) (int32_t)((((uint64_t)(x) << (k)) - (x)) >> (k))
316  switch (s->bps) {
317  case 1: *p += PRED(*predictor, 4); break;
318  case 2:
319  case 3: *p += PRED(*predictor, 5); break;
320  case 4: *p += *predictor; break;
321  }
322  *predictor = *p;
323 
324  // flip channels
325  if (cur_chan < (s->channels-1))
326  cur_chan++;
327  else {
328  // decorrelate in case of multiple channels
329  if (s->channels > 1) {
330  int32_t *r = p - 1;
331  for (*p += *r / 2; r > p - s->channels; r--)
332  *r = *(r + 1) - *r;
333  }
334  cur_chan = 0;
335  i++;
336  // check for last frame
337  if (i == s->last_frame_length && get_bits_left(&gb) / 8 == 4) {
338  frame->nb_samples = framelen = s->last_frame_length;
339  break;
340  }
341  }
342  }
343 
344  align_get_bits(&gb);
345  if (get_bits_left(&gb) < 32) {
346  ret = AVERROR_INVALIDDATA;
347  goto error;
348  }
349  skip_bits_long(&gb, 32); // frame crc
350 
351  // convert to output buffer
352  switch (s->bps) {
353  case 1: {
354  uint8_t *samples = (uint8_t *)frame->data[0];
355  for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++)
356  *samples++ = *p + 0x80;
357  break;
358  }
359  case 2: {
360  int16_t *samples = (int16_t *)frame->data[0];
361  for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++)
362  *samples++ = *p;
363  break;
364  }
365  case 3: {
366  // shift samples for 24-bit sample format
367  int32_t *samples = (int32_t *)frame->data[0];
368  for (i = 0; i < framelen * s->channels; i++)
369  *samples++ <<= 8;
370  // reset decode buffer
371  s->decode_buffer = NULL;
372  break;
373  }
374  }
375 
376  *got_frame_ptr = 1;
377 
378  return buf_size;
379 error:
380  // reset decode buffer
381  if (s->bps == 3)
382  s->decode_buffer = NULL;
383  return ret;
384 }
385 
387 {
388  TTAContext *s = avctx->priv_data;
389  s->avctx = avctx;
390  return allocate_buffers(avctx);
391 }
392 
394  TTAContext *s = avctx->priv_data;
395 
396  if (s->bps < 3)
397  av_freep(&s->decode_buffer);
398  s->decode_buffer = NULL;
399  av_freep(&s->ch_ctx);
400 
401  return 0;
402 }
403 
404 #define OFFSET(x) offsetof(TTAContext, x)
405 #define DEC (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
406 static const AVOption options[] = {
407  { "password", "Set decoding password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, DEC },
408  { NULL },
409 };
410 
411 static const AVClass tta_decoder_class = {
412  .class_name = "TTA Decoder",
413  .item_name = av_default_item_name,
414  .option = options,
415  .version = LIBAVUTIL_VERSION_INT,
416 };
417 
419  .name = "tta",
420  .long_name = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
421  .type = AVMEDIA_TYPE_AUDIO,
422  .id = AV_CODEC_ID_TTA,
423  .priv_data_size = sizeof(TTAContext),
425  .close = tta_decode_close,
428  .capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
429  .priv_class = &tta_decoder_class,
430 };
static unsigned int show_bits_long(GetBitContext *s, int n)
Show 0-32 bits.
Definition: get_bits.h:383
static int tta_check_crc(TTAContext *s, const uint8_t *buf, int buf_size)
Definition: tta.c:73
#define NULL
Definition: coverity.c:32
uint32_t poly
Definition: crc.c:296
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVOption.
Definition: opt.h:255
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
TTAChannel * ch_ctx
Definition: tta.c:59
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
static int init_thread_copy(AVCodecContext *avctx)
Definition: tta.c:386
AVFrame * f
Definition: thread.h:36
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
static void skip_bits_long(GetBitContext *s, int n)
Definition: get_bits.h:217
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int tta_decode_init(AVCodecContext *avctx)
Definition: tta.c:121
static int tta_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: tta.c:213
void ff_tta_rice_init(TTARice *c, uint32_t k0, uint32_t k1)
Definition: ttadata.c:40
int size
Definition: avcodec.h:1163
int32_t predictor
Definition: ttadata.h:39
Definition: tta.c:46
int format
Definition: tta.c:51
int bps
Definition: tta.c:51
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:2727
#define AV_CH_LAYOUT_STEREO
static const int64_t tta_channel_layouts[7]
Definition: tta.c:63
AVCodec.
Definition: avcodec.h:3181
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
Definition: avcodec.h:2022
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
int32_t error
Definition: ttadata.h:28
int32_t round
Definition: ttadata.h:28
static av_cold int tta_decode_close(AVCodecContext *avctx)
Definition: tta.c:393
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1993
uint8_t
#define av_cold
Definition: attributes.h:74
AV_SAMPLE_FMT_U8
AVOptions.
void(* ttafilter_process_dec)(int32_t *qm, int32_t *dx, int32_t *dl, int32_t *error, int32_t *in, int32_t shift, int32_t round)
Definition: ttadsp.h:26
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
Multithreading support functions.
TTADSPContext dsp
Definition: tta.c:60
static uint64_t tta_check_crc64(uint8_t *pass)
Definition: tta.c:87
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1355
#define AV_CH_LOW_FREQUENCY
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:789
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1162
static const AVOption options[]
Definition: tta.c:406
int32_t qm[MAX_ORDER]
Definition: ttadata.h:29
bitstream reader API header.
int32_t shift
Definition: ttadata.h:28
av_cold void ff_ttadsp_init(TTADSPContext *c)
Definition: ttadsp.c:51
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2720
uint8_t crc_pass[8]
Definition: tta.c:57
signed 32 bits
Definition: samplefmt.h:63
#define av_log(a,...)
static void predictor(uint8_t *src, int size)
Definition: exr.c:220
#define U(x)
Definition: vp56_arith.h:37
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:588
#define AV_WL64(p, v)
Definition: intreadwrite.h:440
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static int allocate_buffers(AVCodecContext *avctx)
Definition: tta.c:102
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2623
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
AVCodec ff_tta_decoder
Definition: tta.c:418
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
const char * r
Definition: vf_curves.c:107
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
#define AV_CH_LAYOUT_QUAD
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
Libavcodec external API header.
#define OFFSET(x)
Definition: tta.c:404
const AVCRC * crc_table
Definition: tta.c:49
int depth
Definition: v4l.c:61
uint32_t sum1
Definition: ttadata.h:35
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2046
#define pass
Definition: fft_template.c:509
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:214
unsigned data_length
Definition: tta.c:52
const uint32_t ff_tta_shift_1[]
Definition: ttadata.c:23
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2612
ret
Definition: avfilter.c:974
GLsizei GLboolean const GLfloat * value
Definition: opengl_enc.c:109
const uint32_t *const ff_tta_shift_16
Definition: ttadata.c:36
int32_t
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:356
#define AV_CH_LAYOUT_5POINT1_BACK
uint32_t k1
Definition: ttadata.h:35
AVCodecContext * avctx
Definition: tta.c:48
static const AVClass tta_decoder_class
Definition: tta.c:411
int sample_rate
samples per second
Definition: avcodec.h:1985
const uint8_t ff_tta_filter_configs[]
Definition: ttadata.c:38
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:441
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
Definition: avcodec.h:1241
int32_t dx[MAX_ORDER]
Definition: ttadata.h:30
void * buf
Definition: avisynth_c.h:553
int extradata_size
Definition: avcodec.h:1356
Describe the class of an AVClass context structure.
Definition: log.h:67
#define DEC
Definition: tta.c:405
uint8_t * pass
Definition: tta.c:58
int frame_length
Definition: tta.c:53
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:337
int last_frame_length
Definition: tta.c:53
#define MIN_CACHE_BITS
Definition: get_bits.h:125
static av_const int sign_extend(int val, unsigned bits)
Definition: mathops.h:139
#define AV_CH_BACK_CENTER
#define AV_CH_LAYOUT_7POINT1_WIDE
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
Definition: crc.c:342
uint32_t k0
Definition: ttadata.h:35
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:522
#define PRED(x, k)
int channels
Definition: tta.c:51
static void filter(MpegAudioContext *s, int ch, const short *samples, int incr)
common internal api header.
#define CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:866
static int get_unary(GetBitContext *gb, int stop, int len)
Get unary code of limited length.
Definition: unary.h:33
signed 16 bits
Definition: samplefmt.h:62
int32_t * decode_buffer
Definition: tta.c:55
#define AV_EF_CRCCHECK
Verify checksums embedded in the bitstream (could be of either encoded or decoded data...
Definition: avcodec.h:2620
void * priv_data
Definition: avcodec.h:1283
TTAFilter filter
Definition: ttadata.h:40
int channels
number of audio channels
Definition: avcodec.h:1986
int32_t dl[MAX_ORDER]
Definition: ttadata.h:31
#define FORMAT_ENCRYPTED
Definition: tta.c:44
static const uint8_t * align_get_bits(GetBitContext *s)
Definition: get_bits.h:449
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:228
#define av_freep(p)
#define av_malloc_array(a, b)
TTARice rice
Definition: ttadata.h:41
void ff_tta_filter_init(TTAFilter *c, int32_t shift)
Definition: ttadata.c:48
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:85
This structure stores compressed data.
Definition: avcodec.h:1139
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:225
uint32_t AVCRC
Definition: crc.h:34
for(j=16;j >0;--j)
uint32_t sum0
Definition: ttadata.h:35