FFmpeg  2.6.3
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
atrac3plusdec.c
Go to the documentation of this file.
1 /*
2  * ATRAC3+ compatible decoder
3  *
4  * Copyright (c) 2010-2013 Maxim Poliakovski
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * Sony ATRAC3+ compatible decoder.
26  *
27  * Container formats used to store its data:
28  * RIFF WAV (.at3) and Sony OpenMG (.oma, .aa3).
29  *
30  * Technical description of this codec can be found here:
31  * http://wiki.multimedia.cx/index.php?title=ATRAC3plus
32  *
33  * Kudos to Benjamin Larsson and Michael Karcher
34  * for their precious technical help!
35  */
36 
37 #include <stdint.h>
38 #include <string.h>
39 
41 #include "libavutil/float_dsp.h"
42 #include "avcodec.h"
43 #include "get_bits.h"
44 #include "internal.h"
45 #include "atrac.h"
46 #include "atrac3plus.h"
47 
48 typedef struct ATRAC3PContext {
51 
52  DECLARE_ALIGNED(32, float, samples)[2][ATRAC3P_FRAME_SAMPLES]; ///< quantized MDCT spectrum
53  DECLARE_ALIGNED(32, float, mdct_buf)[2][ATRAC3P_FRAME_SAMPLES]; ///< output of the IMDCT
54  DECLARE_ALIGNED(32, float, time_buf)[2][ATRAC3P_FRAME_SAMPLES]; ///< output of the gain compensation
56 
57  AtracGCContext gainc_ctx; ///< gain compensation context
59  FFTContext ipqf_dct_ctx; ///< IDCT context used by IPQF
60 
61  Atrac3pChanUnitCtx *ch_units; ///< global channel units
62 
63  int num_channel_blocks; ///< number of channel blocks
64  uint8_t channel_blocks[5]; ///< channel configuration descriptor
65  uint64_t my_channel_layout; ///< current channel layout
67 
69 {
70  ATRAC3PContext *ctx = avctx->priv_data;
71 
72  av_freep(&ctx->ch_units);
73  av_freep(&ctx->fdsp);
74 
75  return 0;
76 }
77 
79  AVCodecContext *avctx)
80 {
81  memset(ctx->channel_blocks, 0, sizeof(ctx->channel_blocks));
82 
83  switch (avctx->channels) {
84  case 1:
85  if (avctx->channel_layout != AV_CH_FRONT_LEFT)
87 
88  ctx->num_channel_blocks = 1;
89  ctx->channel_blocks[0] = CH_UNIT_MONO;
90  break;
91  case 2:
93  ctx->num_channel_blocks = 1;
95  break;
96  case 3:
98  ctx->num_channel_blocks = 2;
100  ctx->channel_blocks[1] = CH_UNIT_MONO;
101  break;
102  case 4:
104  ctx->num_channel_blocks = 3;
105  ctx->channel_blocks[0] = CH_UNIT_STEREO;
106  ctx->channel_blocks[1] = CH_UNIT_MONO;
107  ctx->channel_blocks[2] = CH_UNIT_MONO;
108  break;
109  case 6:
111  ctx->num_channel_blocks = 4;
112  ctx->channel_blocks[0] = CH_UNIT_STEREO;
113  ctx->channel_blocks[1] = CH_UNIT_MONO;
114  ctx->channel_blocks[2] = CH_UNIT_STEREO;
115  ctx->channel_blocks[3] = CH_UNIT_MONO;
116  break;
117  case 7:
119  ctx->num_channel_blocks = 5;
120  ctx->channel_blocks[0] = CH_UNIT_STEREO;
121  ctx->channel_blocks[1] = CH_UNIT_MONO;
122  ctx->channel_blocks[2] = CH_UNIT_STEREO;
123  ctx->channel_blocks[3] = CH_UNIT_MONO;
124  ctx->channel_blocks[4] = CH_UNIT_MONO;
125  break;
126  case 8:
128  ctx->num_channel_blocks = 5;
129  ctx->channel_blocks[0] = CH_UNIT_STEREO;
130  ctx->channel_blocks[1] = CH_UNIT_MONO;
131  ctx->channel_blocks[2] = CH_UNIT_STEREO;
132  ctx->channel_blocks[3] = CH_UNIT_STEREO;
133  ctx->channel_blocks[4] = CH_UNIT_MONO;
134  break;
135  default:
136  av_log(avctx, AV_LOG_ERROR,
137  "Unsupported channel count: %d!\n", avctx->channels);
138  return AVERROR_INVALIDDATA;
139  }
140 
141  return 0;
142 }
143 
145 {
146  ATRAC3PContext *ctx = avctx->priv_data;
147  int i, ch, ret;
148 
149  if (!avctx->block_align) {
150  av_log(avctx, AV_LOG_ERROR, "block_align is not set\n");
151  return AVERROR(EINVAL);
152  }
153 
155 
156  /* initialize IPQF */
157  ff_mdct_init(&ctx->ipqf_dct_ctx, 5, 1, 32.0 / 32768.0);
158 
159  ff_atrac3p_init_imdct(avctx, &ctx->mdct_ctx);
160 
162 
164 
165  if ((ret = set_channel_params(ctx, avctx)) < 0)
166  return ret;
167 
168  ctx->my_channel_layout = avctx->channel_layout;
169 
170  ctx->ch_units = av_mallocz_array(ctx->num_channel_blocks, sizeof(*ctx->ch_units));
172 
173  if (!ctx->ch_units || !ctx->fdsp) {
174  atrac3p_decode_close(avctx);
175  return AVERROR(ENOMEM);
176  }
177 
178  for (i = 0; i < ctx->num_channel_blocks; i++) {
179  for (ch = 0; ch < 2; ch++) {
180  ctx->ch_units[i].channels[ch].ch_num = ch;
181  ctx->ch_units[i].channels[ch].wnd_shape = &ctx->ch_units[i].channels[ch].wnd_shape_hist[0][0];
182  ctx->ch_units[i].channels[ch].wnd_shape_prev = &ctx->ch_units[i].channels[ch].wnd_shape_hist[1][0];
183  ctx->ch_units[i].channels[ch].gain_data = &ctx->ch_units[i].channels[ch].gain_data_hist[0][0];
184  ctx->ch_units[i].channels[ch].gain_data_prev = &ctx->ch_units[i].channels[ch].gain_data_hist[1][0];
185  ctx->ch_units[i].channels[ch].tones_info = &ctx->ch_units[i].channels[ch].tones_info_hist[0][0];
186  ctx->ch_units[i].channels[ch].tones_info_prev = &ctx->ch_units[i].channels[ch].tones_info_hist[1][0];
187  }
188 
189  ctx->ch_units[i].waves_info = &ctx->ch_units[i].wave_synth_hist[0];
190  ctx->ch_units[i].waves_info_prev = &ctx->ch_units[i].wave_synth_hist[1];
191  }
192 
194 
195  return 0;
196 }
197 
199  float out[2][ATRAC3P_FRAME_SAMPLES],
200  int num_channels,
201  AVCodecContext *avctx)
202 {
203  int i, sb, ch, qu, nspeclines, RNG_index;
204  float *dst, q;
205  int16_t *src;
206  /* calculate RNG table index for each subband */
207  int sb_RNG_index[ATRAC3P_SUBBANDS] = { 0 };
208 
209  if (ctx->mute_flag) {
210  for (ch = 0; ch < num_channels; ch++)
211  memset(out[ch], 0, ATRAC3P_FRAME_SAMPLES * sizeof(*out[ch]));
212  return;
213  }
214 
215  for (qu = 0, RNG_index = 0; qu < ctx->used_quant_units; qu++)
216  RNG_index += ctx->channels[0].qu_sf_idx[qu] +
217  ctx->channels[1].qu_sf_idx[qu];
218 
219  for (sb = 0; sb < ctx->num_coded_subbands; sb++, RNG_index += 128)
220  sb_RNG_index[sb] = RNG_index & 0x3FC;
221 
222  /* inverse quant and power compensation */
223  for (ch = 0; ch < num_channels; ch++) {
224  /* clear channel's residual spectrum */
225  memset(out[ch], 0, ATRAC3P_FRAME_SAMPLES * sizeof(*out[ch]));
226 
227  for (qu = 0; qu < ctx->used_quant_units; qu++) {
228  src = &ctx->channels[ch].spectrum[ff_atrac3p_qu_to_spec_pos[qu]];
229  dst = &out[ch][ff_atrac3p_qu_to_spec_pos[qu]];
230  nspeclines = ff_atrac3p_qu_to_spec_pos[qu + 1] -
231  ff_atrac3p_qu_to_spec_pos[qu];
232 
233  if (ctx->channels[ch].qu_wordlen[qu] > 0) {
234  q = ff_atrac3p_sf_tab[ctx->channels[ch].qu_sf_idx[qu]] *
236  for (i = 0; i < nspeclines; i++)
237  dst[i] = src[i] * q;
238  }
239  }
240 
241  for (sb = 0; sb < ctx->num_coded_subbands; sb++)
242  ff_atrac3p_power_compensation(ctx, ch, &out[ch][0],
243  sb_RNG_index[sb], sb);
244  }
245 
246  if (ctx->unit_type == CH_UNIT_STEREO) {
247  for (sb = 0; sb < ctx->num_coded_subbands; sb++) {
248  if (ctx->swap_channels[sb]) {
249  for (i = 0; i < ATRAC3P_SUBBAND_SAMPLES; i++)
250  FFSWAP(float, out[0][sb * ATRAC3P_SUBBAND_SAMPLES + i],
251  out[1][sb * ATRAC3P_SUBBAND_SAMPLES + i]);
252  }
253 
254  /* flip coefficients' sign if requested */
255  if (ctx->negate_coeffs[sb])
256  for (i = 0; i < ATRAC3P_SUBBAND_SAMPLES; i++)
257  out[1][sb * ATRAC3P_SUBBAND_SAMPLES + i] = -(out[1][sb * ATRAC3P_SUBBAND_SAMPLES + i]);
258  }
259  }
260 }
261 
263  int num_channels, AVCodecContext *avctx)
264 {
265  int ch, sb;
266 
267  for (ch = 0; ch < num_channels; ch++) {
268  for (sb = 0; sb < ch_unit->num_subbands; sb++) {
269  /* inverse transform and windowing */
270  ff_atrac3p_imdct(ctx->fdsp, &ctx->mdct_ctx,
271  &ctx->samples[ch][sb * ATRAC3P_SUBBAND_SAMPLES],
272  &ctx->mdct_buf[ch][sb * ATRAC3P_SUBBAND_SAMPLES],
273  (ch_unit->channels[ch].wnd_shape_prev[sb] << 1) +
274  ch_unit->channels[ch].wnd_shape[sb], sb);
275 
276  /* gain compensation and overlapping */
278  &ctx->mdct_buf[ch][sb * ATRAC3P_SUBBAND_SAMPLES],
279  &ch_unit->prev_buf[ch][sb * ATRAC3P_SUBBAND_SAMPLES],
280  &ch_unit->channels[ch].gain_data_prev[sb],
281  &ch_unit->channels[ch].gain_data[sb],
282  ATRAC3P_SUBBAND_SAMPLES,
283  &ctx->time_buf[ch][sb * ATRAC3P_SUBBAND_SAMPLES]);
284  }
285 
286  /* zero unused subbands in both output and overlapping buffers */
287  memset(&ch_unit->prev_buf[ch][ch_unit->num_subbands * ATRAC3P_SUBBAND_SAMPLES],
288  0,
289  (ATRAC3P_SUBBANDS - ch_unit->num_subbands) *
290  ATRAC3P_SUBBAND_SAMPLES *
291  sizeof(ch_unit->prev_buf[ch][ch_unit->num_subbands * ATRAC3P_SUBBAND_SAMPLES]));
292  memset(&ctx->time_buf[ch][ch_unit->num_subbands * ATRAC3P_SUBBAND_SAMPLES],
293  0,
294  (ATRAC3P_SUBBANDS - ch_unit->num_subbands) *
295  ATRAC3P_SUBBAND_SAMPLES *
296  sizeof(ctx->time_buf[ch][ch_unit->num_subbands * ATRAC3P_SUBBAND_SAMPLES]));
297 
298  /* resynthesize and add tonal signal */
299  if (ch_unit->waves_info->tones_present ||
300  ch_unit->waves_info_prev->tones_present) {
301  for (sb = 0; sb < ch_unit->num_subbands; sb++)
302  if (ch_unit->channels[ch].tones_info[sb].num_wavs ||
303  ch_unit->channels[ch].tones_info_prev[sb].num_wavs) {
304  ff_atrac3p_generate_tones(ch_unit, ctx->fdsp, ch, sb,
305  &ctx->time_buf[ch][sb * 128]);
306  }
307  }
308 
309  /* subband synthesis and acoustic signal output */
310  ff_atrac3p_ipqf(&ctx->ipqf_dct_ctx, &ch_unit->ipqf_ctx[ch],
311  &ctx->time_buf[ch][0], &ctx->outp_buf[ch][0]);
312  }
313 
314  /* swap window shape and gain control buffers. */
315  for (ch = 0; ch < num_channels; ch++) {
316  FFSWAP(uint8_t *, ch_unit->channels[ch].wnd_shape,
317  ch_unit->channels[ch].wnd_shape_prev);
318  FFSWAP(AtracGainInfo *, ch_unit->channels[ch].gain_data,
319  ch_unit->channels[ch].gain_data_prev);
320  FFSWAP(Atrac3pWavesData *, ch_unit->channels[ch].tones_info,
321  ch_unit->channels[ch].tones_info_prev);
322  }
323 
325 }
326 
327 static int atrac3p_decode_frame(AVCodecContext *avctx, void *data,
328  int *got_frame_ptr, AVPacket *avpkt)
329 {
330  ATRAC3PContext *ctx = avctx->priv_data;
331  AVFrame *frame = data;
332  int i, ret, ch_unit_id, ch_block = 0, out_ch_index = 0, channels_to_process;
333  float **samples_p = (float **)frame->extended_data;
334 
336  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
337  return ret;
338 
339  if ((ret = init_get_bits8(&ctx->gb, avpkt->data, avpkt->size)) < 0)
340  return ret;
341 
342  if (get_bits1(&ctx->gb)) {
343  av_log(avctx, AV_LOG_ERROR, "Invalid start bit!\n");
344  return AVERROR_INVALIDDATA;
345  }
346 
347  while (get_bits_left(&ctx->gb) >= 2 &&
348  (ch_unit_id = get_bits(&ctx->gb, 2)) != CH_UNIT_TERMINATOR) {
349  if (ch_unit_id == CH_UNIT_EXTENSION) {
350  avpriv_report_missing_feature(avctx, "Channel unit extension");
351  return AVERROR_PATCHWELCOME;
352  }
353  if (ch_block >= ctx->num_channel_blocks ||
354  ctx->channel_blocks[ch_block] != ch_unit_id) {
355  av_log(avctx, AV_LOG_ERROR,
356  "Frame data doesn't match channel configuration!\n");
357  return AVERROR_INVALIDDATA;
358  }
359 
360  ctx->ch_units[ch_block].unit_type = ch_unit_id;
361  channels_to_process = ch_unit_id + 1;
362 
363  if ((ret = ff_atrac3p_decode_channel_unit(&ctx->gb,
364  &ctx->ch_units[ch_block],
365  channels_to_process,
366  avctx)) < 0)
367  return ret;
368 
369  decode_residual_spectrum(&ctx->ch_units[ch_block], ctx->samples,
370  channels_to_process, avctx);
371  reconstruct_frame(ctx, &ctx->ch_units[ch_block],
372  channels_to_process, avctx);
373 
374  for (i = 0; i < channels_to_process; i++)
375  memcpy(samples_p[out_ch_index + i], ctx->outp_buf[i],
376  ATRAC3P_FRAME_SAMPLES * sizeof(**samples_p));
377 
378  ch_block++;
379  out_ch_index += channels_to_process;
380  }
381 
382  *got_frame_ptr = 1;
383 
384  return avctx->block_align;
385 }
386 
388  .name = "atrac3plus",
389  .long_name = NULL_IF_CONFIG_SMALL("ATRAC3+ (Adaptive TRansform Acoustic Coding 3+)"),
390  .type = AVMEDIA_TYPE_AUDIO,
391  .id = AV_CODEC_ID_ATRAC3P,
392  .priv_data_size = sizeof(ATRAC3PContext),
394  .close = atrac3p_decode_close,
396 };
float prev_buf[2][ATRAC3P_FRAME_SAMPLES]
overlapping buffer
Definition: atrac3plus.h:153
float, planar
Definition: samplefmt.h:70
const float ff_atrac3p_sf_tab[64]
Definition: atrac3plusdsp.c:51
#define AV_CH_LAYOUT_7POINT1
#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:163
Atrac3pWaveSynthParams wave_synth_hist[2]
waves synth history for two frames
Definition: atrac3plus.h:148
const uint16_t ff_atrac3p_qu_to_spec_pos[33]
Map quant unit number to its position in the spectrum.
Definition: atrac3plusdsp.c:41
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
Atrac3pChanUnitCtx * ch_units
global channel units
Definition: atrac3plusdec.c:61
#define AV_CH_LAYOUT_SURROUND
void ff_atrac3p_init_wave_synth(void)
Initialize sine waves synthesizer.
Definition: atrac3plusdsp.c:96
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
GetBitContext gb
Definition: atrac3plusdec.c:49
Atrac3pWavesData * tones_info_prev
Definition: atrac3plus.h:115
int num_coded_subbands
number of subbands with coded spectrum
Definition: atrac3plus.h:137
int size
Definition: avcodec.h:1161
#define DECLARE_ALIGNED(n, t, v)
Definition: mem.h:53
#define AV_CH_LAYOUT_4POINT0
static av_cold int atrac3p_decode_close(AVCodecContext *avctx)
Definition: atrac3plusdec.c:68
int num_wavs
number of sine waves in the group
Definition: atrac3plus.h:76
#define AV_CH_LAYOUT_STEREO
AVCodec.
Definition: avcodec.h:3173
int used_quant_units
number of quant units with coded spectrum
Definition: atrac3plus.h:136
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
Definition: avcodec.h:2020
uint8_t negate_coeffs[ATRAC3P_SUBBANDS]
1 - subband-wise IMDCT coefficients negation
Definition: atrac3plus.h:144
#define ATRAC3P_SUBBANDS
Global unit sizes.
Definition: atrac3plus.h:40
AtracGCContext gainc_ctx
gain compensation context
Definition: atrac3plusdec.c:57
AtracGainInfo * gain_data_prev
gain control data for previous frame
Definition: atrac3plus.h:109
if()
Definition: avfilter.c:975
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1991
uint8_t
#define av_cold
Definition: attributes.h:74
int16_t spectrum[2048]
decoded IMDCT spectrum
Definition: atrac3plus.h:98
float mdct_buf[2][ATRAC3P_FRAME_SAMPLES]
output of the IMDCT
Definition: atrac3plusdec.c:53
static void reconstruct_frame(ATRAC3PContext *ctx, Atrac3pChanUnitCtx *ch_unit, int num_channels, AVCodecContext *avctx)
#define ATRAC3P_FRAME_SAMPLES
Definition: atrac3plus.h:42
static AVFrame * frame
int ff_atrac3p_decode_channel_unit(GetBitContext *gb, Atrac3pChanUnitCtx *ctx, int num_channels, AVCodecContext *avctx)
Decode bitstream data of a channel unit.
Definition: atrac3plus.c:1764
uint8_t * data
Definition: avcodec.h:1160
ATRAC common header.
int qu_sf_idx[32]
array of scale factor indexes for each quant unit
Definition: atrac3plus.h:96
bitstream reader API header.
#define CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:757
static void decode_residual_spectrum(Atrac3pChanUnitCtx *ctx, float out[2][ATRAC3P_FRAME_SAMPLES], int num_channels, AVCodecContext *avctx)
uint8_t * wnd_shape
IMDCT window shape for current frame.
Definition: atrac3plus.h:103
#define av_log(a,...)
void ff_atrac3p_imdct(AVFloatDSPContext *fdsp, FFTContext *mdct_ctx, float *pIn, float *pOut, int wind_id, int sb)
Regular IMDCT and windowing without overlapping, with spectrum reversal in the odd subbands...
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:588
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:175
int num_channel_blocks
number of channel blocks
Definition: atrac3plusdec.c:63
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:180
uint8_t * wnd_shape_prev
IMDCT window shape for previous frame.
Definition: atrac3plus.h:104
void ff_atrac3p_ipqf(FFTContext *dct_ctx, Atrac3pIPQFChannelCtx *hist, const float *in, float *out)
Subband synthesis filter based on the polyphase quadrature (pseudo-QMF) filter bank.
Parameters of a group of sine waves.
Definition: atrac3plus.h:73
static av_cold int set_channel_params(ATRAC3PContext *ctx, AVCodecContext *avctx)
Definition: atrac3plusdec.c:78
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1333
const char * name
Name of the codec implementation.
Definition: avcodec.h:3180
#define ff_mdct_init
Definition: fft.h:167
static const float qu[2]
Definition: sipr16kdata.h:28
AVFloatDSPContext * fdsp
Definition: atrac3plusdec.c:50
static av_cold int atrac3p_decode_init(AVCodecContext *avctx)
Gain compensation context structure.
Definition: atrac.h:44
Libavcodec external API header.
int qu_wordlen[32]
array of word lengths for each quant unit
Definition: atrac3plus.h:95
av_cold void ff_atrac_init_gain_compensation(AtracGCContext *gctx, int id2exp_offset, int loc_scale)
Initialize gain compensation context.
Definition: atrac.c:66
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2044
#define ATRAC3P_SUBBAND_SAMPLES
number of samples per subband
Definition: atrac3plus.h:41
float samples[2][ATRAC3P_FRAME_SAMPLES]
quantized MDCT spectrum
Definition: atrac3plusdec.c:52
Definition: fft.h:88
unit containing one coded channel
Definition: atrac3plus.h:51
audio channel layout utility functions
float time_buf[2][ATRAC3P_FRAME_SAMPLES]
output of the gain compensation
Definition: atrac3plusdec.c:54
ret
Definition: avfilter.c:974
Atrac3pWavesData * tones_info
Definition: atrac3plus.h:114
int unit_type
unit type (mono/stereo)
Definition: atrac3plus.h:133
uint8_t swap_channels[ATRAC3P_SUBBANDS]
1 - perform subband-wise channel swapping
Definition: atrac3plus.h:143
av_cold void ff_atrac3p_init_vlcs(void)
Initialize VLC tables for bitstream parsing.
Definition: atrac3plus.c:83
#define AV_CH_LAYOUT_5POINT1_BACK
#define AV_CH_LAYOUT_6POINT1_BACK
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
uint8_t channel_blocks[5]
channel configuration descriptor
Definition: atrac3plusdec.c:64
void ff_atrac3p_init_imdct(AVCodecContext *avctx, FFTContext *mdct_ctx)
Initialize IMDCT transform.
Definition: atrac3plusdsp.c:79
Gain control parameters for one subband.
Definition: atrac.h:35
AVS_Value src
Definition: avisynth_c.h:524
void ff_atrac3p_generate_tones(Atrac3pChanUnitCtx *ch_unit, AVFloatDSPContext *fdsp, int ch_num, int sb, float *out)
Synthesize sine waves for a particular subband.
float outp_buf[2][ATRAC3P_FRAME_SAMPLES]
Definition: atrac3plusdec.c:55
AVCodec ff_atrac3p_decoder
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:441
static int atrac3p_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
main external API structure.
Definition: avcodec.h:1239
#define AV_CH_FRONT_LEFT
Atrac3pIPQFChannelCtx ipqf_ctx[2]
Definition: atrac3plus.h:152
Channel unit parameters.
Definition: atrac3plus.h:131
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:1030
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:304
unit sequence terminator
Definition: atrac3plus.h:54
av_cold AVFloatDSPContext * avpriv_float_dsp_alloc(int bit_exact)
Allocate a float DSP context.
Definition: float_dsp.c:143
const float ff_atrac3p_mant_tab[8]
Definition: atrac3plusdsp.c:66
Atrac3pWaveSynthParams * waves_info_prev
Definition: atrac3plus.h:150
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t wnd_shape_hist[2][ATRAC3P_SUBBANDS]
IMDCT window shape, 0=sine/1=steep.
Definition: atrac3plus.h:102
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_dlog(ac->avr,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:520
common internal api header.
AtracGainInfo * gain_data
gain control data for next frame
Definition: atrac3plus.h:108
FFTContext mdct_ctx
Definition: atrac3plusdec.c:58
unit containing two jointly-coded channels
Definition: atrac3plus.h:52
Atrac3pWaveSynthParams * waves_info
Definition: atrac3plus.h:149
void * priv_data
Definition: avcodec.h:1281
void ff_atrac3p_power_compensation(Atrac3pChanUnitCtx *ctx, int ch_index, float *sp, int rng_index, int sb_num)
Perform power compensation aka noise dithering.
int channels
number of audio channels
Definition: avcodec.h:1984
Atrac3pChanParams channels[2]
Definition: atrac3plus.h:145
void ff_atrac_gain_compensation(AtracGCContext *gctx, float *in, float *prev, AtracGainInfo *gc_now, AtracGainInfo *gc_next, int num_samples, float *out)
Apply gain compensation and perform the MDCT overlapping part.
Definition: atrac.c:84
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:228
uint64_t my_channel_layout
current channel layout
Definition: atrac3plusdec.c:65
#define av_freep(p)
int mute_flag
mute flag
Definition: atrac3plus.h:138
#define FFSWAP(type, a, b)
Definition: common.h:69
int tones_present
1 - tones info present
Definition: atrac3plus.h:120
FFTContext ipqf_dct_ctx
IDCT context used by IPQF.
Definition: atrac3plusdec.c:59
unit containing extension information
Definition: atrac3plus.h:53
Atrac3pWavesData tones_info_hist[2][ATRAC3P_SUBBANDS]
Definition: atrac3plus.h:113
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:207
#define AV_CH_LAYOUT_MONO
This structure stores compressed data.
Definition: avcodec.h:1137
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:217
Global structures, constants and data for ATRAC3+ decoder.
for(j=16;j >0;--j)
AtracGainInfo gain_data_hist[2][ATRAC3P_SUBBANDS]
gain control data for all subbands
Definition: atrac3plus.h:107