FFmpeg
wmalosslessdec.c
Go to the documentation of this file.
1 /*
2  * Windows Media Audio Lossless decoder
3  * Copyright (c) 2007 Baptiste Coudurier, Benjamin Larsson, Ulion
4  * Copyright (c) 2008 - 2011 Sascha Sommer, Benjamin Larsson
5  * Copyright (c) 2011 Andreas Öman
6  * Copyright (c) 2011 - 2012 Mashiat Sarker Shakkhar
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24 
25 #include <inttypes.h>
26 
27 #include "libavutil/attributes.h"
28 #include "libavutil/avassert.h"
29 #include "libavutil/mem_internal.h"
30 
31 #include "avcodec.h"
32 #include "codec_internal.h"
33 #include "decode.h"
34 #include "get_bits.h"
35 #include "put_bits.h"
36 #include "lossless_audiodsp.h"
37 #include "wma_common.h"
38 
39 /** current decoder limitations */
40 #define WMALL_MAX_CHANNELS 8 ///< max number of handled channels
41 #define MAX_SUBFRAMES 32 ///< max number of subframes per channel
42 #define MAX_BANDS 29 ///< max number of scale factor bands
43 #define MAX_FRAMESIZE 32768 ///< maximum compressed frame size
44 #define MAX_ORDER 256
45 
46 #define WMALL_BLOCK_MIN_BITS 6 ///< log2 of min block size
47 #define WMALL_BLOCK_MAX_BITS 14 ///< log2 of max block size
48 #define WMALL_BLOCK_MAX_SIZE (1 << WMALL_BLOCK_MAX_BITS) ///< maximum block size
49 #define WMALL_BLOCK_SIZES (WMALL_BLOCK_MAX_BITS - WMALL_BLOCK_MIN_BITS + 1) ///< possible block sizes
50 
51 #define WMALL_COEFF_PAD_SIZE 16 ///< pad coef buffers with 0 for use with SIMD
52 
53 /**
54  * @brief frame-specific decoder context for a single channel
55  */
56 typedef struct WmallChannelCtx {
57  int16_t prev_block_len; ///< length of the previous block
58  uint8_t transmit_coefs;
59  uint8_t num_subframes;
60  uint16_t subframe_len[MAX_SUBFRAMES]; ///< subframe length in samples
61  uint16_t subframe_offsets[MAX_SUBFRAMES]; ///< subframe positions in the current frame
62  uint8_t cur_subframe; ///< current subframe number
63  uint16_t decoded_samples; ///< number of already processed samples
64  int quant_step; ///< quantization step for the current subframe
65  int transient_counter; ///< number of transient samples from the beginning of the transient zone
67 
68 /**
69  * @brief main decoder context
70  */
71 typedef struct WmallDecodeCtx {
72  /* generic decoder variables */
75  LLAudDSPContext dsp; ///< accelerated DSP functions
76  uint8_t *frame_data; ///< compressed frame data
77  int max_frame_size; ///< max bitstream size
78  PutBitContext pb; ///< context for filling the frame_data buffer
79 
80  /* frame size dependent frame information (set during initialization) */
81  uint32_t decode_flags; ///< used compression features
82  int len_prefix; ///< frame is prefixed with its length
83  int dynamic_range_compression; ///< frame contains DRC data
84  uint8_t bits_per_sample; ///< integer audio sample size for the unscaled IMDCT output (used to scale to [-1.0, 1.0])
85  uint16_t samples_per_frame; ///< number of samples to output
86  uint16_t log2_frame_size;
87  int8_t num_channels; ///< number of channels in the stream (same as AVCodecContext.num_channels)
88  int8_t lfe_channel; ///< lfe channel index
90  uint8_t subframe_len_bits; ///< number of bits used for the subframe length
91  uint8_t max_subframe_len_bit; ///< flag indicating that the subframe is of maximum size when the first subframe length bit is 1
93 
94  /* packet decode state */
95  GetBitContext pgb; ///< bitstream reader context for the packet
96  int next_packet_start; ///< start offset of the next WMA packet in the demuxer packet
97  uint8_t packet_offset; ///< offset to the frame in the packet
98  uint8_t packet_sequence_number; ///< current packet number
99  int num_saved_bits; ///< saved number of bits
100  int frame_offset; ///< frame offset in the bit reservoir
101  int subframe_offset; ///< subframe offset in the bit reservoir
102  uint8_t packet_loss; ///< set in case of bitstream error
103  uint8_t packet_done; ///< set when a packet is fully decoded
104 
105  /* frame decode state */
106  uint32_t frame_num; ///< current frame number (not used for decoding)
107  GetBitContext gb; ///< bitstream reader context
108  int buf_bit_size; ///< buffer size in bits
109  int16_t *samples_16[WMALL_MAX_CHANNELS]; ///< current sample buffer pointer (16-bit)
110  int32_t *samples_32[WMALL_MAX_CHANNELS]; ///< current sample buffer pointer (24-bit)
111  uint8_t drc_gain; ///< gain for the DRC tool
112  int8_t skip_frame; ///< skip output step
113  int8_t parsed_all_subframes; ///< all subframes decoded?
114 
115  /* subframe/block decode state */
116  int16_t subframe_len; ///< current subframe length
117  int8_t channels_for_cur_subframe; ///< number of channels that contain the subframe
119 
121 
122  // WMA Lossless-specific
123 
125  uint8_t do_ac_filter;
127  uint8_t do_mclms;
128  uint8_t do_lpc;
129 
132  int16_t acfilter_coeffs[16];
134 
135  int8_t mclms_order;
142 
145 
146  struct {
147  int order;
148  int scaling;
149  int coefsend;
150  int bitsend;
151  DECLARE_ALIGNED(16, int16_t, coefs)[MAX_ORDER + WMALL_COEFF_PAD_SIZE/sizeof(int16_t)];
153  DECLARE_ALIGNED(16, int16_t, lms_updates)[MAX_ORDER * 2 + WMALL_COEFF_PAD_SIZE/sizeof(int16_t)];
154  int recent;
156 
158 
159  int bV3RTM;
160 
163 
164  int transient[WMALL_MAX_CHANNELS];
167 
169 
171 
177 
178 /** Get sign of integer (1 for positive, -1 for negative and 0 for zero) */
179 #define WMASIGN(x) (((x) > 0) - ((x) < 0))
180 
182 {
183  WmallDecodeCtx *s = avctx->priv_data;
184  uint8_t *edata_ptr = avctx->extradata;
185  unsigned int channel_mask;
186  int i, log2_max_num_subframes;
187 
188  if (avctx->block_align <= 0 || avctx->block_align > (1<<21)) {
189  av_log(avctx, AV_LOG_ERROR, "block_align is not set or invalid\n");
190  return AVERROR(EINVAL);
191  }
192 
193  if (avctx->extradata_size >= 18) {
194  s->decode_flags = AV_RL16(edata_ptr + 14);
195  channel_mask = AV_RL32(edata_ptr + 2);
196  s->bits_per_sample = AV_RL16(edata_ptr);
197  if (s->bits_per_sample == 16)
199  else if (s->bits_per_sample == 24) {
201  avctx->bits_per_raw_sample = 24;
202  } else {
203  av_log(avctx, AV_LOG_ERROR, "Unknown bit-depth: %"PRIu8"\n",
204  s->bits_per_sample);
205  return AVERROR_INVALIDDATA;
206  }
207  /* dump the extradata */
208  for (i = 0; i < avctx->extradata_size; i++)
209  ff_dlog(avctx, "[%x] ", avctx->extradata[i]);
210  ff_dlog(avctx, "\n");
211 
212  } else {
213  avpriv_request_sample(avctx, "Unsupported extradata size");
214  return AVERROR_PATCHWELCOME;
215  }
216 
217  if (channel_mask) {
219  av_channel_layout_from_mask(&avctx->ch_layout, channel_mask);
220  }
221  av_assert0(avctx->ch_layout.nb_channels >= 0);
223  avpriv_request_sample(avctx,
224  "More than " AV_STRINGIFY(WMALL_MAX_CHANNELS) " channels");
225  return AVERROR_PATCHWELCOME;
226  }
227 
228  s->num_channels = avctx->ch_layout.nb_channels;
229 
230  /* extract lfe channel position */
231  s->lfe_channel = -1;
232 
233  if (channel_mask & 8) {
234  unsigned int mask;
235  for (mask = 1; mask < 16; mask <<= 1)
236  if (channel_mask & mask)
237  ++s->lfe_channel;
238  }
239 
240  s->max_frame_size = MAX_FRAMESIZE * avctx->ch_layout.nb_channels;
241  s->frame_data = av_mallocz(s->max_frame_size + AV_INPUT_BUFFER_PADDING_SIZE);
242  if (!s->frame_data)
243  return AVERROR(ENOMEM);
244 
245  s->avctx = avctx;
246  ff_llauddsp_init(&s->dsp);
247  init_put_bits(&s->pb, s->frame_data, s->max_frame_size);
248 
249  /* generic init */
250  s->log2_frame_size = av_log2(avctx->block_align) + 4;
251 
252  /* frame info */
253  s->skip_frame = 1; /* skip first frame */
254  s->packet_loss = 1;
255  s->len_prefix = s->decode_flags & 0x40;
256 
257  /* get frame len */
258  s->samples_per_frame = 1 << ff_wma_get_frame_len_bits(avctx->sample_rate,
259  3, s->decode_flags);
260  av_assert0(s->samples_per_frame <= WMALL_BLOCK_MAX_SIZE);
261 
262  /* init previous block len */
263  for (i = 0; i < avctx->ch_layout.nb_channels; i++)
264  s->channel[i].prev_block_len = s->samples_per_frame;
265 
266  /* subframe info */
267  log2_max_num_subframes = (s->decode_flags & 0x38) >> 3;
268  s->max_num_subframes = 1 << log2_max_num_subframes;
269  s->max_subframe_len_bit = 0;
270  s->subframe_len_bits = av_log2(log2_max_num_subframes) + 1;
271 
272  s->min_samples_per_subframe = s->samples_per_frame / s->max_num_subframes;
273  s->dynamic_range_compression = s->decode_flags & 0x80;
274  s->bV3RTM = s->decode_flags & 0x100;
275 
276  if (s->max_num_subframes > MAX_SUBFRAMES) {
277  av_log(avctx, AV_LOG_ERROR, "invalid number of subframes %"PRIu8"\n",
278  s->max_num_subframes);
279  return AVERROR_INVALIDDATA;
280  }
281 
282  s->frame = av_frame_alloc();
283  if (!s->frame)
284  return AVERROR(ENOMEM);
285 
286  return 0;
287 }
288 
289 /**
290  * @brief Decode the subframe length.
291  * @param s context
292  * @param offset sample offset in the frame
293  * @return decoded subframe length on success, < 0 in case of an error
294  */
296 {
297  int frame_len_ratio, subframe_len, len;
298 
299  /* no need to read from the bitstream when only one length is possible */
300  if (offset == s->samples_per_frame - s->min_samples_per_subframe)
301  return s->min_samples_per_subframe;
302 
303  len = av_log2(s->max_num_subframes - 1) + 1;
304  frame_len_ratio = get_bits(&s->gb, len);
305  subframe_len = s->min_samples_per_subframe * (frame_len_ratio + 1);
306 
307  /* sanity check the length */
308  if (subframe_len < s->min_samples_per_subframe ||
309  subframe_len > s->samples_per_frame) {
310  av_log(s->avctx, AV_LOG_ERROR, "broken frame: subframe_len %i\n",
311  subframe_len);
312  return AVERROR_INVALIDDATA;
313  }
314  return subframe_len;
315 }
316 
317 /**
318  * @brief Decode how the data in the frame is split into subframes.
319  * Every WMA frame contains the encoded data for a fixed number of
320  * samples per channel. The data for every channel might be split
321  * into several subframes. This function will reconstruct the list of
322  * subframes for every channel.
323  *
324  * If the subframes are not evenly split, the algorithm estimates the
325  * channels with the lowest number of total samples.
326  * Afterwards, for each of these channels a bit is read from the
327  * bitstream that indicates if the channel contains a subframe with the
328  * next subframe size that is going to be read from the bitstream or not.
329  * If a channel contains such a subframe, the subframe size gets added to
330  * the channel's subframe list.
331  * The algorithm repeats these steps until the frame is properly divided
332  * between the individual channels.
333  *
334  * @param s context
335  * @return 0 on success, < 0 in case of an error
336  */
338 {
339  uint16_t num_samples[WMALL_MAX_CHANNELS] = { 0 }; /* sum of samples for all currently known subframes of a channel */
340  uint8_t contains_subframe[WMALL_MAX_CHANNELS]; /* flag indicating if a channel contains the current subframe */
341  int channels_for_cur_subframe = s->num_channels; /* number of channels that contain the current subframe */
342  int fixed_channel_layout = 0; /* flag indicating that all channels use the same subfra2me offsets and sizes */
343  int min_channel_len = 0; /* smallest sum of samples (channels with this length will be processed first) */
344  int c, tile_aligned;
345 
346  /* reset tiling information */
347  for (c = 0; c < s->num_channels; c++)
348  s->channel[c].num_subframes = 0;
349 
350  tile_aligned = get_bits1(&s->gb);
351  if (s->max_num_subframes == 1 || tile_aligned)
352  fixed_channel_layout = 1;
353 
354  /* loop until the frame data is split between the subframes */
355  do {
356  int subframe_len, in_use = 0;
357 
358  /* check which channels contain the subframe */
359  for (c = 0; c < s->num_channels; c++) {
360  if (num_samples[c] == min_channel_len) {
361  if (fixed_channel_layout || channels_for_cur_subframe == 1 ||
362  (min_channel_len == s->samples_per_frame - s->min_samples_per_subframe)) {
363  contains_subframe[c] = 1;
364  } else {
365  contains_subframe[c] = get_bits1(&s->gb);
366  }
367  in_use |= contains_subframe[c];
368  } else
369  contains_subframe[c] = 0;
370  }
371 
372  if (!in_use) {
373  av_log(s->avctx, AV_LOG_ERROR,
374  "Found empty subframe\n");
375  return AVERROR_INVALIDDATA;
376  }
377 
378  /* get subframe length, subframe_len == 0 is not allowed */
379  if ((subframe_len = decode_subframe_length(s, min_channel_len)) <= 0)
380  return AVERROR_INVALIDDATA;
381  /* add subframes to the individual channels and find new min_channel_len */
382  min_channel_len += subframe_len;
383  for (c = 0; c < s->num_channels; c++) {
384  WmallChannelCtx *chan = &s->channel[c];
385 
386  if (contains_subframe[c]) {
387  if (chan->num_subframes >= MAX_SUBFRAMES) {
388  av_log(s->avctx, AV_LOG_ERROR,
389  "broken frame: num subframes > 31\n");
390  return AVERROR_INVALIDDATA;
391  }
392  chan->subframe_len[chan->num_subframes] = subframe_len;
393  num_samples[c] += subframe_len;
394  ++chan->num_subframes;
395  if (num_samples[c] > s->samples_per_frame) {
396  av_log(s->avctx, AV_LOG_ERROR, "broken frame: "
397  "channel len(%"PRIu16") > samples_per_frame(%"PRIu16")\n",
398  num_samples[c], s->samples_per_frame);
399  return AVERROR_INVALIDDATA;
400  }
401  } else if (num_samples[c] <= min_channel_len) {
402  if (num_samples[c] < min_channel_len) {
403  channels_for_cur_subframe = 0;
404  min_channel_len = num_samples[c];
405  }
406  ++channels_for_cur_subframe;
407  }
408  }
409  } while (min_channel_len < s->samples_per_frame);
410 
411  for (c = 0; c < s->num_channels; c++) {
412  int i, offset = 0;
413  for (i = 0; i < s->channel[c].num_subframes; i++) {
414  s->channel[c].subframe_offsets[i] = offset;
415  offset += s->channel[c].subframe_len[i];
416  }
417  }
418 
419  return 0;
420 }
421 
423 {
424  int i;
425  s->acfilter_order = get_bits(&s->gb, 4) + 1;
426  s->acfilter_scaling = get_bits(&s->gb, 4);
427 
428  for (i = 0; i < s->acfilter_order; i++)
429  s->acfilter_coeffs[i] = get_bitsz(&s->gb, s->acfilter_scaling) + 1;
430 }
431 
433 {
434  s->mclms_order = (get_bits(&s->gb, 4) + 1) * 2;
435  s->mclms_scaling = get_bits(&s->gb, 4);
436  if (get_bits1(&s->gb)) {
437  int i, send_coef_bits;
438  int cbits = av_log2(s->mclms_scaling + 1);
439  if (1 << cbits < s->mclms_scaling + 1)
440  cbits++;
441 
442  send_coef_bits = get_bitsz(&s->gb, cbits) + 2;
443 
444  for (i = 0; i < s->mclms_order * s->num_channels * s->num_channels; i++)
445  s->mclms_coeffs[i] = get_bits(&s->gb, send_coef_bits);
446 
447  for (i = 0; i < s->num_channels; i++) {
448  int c;
449  for (c = 0; c < i; c++)
450  s->mclms_coeffs_cur[i * s->num_channels + c] = get_bits(&s->gb, send_coef_bits);
451  }
452  }
453 }
454 
456 {
457  int c, i;
458  int cdlms_send_coef = get_bits1(&s->gb);
459 
460  for (c = 0; c < s->num_channels; c++) {
461  s->cdlms_ttl[c] = get_bits(&s->gb, 3) + 1;
462  for (i = 0; i < s->cdlms_ttl[c]; i++) {
463  s->cdlms[c][i].order = (get_bits(&s->gb, 7) + 1) * 8;
464  if (s->cdlms[c][i].order > MAX_ORDER) {
465  av_log(s->avctx, AV_LOG_ERROR,
466  "Order[%d][%d] %d > max (%d), not supported\n",
467  c, i, s->cdlms[c][i].order, MAX_ORDER);
468  s->cdlms[0][0].order = 0;
469  return AVERROR_INVALIDDATA;
470  }
471  if(s->cdlms[c][i].order & 8 && s->bits_per_sample == 16) {
472  static int warned;
473  if(!warned)
474  avpriv_request_sample(s->avctx, "CDLMS of order %d",
475  s->cdlms[c][i].order);
476  warned = 1;
477  }
478  }
479 
480  for (i = 0; i < s->cdlms_ttl[c]; i++)
481  s->cdlms[c][i].scaling = get_bits(&s->gb, 4);
482 
483  if (cdlms_send_coef) {
484  for (i = 0; i < s->cdlms_ttl[c]; i++) {
485  int cbits, shift_l, shift_r, j;
486  cbits = av_log2(s->cdlms[c][i].order);
487  if ((1 << cbits) < s->cdlms[c][i].order)
488  cbits++;
489  s->cdlms[c][i].coefsend = get_bits(&s->gb, cbits) + 1;
490 
491  cbits = av_log2(s->cdlms[c][i].scaling + 1);
492  if ((1 << cbits) < s->cdlms[c][i].scaling + 1)
493  cbits++;
494 
495  s->cdlms[c][i].bitsend = get_bitsz(&s->gb, cbits) + 2;
496  shift_l = 32 - s->cdlms[c][i].bitsend;
497  shift_r = 32 - s->cdlms[c][i].scaling - 2;
498  for (j = 0; j < s->cdlms[c][i].coefsend; j++)
499  s->cdlms[c][i].coefs[j] =
500  (get_bits(&s->gb, s->cdlms[c][i].bitsend) << shift_l) >> shift_r;
501  }
502  }
503 
504  for (i = 0; i < s->cdlms_ttl[c]; i++)
505  memset(s->cdlms[c][i].coefs + s->cdlms[c][i].order,
507  }
508 
509  return 0;
510 }
511 
512 static int decode_channel_residues(WmallDecodeCtx *s, int ch, int tile_size)
513 {
514  int i = 0;
515  unsigned int ave_mean;
516  s->transient[ch] = get_bits1(&s->gb);
517  if (s->transient[ch]) {
518  s->transient_pos[ch] = get_bits(&s->gb, av_log2(tile_size));
519  if (s->transient_pos[ch])
520  s->transient[ch] = 0;
521  s->channel[ch].transient_counter =
522  FFMAX(s->channel[ch].transient_counter, s->samples_per_frame / 2);
523  } else if (s->channel[ch].transient_counter)
524  s->transient[ch] = 1;
525 
526  if (s->seekable_tile) {
527  ave_mean = get_bits(&s->gb, s->bits_per_sample);
528  s->ave_sum[ch] = ave_mean << (s->movave_scaling + 1);
529  }
530 
531  if (s->seekable_tile) {
532  if (s->do_inter_ch_decorr)
533  s->channel_residues[ch][0] = get_sbits_long(&s->gb, s->bits_per_sample + 1);
534  else
535  s->channel_residues[ch][0] = get_sbits_long(&s->gb, s->bits_per_sample);
536  i++;
537  }
538  for (; i < tile_size; i++) {
539  int rem, rem_bits;
540  unsigned quo = 0, residue;
541  while(get_bits1(&s->gb)) {
542  quo++;
543  if (get_bits_left(&s->gb) <= 0)
544  return -1;
545  }
546  if (quo >= 32)
547  quo += get_bits_long(&s->gb, get_bits(&s->gb, 5) + 1);
548 
549  ave_mean = (s->ave_sum[ch] + (1 << s->movave_scaling)) >> (s->movave_scaling + 1);
550  if (ave_mean <= 1)
551  residue = quo;
552  else {
553  rem_bits = av_ceil_log2(ave_mean);
554  rem = get_bits_long(&s->gb, rem_bits);
555  residue = (quo << rem_bits) + rem;
556  }
557 
558  s->ave_sum[ch] = residue + s->ave_sum[ch] -
559  (s->ave_sum[ch] >> s->movave_scaling);
560 
561  residue = (residue >> 1) ^ -(residue & 1);
562  s->channel_residues[ch][i] = residue;
563  }
564 
565  return 0;
566 
567 }
568 
570 {
571  int ch, i, cbits;
572  s->lpc_order = get_bits(&s->gb, 5) + 1;
573  s->lpc_scaling = get_bits(&s->gb, 4);
574  s->lpc_intbits = get_bits(&s->gb, 3) + 1;
575  cbits = s->lpc_scaling + s->lpc_intbits;
576  for (ch = 0; ch < s->num_channels; ch++)
577  for (i = 0; i < s->lpc_order; i++)
578  s->lpc_coefs[ch][i] = get_sbits(&s->gb, cbits);
579 }
580 
582 {
583  int ich, ilms;
584 
585  memset(s->acfilter_coeffs, 0, sizeof(s->acfilter_coeffs));
586  memset(s->acfilter_prevvalues, 0, sizeof(s->acfilter_prevvalues));
587  memset(s->lpc_coefs, 0, sizeof(s->lpc_coefs));
588 
589  memset(s->mclms_coeffs, 0, sizeof(s->mclms_coeffs));
590  memset(s->mclms_coeffs_cur, 0, sizeof(s->mclms_coeffs_cur));
591  memset(s->mclms_prevvalues, 0, sizeof(s->mclms_prevvalues));
592  memset(s->mclms_updates, 0, sizeof(s->mclms_updates));
593 
594  for (ich = 0; ich < s->num_channels; ich++) {
595  for (ilms = 0; ilms < s->cdlms_ttl[ich]; ilms++) {
596  memset(s->cdlms[ich][ilms].coefs, 0,
597  sizeof(s->cdlms[ich][ilms].coefs));
598  memset(s->cdlms[ich][ilms].lms_prevvalues, 0,
599  sizeof(s->cdlms[ich][ilms].lms_prevvalues));
600  memset(s->cdlms[ich][ilms].lms_updates, 0,
601  sizeof(s->cdlms[ich][ilms].lms_updates));
602  }
603  s->ave_sum[ich] = 0;
604  }
605 }
606 
607 /**
608  * @brief Reset filter parameters and transient area at new seekable tile.
609  */
611 {
612  int ich, ilms;
613  s->mclms_recent = s->mclms_order * s->num_channels;
614  for (ich = 0; ich < s->num_channels; ich++) {
615  for (ilms = 0; ilms < s->cdlms_ttl[ich]; ilms++)
616  s->cdlms[ich][ilms].recent = s->cdlms[ich][ilms].order;
617  /* first sample of a seekable subframe is considered as the starting of
618  a transient area which is samples_per_frame samples long */
619  s->channel[ich].transient_counter = s->samples_per_frame;
620  s->transient[ich] = 1;
621  s->transient_pos[ich] = 0;
622  }
623 }
624 
625 static void mclms_update(WmallDecodeCtx *s, int icoef, int *pred)
626 {
627  int i, j, ich, pred_error;
628  int order = s->mclms_order;
629  int num_channels = s->num_channels;
630  int range = 1 << (s->bits_per_sample - 1);
631 
632  for (ich = 0; ich < num_channels; ich++) {
633  pred_error = s->channel_residues[ich][icoef] - (unsigned)pred[ich];
634  if (pred_error > 0) {
635  for (i = 0; i < order * num_channels; i++)
636  s->mclms_coeffs[i + ich * order * num_channels] +=
637  s->mclms_updates[s->mclms_recent + i];
638  for (j = 0; j < ich; j++)
639  s->mclms_coeffs_cur[ich * num_channels + j] += WMASIGN(s->channel_residues[j][icoef]);
640  } else if (pred_error < 0) {
641  for (i = 0; i < order * num_channels; i++)
642  s->mclms_coeffs[i + ich * order * num_channels] -=
643  s->mclms_updates[s->mclms_recent + i];
644  for (j = 0; j < ich; j++)
645  s->mclms_coeffs_cur[ich * num_channels + j] -= WMASIGN(s->channel_residues[j][icoef]);
646  }
647  }
648 
649  for (ich = num_channels - 1; ich >= 0; ich--) {
650  s->mclms_recent--;
651  s->mclms_prevvalues[s->mclms_recent] = av_clip(s->channel_residues[ich][icoef],
652  -range, range - 1);
653  s->mclms_updates[s->mclms_recent] = WMASIGN(s->channel_residues[ich][icoef]);
654  }
655 
656  if (s->mclms_recent == 0) {
657  memcpy(&s->mclms_prevvalues[order * num_channels],
658  s->mclms_prevvalues,
659  sizeof(int32_t) * order * num_channels);
660  memcpy(&s->mclms_updates[order * num_channels],
661  s->mclms_updates,
662  sizeof(int32_t) * order * num_channels);
663  s->mclms_recent = num_channels * order;
664  }
665 }
666 
667 static void mclms_predict(WmallDecodeCtx *s, int icoef, int *pred)
668 {
669  int ich, i;
670  int order = s->mclms_order;
671  int num_channels = s->num_channels;
672 
673  for (ich = 0; ich < num_channels; ich++) {
674  pred[ich] = 0;
675  if (!s->is_channel_coded[ich])
676  continue;
677  for (i = 0; i < order * num_channels; i++)
678  pred[ich] += (uint32_t)s->mclms_prevvalues[i + s->mclms_recent] *
679  s->mclms_coeffs[i + order * num_channels * ich];
680  for (i = 0; i < ich; i++)
681  pred[ich] += (uint32_t)s->channel_residues[i][icoef] *
682  s->mclms_coeffs_cur[i + num_channels * ich];
683  pred[ich] += (1U << s->mclms_scaling) >> 1;
684  pred[ich] >>= s->mclms_scaling;
685  s->channel_residues[ich][icoef] += (unsigned)pred[ich];
686  }
687 }
688 
689 static void revert_mclms(WmallDecodeCtx *s, int tile_size)
690 {
691  int icoef, pred[WMALL_MAX_CHANNELS] = { 0 };
692  for (icoef = 0; icoef < tile_size; icoef++) {
693  mclms_predict(s, icoef, pred);
694  mclms_update(s, icoef, pred);
695  }
696 }
697 
698 static void use_high_update_speed(WmallDecodeCtx *s, int ich)
699 {
700  int ilms, recent, icoef;
701  for (ilms = s->cdlms_ttl[ich] - 1; ilms >= 0; ilms--) {
702  recent = s->cdlms[ich][ilms].recent;
703  if (s->update_speed[ich] == 16)
704  continue;
705  if (s->bV3RTM) {
706  for (icoef = 0; icoef < s->cdlms[ich][ilms].order; icoef++)
707  s->cdlms[ich][ilms].lms_updates[icoef + recent] *= 2;
708  } else {
709  for (icoef = 0; icoef < s->cdlms[ich][ilms].order; icoef++)
710  s->cdlms[ich][ilms].lms_updates[icoef] *= 2;
711  }
712  }
713  s->update_speed[ich] = 16;
714 }
715 
717 {
718  int ilms, recent, icoef;
719  for (ilms = s->cdlms_ttl[ich] - 1; ilms >= 0; ilms--) {
720  recent = s->cdlms[ich][ilms].recent;
721  if (s->update_speed[ich] == 8)
722  continue;
723  if (s->bV3RTM)
724  for (icoef = 0; icoef < s->cdlms[ich][ilms].order; icoef++)
725  s->cdlms[ich][ilms].lms_updates[icoef + recent] /= 2;
726  else
727  for (icoef = 0; icoef < s->cdlms[ich][ilms].order; icoef++)
728  s->cdlms[ich][ilms].lms_updates[icoef] /= 2;
729  }
730  s->update_speed[ich] = 8;
731 }
732 
733 #define CD_LMS(bits, ROUND) \
734 static void lms_update ## bits (WmallDecodeCtx *s, int ich, int ilms, int input) \
735 { \
736  int recent = s->cdlms[ich][ilms].recent; \
737  int range = 1 << s->bits_per_sample - 1; \
738  int order = s->cdlms[ich][ilms].order; \
739  int ##bits##_t *prev = (int##bits##_t *)s->cdlms[ich][ilms].lms_prevvalues; \
740  \
741  if (recent) \
742  recent--; \
743  else { \
744  memcpy(prev + order, prev, (bits/8) * order); \
745  memcpy(s->cdlms[ich][ilms].lms_updates + order, \
746  s->cdlms[ich][ilms].lms_updates, \
747  sizeof(*s->cdlms[ich][ilms].lms_updates) * order); \
748  recent = order - 1; \
749  } \
750  \
751  prev[recent] = av_clip(input, -range, range - 1); \
752  s->cdlms[ich][ilms].lms_updates[recent] = WMASIGN(input) * s->update_speed[ich]; \
753  \
754  s->cdlms[ich][ilms].lms_updates[recent + (order >> 4)] >>= 2; \
755  s->cdlms[ich][ilms].lms_updates[recent + (order >> 3)] >>= 1; \
756  s->cdlms[ich][ilms].recent = recent; \
757  memset(s->cdlms[ich][ilms].lms_updates + recent + order, 0, \
758  sizeof(s->cdlms[ich][ilms].lms_updates) - \
759  sizeof(*s->cdlms[ich][ilms].lms_updates)*(recent+order)); \
760 } \
761  \
762 static void revert_cdlms ## bits (WmallDecodeCtx *s, int ch, \
763  int coef_begin, int coef_end) \
764 { \
765  int icoef, ilms, num_lms, residue, input; \
766  unsigned pred;\
767  \
768  num_lms = s->cdlms_ttl[ch]; \
769  for (ilms = num_lms - 1; ilms >= 0; ilms--) { \
770  for (icoef = coef_begin; icoef < coef_end; icoef++) { \
771  int##bits##_t *prevvalues = (int##bits##_t *)s->cdlms[ch][ilms].lms_prevvalues; \
772  pred = (1 << s->cdlms[ch][ilms].scaling) >> 1; \
773  residue = s->channel_residues[ch][icoef]; \
774  pred += s->dsp.scalarproduct_and_madd_int## bits (s->cdlms[ch][ilms].coefs, \
775  prevvalues + s->cdlms[ch][ilms].recent, \
776  s->cdlms[ch][ilms].lms_updates + \
777  s->cdlms[ch][ilms].recent, \
778  FFALIGN(s->cdlms[ch][ilms].order, ROUND), \
779  WMASIGN(residue)); \
780  input = residue + (unsigned)((int)pred >> s->cdlms[ch][ilms].scaling); \
781  lms_update ## bits(s, ch, ilms, input); \
782  s->channel_residues[ch][icoef] = input; \
783  } \
784  } \
785 }
786 
788 CD_LMS(32, 8)
789 
790 static void revert_inter_ch_decorr(WmallDecodeCtx *s, int tile_size)
791 {
792  if (s->num_channels != 2)
793  return;
794  else if (s->is_channel_coded[0] || s->is_channel_coded[1]) {
795  int icoef;
796  for (icoef = 0; icoef < tile_size; icoef++) {
797  s->channel_residues[0][icoef] -= (unsigned)(s->channel_residues[1][icoef] >> 1);
798  s->channel_residues[1][icoef] += (unsigned) s->channel_residues[0][icoef];
799  }
800  }
801 }
802 
803 static void revert_acfilter(WmallDecodeCtx *s, int tile_size)
804 {
805  int ich, pred, i, j;
806  int16_t *filter_coeffs = s->acfilter_coeffs;
807  int scaling = s->acfilter_scaling;
808  int order = s->acfilter_order;
809 
810  for (ich = 0; ich < s->num_channels; ich++) {
811  int *prevvalues = s->acfilter_prevvalues[ich];
812  for (i = 0; i < order; i++) {
813  pred = 0;
814  for (j = 0; j < order; j++) {
815  if (i <= j)
816  pred += (uint32_t)filter_coeffs[j] * prevvalues[j - i];
817  else
818  pred += (uint32_t)s->channel_residues[ich][i - j - 1] * filter_coeffs[j];
819  }
820  pred >>= scaling;
821  s->channel_residues[ich][i] += (unsigned)pred;
822  }
823  for (i = order; i < tile_size; i++) {
824  pred = 0;
825  for (j = 0; j < order; j++)
826  pred += (uint32_t)s->channel_residues[ich][i - j - 1] * filter_coeffs[j];
827  pred >>= scaling;
828  s->channel_residues[ich][i] += (unsigned)pred;
829  }
830  for (j = order - 1; j >= 0; j--)
831  if (tile_size <= j) {
832  prevvalues[j] = prevvalues[j - tile_size];
833  }else
834  prevvalues[j] = s->channel_residues[ich][tile_size - j - 1];
835  }
836 }
837 
839 {
840  int offset = s->samples_per_frame;
841  int subframe_len = s->samples_per_frame;
842  int total_samples = s->samples_per_frame * s->num_channels;
843  int i, j, rawpcm_tile, padding_zeroes, res;
844 
845  s->subframe_offset = get_bits_count(&s->gb);
846 
847  /* reset channel context and find the next block offset and size
848  == the next block of the channel with the smallest number of
849  decoded samples */
850  for (i = 0; i < s->num_channels; i++) {
851  if (offset > s->channel[i].decoded_samples) {
852  offset = s->channel[i].decoded_samples;
853  subframe_len =
854  s->channel[i].subframe_len[s->channel[i].cur_subframe];
855  }
856  }
857 
858  /* get a list of all channels that contain the estimated block */
859  s->channels_for_cur_subframe = 0;
860  for (i = 0; i < s->num_channels; i++) {
861  const int cur_subframe = s->channel[i].cur_subframe;
862  /* subtract already processed samples */
863  total_samples -= s->channel[i].decoded_samples;
864 
865  /* and count if there are multiple subframes that match our profile */
866  if (offset == s->channel[i].decoded_samples &&
867  subframe_len == s->channel[i].subframe_len[cur_subframe]) {
868  total_samples -= s->channel[i].subframe_len[cur_subframe];
869  s->channel[i].decoded_samples +=
870  s->channel[i].subframe_len[cur_subframe];
871  s->channel_indexes_for_cur_subframe[s->channels_for_cur_subframe] = i;
872  ++s->channels_for_cur_subframe;
873  }
874  }
875 
876  /* check if the frame will be complete after processing the
877  estimated block */
878  if (!total_samples)
879  s->parsed_all_subframes = 1;
880 
881 
882  s->seekable_tile = get_bits1(&s->gb);
883  if (s->seekable_tile) {
885 
886  s->do_arith_coding = get_bits1(&s->gb);
887  if (s->do_arith_coding) {
888  avpriv_request_sample(s->avctx, "Arithmetic coding");
889  return AVERROR_PATCHWELCOME;
890  }
891  s->do_ac_filter = get_bits1(&s->gb);
892  s->do_inter_ch_decorr = get_bits1(&s->gb);
893  s->do_mclms = get_bits1(&s->gb);
894 
895  if (s->do_ac_filter)
897 
898  if (s->do_mclms)
899  decode_mclms(s);
900 
901  if ((res = decode_cdlms(s)) < 0)
902  return res;
903  s->movave_scaling = get_bits(&s->gb, 3);
904  s->quant_stepsize = get_bits(&s->gb, 8) + 1;
905 
906  reset_codec(s);
907  }
908 
909  rawpcm_tile = get_bits1(&s->gb);
910 
911  if (!rawpcm_tile && !s->cdlms[0][0].order) {
912  av_log(s->avctx, AV_LOG_DEBUG,
913  "Waiting for seekable tile\n");
914  av_frame_unref(s->frame);
915  return -1;
916  }
917 
918 
919  for (i = 0; i < s->num_channels; i++)
920  s->is_channel_coded[i] = 1;
921 
922  if (!rawpcm_tile) {
923  for (i = 0; i < s->num_channels; i++)
924  s->is_channel_coded[i] = get_bits1(&s->gb);
925 
926  if (s->bV3RTM) {
927  // LPC
928  s->do_lpc = get_bits1(&s->gb);
929  if (s->do_lpc) {
930  decode_lpc(s);
931  avpriv_request_sample(s->avctx, "Expect wrong output since "
932  "inverse LPC filter");
933  }
934  } else
935  s->do_lpc = 0;
936  }
937 
938  if (get_bits_left(&s->gb) < 1)
939  return AVERROR_INVALIDDATA;
940 
941  if (get_bits1(&s->gb))
942  padding_zeroes = get_bits(&s->gb, 5);
943  else
944  padding_zeroes = 0;
945 
946  if (rawpcm_tile) {
947  int bits = s->bits_per_sample - padding_zeroes;
948  if (bits <= 0) {
949  av_log(s->avctx, AV_LOG_ERROR,
950  "Invalid number of padding bits in raw PCM tile\n");
951  return AVERROR_INVALIDDATA;
952  }
953  ff_dlog(s->avctx, "RAWPCM %d bits per sample. "
954  "total %d bits, remain=%d\n", bits,
955  bits * s->num_channels * subframe_len, get_bits_count(&s->gb));
956  for (i = 0; i < s->num_channels; i++)
957  for (j = 0; j < subframe_len; j++)
958  s->channel_residues[i][j] = get_sbits_long(&s->gb, bits);
959  } else {
960  if (s->bits_per_sample < padding_zeroes)
961  return AVERROR_INVALIDDATA;
962  for (i = 0; i < s->num_channels; i++) {
963  if (s->is_channel_coded[i]) {
964  decode_channel_residues(s, i, subframe_len);
965  if (s->seekable_tile)
967  else
969  if (s->bits_per_sample > 16)
970  revert_cdlms32(s, i, 0, subframe_len);
971  else
972  revert_cdlms16(s, i, 0, subframe_len);
973  } else {
974  memset(s->channel_residues[i], 0, sizeof(**s->channel_residues) * subframe_len);
975  }
976  }
977 
978  if (s->do_mclms)
979  revert_mclms(s, subframe_len);
980  if (s->do_inter_ch_decorr)
981  revert_inter_ch_decorr(s, subframe_len);
982  if (s->do_ac_filter)
983  revert_acfilter(s, subframe_len);
984 
985  /* Dequantize */
986  if (s->quant_stepsize != 1)
987  for (i = 0; i < s->num_channels; i++)
988  for (j = 0; j < subframe_len; j++)
989  s->channel_residues[i][j] *= (unsigned)s->quant_stepsize;
990  }
991 
992  /* Write to proper output buffer depending on bit-depth */
993  for (i = 0; i < s->channels_for_cur_subframe; i++) {
994  int c = s->channel_indexes_for_cur_subframe[i];
995  int subframe_len = s->channel[c].subframe_len[s->channel[c].cur_subframe];
996 
997  for (j = 0; j < subframe_len; j++) {
998  if (s->bits_per_sample == 16) {
999  *s->samples_16[c]++ = (int16_t) s->channel_residues[c][j] * (1 << padding_zeroes);
1000  } else {
1001  *s->samples_32[c]++ = s->channel_residues[c][j] * (256U << padding_zeroes);
1002  }
1003  }
1004  }
1005 
1006  /* handled one subframe */
1007  for (i = 0; i < s->channels_for_cur_subframe; i++) {
1008  int c = s->channel_indexes_for_cur_subframe[i];
1009  if (s->channel[c].cur_subframe >= s->channel[c].num_subframes) {
1010  av_log(s->avctx, AV_LOG_ERROR, "broken subframe\n");
1011  return AVERROR_INVALIDDATA;
1012  }
1013  ++s->channel[c].cur_subframe;
1014  }
1015  return 0;
1016 }
1017 
1018 /**
1019  * @brief Decode one WMA frame.
1020  * @param s codec context
1021  * @return 0 if the trailer bit indicates that this is the last frame,
1022  * 1 if there are additional frames
1023  */
1025 {
1026  GetBitContext* gb = &s->gb;
1027  int more_frames = 0, len = 0, i, ret;
1028 
1029  s->frame->nb_samples = s->samples_per_frame;
1030  if ((ret = ff_get_buffer(s->avctx, s->frame, 0)) < 0) {
1031  /* return an error if no frame could be decoded at all */
1032  s->packet_loss = 1;
1033  s->frame->nb_samples = 0;
1034  return ret;
1035  }
1036  for (i = 0; i < s->num_channels; i++) {
1037  s->samples_16[i] = (int16_t *)s->frame->extended_data[i];
1038  s->samples_32[i] = (int32_t *)s->frame->extended_data[i];
1039  }
1040 
1041  /* get frame length */
1042  if (s->len_prefix)
1043  len = get_bits(gb, s->log2_frame_size);
1044 
1045  /* decode tile information */
1046  if ((ret = decode_tilehdr(s))) {
1047  s->packet_loss = 1;
1048  av_frame_unref(s->frame);
1049  return ret;
1050  }
1051 
1052  /* read drc info */
1053  if (s->dynamic_range_compression)
1054  s->drc_gain = get_bits(gb, 8);
1055 
1056  /* no idea what these are for, might be the number of samples
1057  that need to be skipped at the beginning or end of a stream */
1058  if (get_bits1(gb)) {
1059  int av_unused skip;
1060 
1061  /* usually true for the first frame */
1062  if (get_bits1(gb)) {
1063  skip = get_bits(gb, av_log2(s->samples_per_frame * 2));
1064  ff_dlog(s->avctx, "start skip: %i\n", skip);
1065  }
1066 
1067  /* sometimes true for the last frame */
1068  if (get_bits1(gb)) {
1069  skip = get_bits(gb, av_log2(s->samples_per_frame * 2));
1070  ff_dlog(s->avctx, "end skip: %i\n", skip);
1071  s->frame->nb_samples -= skip;
1072  if (s->frame->nb_samples <= 0)
1073  return AVERROR_INVALIDDATA;
1074  }
1075 
1076  }
1077 
1078  /* reset subframe states */
1079  s->parsed_all_subframes = 0;
1080  for (i = 0; i < s->num_channels; i++) {
1081  s->channel[i].decoded_samples = 0;
1082  s->channel[i].cur_subframe = 0;
1083  }
1084 
1085  /* decode all subframes */
1086  while (!s->parsed_all_subframes) {
1087  int decoded_samples = s->channel[0].decoded_samples;
1088  if (decode_subframe(s) < 0) {
1089  s->packet_loss = 1;
1090  if (s->frame->nb_samples)
1091  s->frame->nb_samples = decoded_samples;
1092  return 0;
1093  }
1094  }
1095 
1096  ff_dlog(s->avctx, "Frame done\n");
1097 
1098  s->skip_frame = 0;
1099 
1100  if (s->len_prefix) {
1101  if (len != (get_bits_count(gb) - s->frame_offset) + 2) {
1102  /* FIXME: not sure if this is always an error */
1103  av_log(s->avctx, AV_LOG_ERROR,
1104  "frame[%"PRIu32"] would have to skip %i bits\n",
1105  s->frame_num,
1106  len - (get_bits_count(gb) - s->frame_offset) - 1);
1107  s->packet_loss = 1;
1108  return 0;
1109  }
1110 
1111  /* skip the rest of the frame data */
1112  skip_bits_long(gb, len - (get_bits_count(gb) - s->frame_offset) - 1);
1113  }
1114 
1115  /* decode trailer bit */
1116  more_frames = get_bits1(gb);
1117  ++s->frame_num;
1118  return more_frames;
1119 }
1120 
1121 /**
1122  * @brief Calculate remaining input buffer length.
1123  * @param s codec context
1124  * @param gb bitstream reader context
1125  * @return remaining size in bits
1126  */
1128 {
1129  return s->buf_bit_size - get_bits_count(gb);
1130 }
1131 
1132 /**
1133  * @brief Fill the bit reservoir with a (partial) frame.
1134  * @param s codec context
1135  * @param gb bitstream reader context
1136  * @param len length of the partial frame
1137  * @param append decides whether to reset the buffer or not
1138  */
1139 static void save_bits(WmallDecodeCtx *s, GetBitContext* gb, int len,
1140  int append)
1141 {
1142  int buflen;
1144 
1145  /* when the frame data does not need to be concatenated, the input buffer
1146  is reset and additional bits from the previous frame are copied
1147  and skipped later so that a fast byte copy is possible */
1148 
1149  if (!append) {
1150  s->frame_offset = get_bits_count(gb) & 7;
1151  s->num_saved_bits = s->frame_offset;
1152  init_put_bits(&s->pb, s->frame_data, s->max_frame_size);
1153  }
1154 
1155  buflen = (s->num_saved_bits + len + 8) >> 3;
1156 
1157  if (len <= 0 || buflen > s->max_frame_size) {
1158  avpriv_request_sample(s->avctx, "Too small input buffer");
1159  s->packet_loss = 1;
1160  s->num_saved_bits = 0;
1161  return;
1162  }
1163 
1164  s->num_saved_bits += len;
1165  if (!append) {
1166  ff_copy_bits(&s->pb, gb->buffer + (get_bits_count(gb) >> 3),
1167  s->num_saved_bits);
1168  } else {
1169  int align = 8 - (get_bits_count(gb) & 7);
1170  align = FFMIN(align, len);
1171  put_bits(&s->pb, align, get_bits(gb, align));
1172  len -= align;
1173  ff_copy_bits(&s->pb, gb->buffer + (get_bits_count(gb) >> 3), len);
1174  }
1175  skip_bits_long(gb, len);
1176 
1177  tmp = s->pb;
1178  flush_put_bits(&tmp);
1179 
1180  init_get_bits(&s->gb, s->frame_data, s->num_saved_bits);
1181  skip_bits(&s->gb, s->frame_offset);
1182 }
1183 
1184 static int decode_packet(AVCodecContext *avctx, AVFrame *rframe,
1185  int *got_frame_ptr, AVPacket* avpkt)
1186 {
1187  WmallDecodeCtx *s = avctx->priv_data;
1188  GetBitContext* gb = &s->pgb;
1189  const uint8_t* buf = avpkt->data;
1190  int buf_size = avpkt->size;
1191  int num_bits_prev_frame, packet_sequence_number, spliced_packet;
1192 
1193  s->frame->nb_samples = 0;
1194 
1195  if (!buf_size) {
1196  s->packet_done = 0;
1197  if (s->num_saved_bits <= get_bits_count(&s->gb))
1198  return 0;
1199  if (!decode_frame(s))
1200  s->num_saved_bits = 0;
1201  } else if (s->packet_done || s->packet_loss) {
1202  s->packet_done = 0;
1203 
1204  s->next_packet_start = buf_size - FFMIN(avctx->block_align, buf_size);
1205  buf_size = FFMIN(avctx->block_align, buf_size);
1206  s->buf_bit_size = buf_size << 3;
1207 
1208  /* parse packet header */
1209  init_get_bits(gb, buf, s->buf_bit_size);
1210  packet_sequence_number = get_bits(gb, 4);
1211  skip_bits(gb, 1); // Skip seekable_frame_in_packet, currently unused
1212  spliced_packet = get_bits1(gb);
1213  if (spliced_packet)
1214  avpriv_request_sample(avctx, "Bitstream splicing");
1215 
1216  /* get number of bits that need to be added to the previous frame */
1217  num_bits_prev_frame = get_bits(gb, s->log2_frame_size);
1218 
1219  /* check for packet loss */
1220  if (!s->packet_loss &&
1221  ((s->packet_sequence_number + 1) & 0xF) != packet_sequence_number) {
1222  s->packet_loss = 1;
1223  av_log(avctx, AV_LOG_ERROR,
1224  "Packet loss detected! seq %"PRIx8" vs %x\n",
1225  s->packet_sequence_number, packet_sequence_number);
1226  }
1227  s->packet_sequence_number = packet_sequence_number;
1228 
1229  if (num_bits_prev_frame > 0) {
1230  int remaining_packet_bits = s->buf_bit_size - get_bits_count(gb);
1231  if (num_bits_prev_frame >= remaining_packet_bits) {
1232  num_bits_prev_frame = remaining_packet_bits;
1233  s->packet_done = 1;
1234  }
1235 
1236  /* Append the previous frame data to the remaining data from the
1237  * previous packet to create a full frame. */
1238  save_bits(s, gb, num_bits_prev_frame, 1);
1239 
1240  /* decode the cross packet frame if it is valid */
1241  if (num_bits_prev_frame < remaining_packet_bits && !s->packet_loss)
1242  decode_frame(s);
1243  } else if (s->num_saved_bits - s->frame_offset) {
1244  ff_dlog(avctx, "ignoring %x previously saved bits\n",
1245  s->num_saved_bits - s->frame_offset);
1246  }
1247 
1248  if (s->packet_loss) {
1249  /* Reset number of saved bits so that the decoder does not start
1250  * to decode incomplete frames in the s->len_prefix == 0 case. */
1251  s->num_saved_bits = 0;
1252  s->packet_loss = 0;
1253  init_put_bits(&s->pb, s->frame_data, s->max_frame_size);
1254  }
1255 
1256  } else {
1257  int frame_size;
1258 
1259  s->buf_bit_size = (avpkt->size - s->next_packet_start) << 3;
1260  init_get_bits(gb, avpkt->data, s->buf_bit_size);
1261  skip_bits(gb, s->packet_offset);
1262 
1263  if (s->len_prefix && remaining_bits(s, gb) > s->log2_frame_size &&
1264  (frame_size = show_bits(gb, s->log2_frame_size)) &&
1265  frame_size <= remaining_bits(s, gb)) {
1266  save_bits(s, gb, frame_size, 0);
1267 
1268  if (!s->packet_loss)
1269  s->packet_done = !decode_frame(s);
1270  } else if (!s->len_prefix
1271  && s->num_saved_bits > get_bits_count(&s->gb)) {
1272  /* when the frames do not have a length prefix, we don't know the
1273  * compressed length of the individual frames however, we know what
1274  * part of a new packet belongs to the previous frame therefore we
1275  * save the incoming packet first, then we append the "previous
1276  * frame" data from the next packet so that we get a buffer that
1277  * only contains full frames */
1278  s->packet_done = !decode_frame(s);
1279  } else {
1280  s->packet_done = 1;
1281  }
1282  }
1283 
1284  if (remaining_bits(s, gb) < 0) {
1285  av_log(avctx, AV_LOG_ERROR, "Overread %d\n", -remaining_bits(s, gb));
1286  s->packet_loss = 1;
1287  }
1288 
1289  if (s->packet_done && !s->packet_loss &&
1290  remaining_bits(s, gb) > 0) {
1291  /* save the rest of the data so that it can be decoded
1292  * with the next packet */
1293  save_bits(s, gb, remaining_bits(s, gb), 0);
1294  }
1295 
1296  *got_frame_ptr = s->frame->nb_samples > 0;
1297  av_frame_move_ref(rframe, s->frame);
1298 
1299  s->packet_offset = get_bits_count(gb) & 7;
1300 
1301  return (s->packet_loss) ? AVERROR_INVALIDDATA : get_bits_count(gb) >> 3;
1302 }
1303 
1304 static void flush(AVCodecContext *avctx)
1305 {
1306  WmallDecodeCtx *s = avctx->priv_data;
1307  s->packet_loss = 1;
1308  s->packet_done = 0;
1309  s->num_saved_bits = 0;
1310  s->frame_offset = 0;
1311  s->next_packet_start = 0;
1312  s->cdlms[0][0].order = 0;
1313  s->frame->nb_samples = 0;
1314  init_put_bits(&s->pb, s->frame_data, s->max_frame_size);
1315 }
1316 
1318 {
1319  WmallDecodeCtx *s = avctx->priv_data;
1320 
1321  av_frame_free(&s->frame);
1322  av_freep(&s->frame_data);
1323 
1324  return 0;
1325 }
1326 
1328  .p.name = "wmalossless",
1329  CODEC_LONG_NAME("Windows Media Audio Lossless"),
1330  .p.type = AVMEDIA_TYPE_AUDIO,
1331  .p.id = AV_CODEC_ID_WMALOSSLESS,
1332  .priv_data_size = sizeof(WmallDecodeCtx),
1333  .init = decode_init,
1334  .close = decode_close,
1336  .flush = flush,
1337  .p.capabilities =
1338 #if FF_API_SUBFRAMES
1339  AV_CODEC_CAP_SUBFRAMES |
1340 #endif
1342  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1343  .p.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P,
1346 };
WmallChannelCtx::num_subframes
uint8_t num_subframes
Definition: wmalosslessdec.c:59
MAX_SUBFRAMES
#define MAX_SUBFRAMES
max number of subframes per channel
Definition: wmalosslessdec.c:41
skip_bits_long
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
Definition: get_bits.h:278
WmallDecodeCtx::frame_num
uint32_t frame_num
current frame number (not used for decoding)
Definition: wmalosslessdec.c:106
av_clip
#define av_clip
Definition: common.h:98
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
WmallChannelCtx::cur_subframe
uint8_t cur_subframe
current subframe number
Definition: wmalosslessdec.c:62
WmallChannelCtx::subframe_len
uint16_t subframe_len[MAX_SUBFRAMES]
subframe length in samples
Definition: wmalosslessdec.c:60
get_bits_left
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:694
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
WmallChannelCtx::subframe_offsets
uint16_t subframe_offsets[MAX_SUBFRAMES]
subframe positions in the current frame
Definition: wmalosslessdec.c:61
mem_internal.h
WmallDecodeCtx::packet_done
uint8_t packet_done
set when a packet is fully decoded
Definition: wmalosslessdec.c:103
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1050
WmallChannelCtx::transmit_coefs
uint8_t transmit_coefs
Definition: wmalosslessdec.c:58
WmallDecodeCtx::next_packet_start
int next_packet_start
start offset of the next WMA packet in the demuxer packet
Definition: wmalosslessdec.c:96
WmallDecodeCtx::subframe_offset
int subframe_offset
subframe offset in the bit reservoir
Definition: wmalosslessdec.c:101
get_bits_long
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:421
WmallDecodeCtx::frame_offset
int frame_offset
frame offset in the bit reservoir
Definition: wmalosslessdec.c:100
WmallDecodeCtx::packet_loss
uint8_t packet_loss
set in case of bitstream error
Definition: wmalosslessdec.c:102
init_put_bits
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
Definition: put_bits.h:62
decode_frame
static int decode_frame(WmallDecodeCtx *s)
Decode one WMA frame.
Definition: wmalosslessdec.c:1024
append
static uint8_t * append(uint8_t *buf, const uint8_t *src, int size)
Definition: mjpeg2jpeg.c:59
get_bits_count
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:266
av_unused
#define av_unused
Definition: attributes.h:131
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:88
decode_subframe
static int decode_subframe(WmallDecodeCtx *s)
Definition: wmalosslessdec.c:838
WmallDecodeCtx::mclms_scaling
int8_t mclms_scaling
Definition: wmalosslessdec.c:136
WmallDecodeCtx::cdlms_ttl
int cdlms_ttl[WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:157
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:340
put_bits
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition: j2kenc.c:222
tmp
static uint8_t tmp[11]
Definition: aes_ctr.c:28
WMALL_BLOCK_MAX_SIZE
#define WMALL_BLOCK_MAX_SIZE
maximum block size
Definition: wmalosslessdec.c:48
AVPacket::data
uint8_t * data
Definition: packet.h:522
AV_SAMPLE_FMT_S32P
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition: samplefmt.h:65
WmallDecodeCtx::movave_scaling
int movave_scaling
Definition: wmalosslessdec.c:143
WmallDecodeCtx::channel_indexes_for_cur_subframe
int8_t channel_indexes_for_cur_subframe[WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:118
FFCodec
Definition: codec_internal.h:127
decode_cdlms
static int decode_cdlms(WmallDecodeCtx *s)
Definition: wmalosslessdec.c:455
decode_close
static av_cold int decode_close(AVCodecContext *avctx)
Definition: wmalosslessdec.c:1317
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
ff_wmalossless_decoder
const FFCodec ff_wmalossless_decoder
Definition: wmalosslessdec.c:1327
mclms_predict
static void mclms_predict(WmallDecodeCtx *s, int icoef, int *pred)
Definition: wmalosslessdec.c:667
WmallDecodeCtx::update_speed
int update_speed[WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:162
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:313
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:514
WmallDecodeCtx::do_lpc
uint8_t do_lpc
Definition: wmalosslessdec.c:128
WmallDecodeCtx::num_saved_bits
int num_saved_bits
saved number of bits
Definition: wmalosslessdec.c:99
decode_mclms
static void decode_mclms(WmallDecodeCtx *s)
Definition: wmalosslessdec.c:432
ff_llauddsp_init
av_cold void ff_llauddsp_init(LLAudDSPContext *c)
Definition: lossless_audiodsp.c:57
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
WMALL_COEFF_PAD_SIZE
#define WMALL_COEFF_PAD_SIZE
pad coef buffers with 0 for use with SIMD
Definition: wmalosslessdec.c:51
ff_copy_bits
void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
Copy the content of src to the bitstream.
Definition: bitstream.c:49
clear_codec_buffers
static void clear_codec_buffers(WmallDecodeCtx *s)
Definition: wmalosslessdec.c:581
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
WmallDecodeCtx::max_frame_size
int max_frame_size
max bitstream size
Definition: wmalosslessdec.c:77
av_ceil_log2
#define av_ceil_log2
Definition: common.h:95
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1065
WmallDecodeCtx::samples_per_frame
uint16_t samples_per_frame
number of samples to output
Definition: wmalosslessdec.c:85
reset_codec
static void reset_codec(WmallDecodeCtx *s)
Reset filter parameters and transient area at new seekable tile.
Definition: wmalosslessdec.c:610
WmallDecodeCtx::min_samples_per_subframe
uint16_t min_samples_per_subframe
Definition: wmalosslessdec.c:92
WmallChannelCtx::decoded_samples
uint16_t decoded_samples
number of already processed samples
Definition: wmalosslessdec.c:63
GetBitContext
Definition: get_bits.h:108
WmallDecodeCtx::lms_updates
int16_t lms_updates[MAX_ORDER *2+WMALL_COEFF_PAD_SIZE/sizeof(int16_t)]
Definition: wmalosslessdec.c:153
WmallDecodeCtx::do_inter_ch_decorr
uint8_t do_inter_ch_decorr
Definition: wmalosslessdec.c:126
save_bits
static void save_bits(WmallDecodeCtx *s, GetBitContext *gb, int len, int append)
Fill the bit reservoir with a (partial) frame.
Definition: wmalosslessdec.c:1139
remaining_bits
static int remaining_bits(WmallDecodeCtx *s, GetBitContext *gb)
Calculate remaining input buffer length.
Definition: wmalosslessdec.c:1127
WmallDecodeCtx::avctx
AVCodecContext * avctx
Definition: wmalosslessdec.c:73
WmallDecodeCtx::mclms_recent
int mclms_recent
Definition: wmalosslessdec.c:141
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:76
avassert.h
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
WmallDecodeCtx::len_prefix
int len_prefix
frame is prefixed with its length
Definition: wmalosslessdec.c:82
mask
static const uint16_t mask[17]
Definition: lzw.c:38
WmallDecodeCtx::frame
AVFrame * frame
Definition: wmalosslessdec.c:74
WmallDecodeCtx::scaling
int scaling
Definition: wmalosslessdec.c:148
wma_common.h
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:524
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
MAX_ORDER
#define MAX_ORDER
Definition: wmalosslessdec.c:44
s
#define s(width, name)
Definition: cbs_vp9.c:198
WmallDecodeCtx::channel_residues
int channel_residues[WMALL_MAX_CHANNELS][WMALL_BLOCK_MAX_SIZE]
Definition: wmalosslessdec.c:170
decode_subframe_length
static int decode_subframe_length(WmallDecodeCtx *s, int offset)
Decode the subframe length.
Definition: wmalosslessdec.c:295
WmallDecodeCtx::lms_prevvalues
int32_t lms_prevvalues[MAX_ORDER *2+WMALL_COEFF_PAD_SIZE/sizeof(int16_t)]
Definition: wmalosslessdec.c:152
frame_size
int frame_size
Definition: mxfenc.c:2422
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
av_channel_layout_from_mask
int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask)
Initialize a native channel layout from a bitmask indicating which channels are present.
Definition: channel_layout.c:242
bits
uint8_t bits
Definition: vp3data.h:128
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
AVCodecContext::bits_per_raw_sample
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:1574
get_sbits
static int get_sbits(GetBitContext *s, int n)
Definition: get_bits.h:320
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:201
decode.h
get_bits.h
AV_RL16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:94
LLAudDSPContext
Definition: lossless_audiodsp.h:28
WmallDecodeCtx::lpc_coefs
int lpc_coefs[WMALL_MAX_CHANNELS][40]
Definition: wmalosslessdec.c:172
PutBitContext
Definition: put_bits.h:50
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
use_normal_update_speed
static void use_normal_update_speed(WmallDecodeCtx *s, int ich)
Definition: wmalosslessdec.c:716
WmallDecodeCtx::mclms_prevvalues
int32_t mclms_prevvalues[WMALL_MAX_CHANNELS *2 *32]
Definition: wmalosslessdec.c:139
if
if(ret)
Definition: filter_design.txt:179
GetBitContext::buffer
const uint8_t * buffer
Definition: get_bits.h:109
MAX_FRAMESIZE
#define MAX_FRAMESIZE
maximum compressed frame size
Definition: wmalosslessdec.c:43
WmallDecodeCtx::buf_bit_size
int buf_bit_size
buffer size in bits
Definition: wmalosslessdec.c:108
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
WmallChannelCtx::transient_counter
int transient_counter
number of transient samples from the beginning of the transient zone
Definition: wmalosslessdec.c:65
AV_CODEC_ID_WMALOSSLESS
@ AV_CODEC_ID_WMALOSSLESS
Definition: codec_id.h:478
WmallDecodeCtx::log2_frame_size
uint16_t log2_frame_size
Definition: wmalosslessdec.c:86
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:388
WmallDecodeCtx::samples_32
int32_t * samples_32[WMALL_MAX_CHANNELS]
current sample buffer pointer (24-bit)
Definition: wmalosslessdec.c:110
WmallChannelCtx::quant_step
int quant_step
quantization step for the current subframe
Definition: wmalosslessdec.c:64
WmallDecodeCtx::recent
int recent
Definition: wmalosslessdec.c:154
WmallDecodeCtx::bitsend
int bitsend
Definition: wmalosslessdec.c:150
WmallDecodeCtx::mclms_updates
int32_t mclms_updates[WMALL_MAX_CHANNELS *2 *32]
Definition: wmalosslessdec.c:140
WMALL_MAX_CHANNELS
#define WMALL_MAX_CHANNELS
current decoder limitations
Definition: wmalosslessdec.c:40
WmallDecodeCtx::bits_per_sample
uint8_t bits_per_sample
integer audio sample size for the unscaled IMDCT output (used to scale to [-1.0, 1....
Definition: wmalosslessdec.c:84
WmallDecodeCtx::order
int order
Definition: wmalosslessdec.c:147
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
WmallDecodeCtx::packet_offset
uint8_t packet_offset
offset to the frame in the packet
Definition: wmalosslessdec.c:97
WmallDecodeCtx::acfilter_coeffs
int16_t acfilter_coeffs[16]
Definition: wmalosslessdec.c:132
ff_dlog
#define ff_dlog(a,...)
Definition: tableprint_vlc.h:28
decode_tilehdr
static int decode_tilehdr(WmallDecodeCtx *s)
Decode how the data in the frame is split into subframes.
Definition: wmalosslessdec.c:337
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1568
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
WmallDecodeCtx::bV3RTM
int bV3RTM
Definition: wmalosslessdec.c:159
AVPacket::size
int size
Definition: packet.h:523
codec_internal.h
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem_internal.h:109
WmallDecodeCtx::channels_for_cur_subframe
int8_t channels_for_cur_subframe
number of channels that contain the subframe
Definition: wmalosslessdec.c:117
WmallDecodeCtx::mclms_coeffs
int16_t mclms_coeffs[WMALL_MAX_CHANNELS *WMALL_MAX_CHANNELS *32]
Definition: wmalosslessdec.c:137
for
for(k=2;k<=8;++k)
Definition: h264pred_template.c:425
WmallDecodeCtx::gb
GetBitContext gb
bitstream reader context
Definition: wmalosslessdec.c:107
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1057
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
WmallDecodeCtx::acfilter_prevvalues
int acfilter_prevvalues[WMALL_MAX_CHANNELS][16]
Definition: wmalosslessdec.c:133
WmallDecodeCtx::do_ac_filter
uint8_t do_ac_filter
Definition: wmalosslessdec.c:125
WmallChannelCtx
frame-specific decoder context for a single channel
Definition: wmalosslessdec.c:56
range
enum AVColorRange range
Definition: mediacodec_wrapper.c:2646
WmallDecodeCtx::packet_sequence_number
uint8_t packet_sequence_number
current packet number
Definition: wmalosslessdec.c:98
use_high_update_speed
static void use_high_update_speed(WmallDecodeCtx *s, int ich)
Definition: wmalosslessdec.c:698
align
static const uint8_t *BS_FUNC() align(BSCTX *bc)
Skip bits to a byte boundary.
Definition: bitstream_template.h:411
WmallDecodeCtx::samples_16
int16_t * samples_16[WMALL_MAX_CHANNELS]
current sample buffer pointer (16-bit)
Definition: wmalosslessdec.c:109
decode_ac_filter
static void decode_ac_filter(WmallDecodeCtx *s)
Definition: wmalosslessdec.c:422
WmallDecodeCtx::num_channels
int8_t num_channels
number of channels in the stream (same as AVCodecContext.num_channels)
Definition: wmalosslessdec.c:87
offset
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 offset
Definition: writing_filters.txt:86
attributes.h
AV_SAMPLE_FMT_S16P
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition: samplefmt.h:64
WmallDecodeCtx::decode_flags
uint32_t decode_flags
used compression features
Definition: wmalosslessdec.c:81
WmallDecodeCtx::seekable_tile
int seekable_tile
Definition: wmalosslessdec.c:166
WmallDecodeCtx::lpc_scaling
int lpc_scaling
Definition: wmalosslessdec.c:174
mclms_update
static void mclms_update(WmallDecodeCtx *s, int icoef, int *pred)
Definition: wmalosslessdec.c:625
revert_inter_ch_decorr
static void revert_inter_ch_decorr(WmallDecodeCtx *s, int tile_size)
Definition: wmalosslessdec.c:790
WmallDecodeCtx::quant_stepsize
int quant_stepsize
Definition: wmalosslessdec.c:144
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
WmallDecodeCtx::subframe_len
int16_t subframe_len
current subframe length
Definition: wmalosslessdec.c:116
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:523
show_bits
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition: get_bits.h:371
WmallDecodeCtx::max_subframe_len_bit
uint8_t max_subframe_len_bit
flag indicating that the subframe is of maximum size when the first subframe length bit is 1
Definition: wmalosslessdec.c:91
WmallDecodeCtx::is_channel_coded
int is_channel_coded[WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:161
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:55
WmallDecodeCtx::drc_gain
uint8_t drc_gain
gain for the DRC tool
Definition: wmalosslessdec.c:111
revert_acfilter
static void revert_acfilter(WmallDecodeCtx *s, int tile_size)
Definition: wmalosslessdec.c:803
WmallDecodeCtx::pgb
GetBitContext pgb
bitstream reader context for the packet
Definition: wmalosslessdec.c:95
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
av_frame_move_ref
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:561
AV_STRINGIFY
#define AV_STRINGIFY(s)
Definition: macros.h:66
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:534
WmallDecodeCtx
main decoder context
Definition: wmalosslessdec.c:71
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:254
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
WmallDecodeCtx::max_num_subframes
uint8_t max_num_subframes
Definition: wmalosslessdec.c:89
len
int len
Definition: vorbis_enc_data.h:426
WmallDecodeCtx::dsp
LLAudDSPContext dsp
accelerated DSP functions
Definition: wmalosslessdec.c:75
avcodec.h
WmallDecodeCtx::coefsend
int coefsend
Definition: wmalosslessdec.c:149
WmallDecodeCtx::mclms_order
int8_t mclms_order
Definition: wmalosslessdec.c:135
WmallDecodeCtx::skip_frame
int8_t skip_frame
skip output step
Definition: wmalosslessdec.c:112
ret
ret
Definition: filter_design.txt:187
pred
static const float pred[4]
Definition: siprdata.h:259
AVCodecContext::block_align
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs.
Definition: avcodec.h:1083
WmallDecodeCtx::acfilter_order
int8_t acfilter_order
Definition: wmalosslessdec.c:130
lossless_audiodsp.h
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: defs.h:40
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
U
#define U(x)
Definition: vpx_arith.h:37
WmallDecodeCtx::coefs
int16_t coefs[MAX_ORDER+WMALL_COEFF_PAD_SIZE/sizeof(int16_t)]
Definition: wmalosslessdec.c:151
AVCodecContext
main external API structure.
Definition: avcodec.h:445
WmallDecodeCtx::transient_pos
int transient_pos[WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:165
ff_wma_get_frame_len_bits
av_cold int ff_wma_get_frame_len_bits(int sample_rate, int version, unsigned int decode_flags)
Get the samples per frame for this stream.
Definition: wma_common.c:32
revert_mclms
static void revert_mclms(WmallDecodeCtx *s, int tile_size)
Definition: wmalosslessdec.c:689
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:432
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: wmalosslessdec.c:181
AV_CODEC_CAP_DELAY
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: codec.h:76
decode_lpc
static void decode_lpc(WmallDecodeCtx *s)
Definition: wmalosslessdec.c:569
decode_channel_residues
static int decode_channel_residues(WmallDecodeCtx *s, int ch, int tile_size)
Definition: wmalosslessdec.c:512
WmallDecodeCtx::mclms_coeffs_cur
int16_t mclms_coeffs_cur[WMALL_MAX_CHANNELS *WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:138
get_bitsz
static av_always_inline int get_bitsz(GetBitContext *s, int n)
Read 0-25 bits.
Definition: get_bits.h:351
WmallDecodeCtx::pb
PutBitContext pb
context for filling the frame_data buffer
Definition: wmalosslessdec.c:78
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:36
flush_put_bits
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
Definition: put_bits.h:143
WmallChannelCtx::prev_block_len
int16_t prev_block_len
length of the previous block
Definition: wmalosslessdec.c:57
WmallDecodeCtx::lpc_order
int lpc_order
Definition: wmalosslessdec.c:173
AVPacket
This structure stores compressed data.
Definition: packet.h:499
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
WmallDecodeCtx::do_mclms
uint8_t do_mclms
Definition: wmalosslessdec.c:127
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
decode_packet
static int decode_packet(AVCodecContext *avctx, AVFrame *rframe, int *got_frame_ptr, AVPacket *avpkt)
Definition: wmalosslessdec.c:1184
WMASIGN
#define WMASIGN(x)
Get sign of integer (1 for positive, -1 for negative and 0 for zero)
Definition: wmalosslessdec.c:179
int32_t
int32_t
Definition: audioconvert.c:56
WmallDecodeCtx::acfilter_scaling
int8_t acfilter_scaling
Definition: wmalosslessdec.c:131
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
WmallDecodeCtx::cdlms
struct WmallDecodeCtx::@231 cdlms[WMALL_MAX_CHANNELS][9]
WmallDecodeCtx::lfe_channel
int8_t lfe_channel
lfe channel index
Definition: wmalosslessdec.c:88
WmallDecodeCtx::ave_sum
unsigned ave_sum[WMALL_MAX_CHANNELS]
Definition: wmalosslessdec.c:168
CD_LMS
#define CD_LMS(bits, ROUND)
Definition: wmalosslessdec.c:733
get_sbits_long
static int get_sbits_long(GetBitContext *s, int n)
Read 0-32 bits as a signed integer.
Definition: get_bits.h:471
put_bits.h
av_log2
int av_log2(unsigned v)
Definition: intmath.c:26
WmallDecodeCtx::subframe_len_bits
uint8_t subframe_len_bits
number of bits used for the subframe length
Definition: wmalosslessdec.c:90
WmallDecodeCtx::do_arith_coding
uint8_t do_arith_coding
Definition: wmalosslessdec.c:124
skip
static void BS_FUNC() skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
Definition: bitstream_template.h:375
WmallDecodeCtx::lpc_intbits
int lpc_intbits
Definition: wmalosslessdec.c:175
channel
channel
Definition: ebur128.h:39
WmallDecodeCtx::dynamic_range_compression
int dynamic_range_compression
frame contains DRC data
Definition: wmalosslessdec.c:83
flush
static void flush(AVCodecContext *avctx)
Definition: wmalosslessdec.c:1304
WmallDecodeCtx::frame_data
uint8_t * frame_data
compressed frame data
Definition: wmalosslessdec.c:76
WmallDecodeCtx::parsed_all_subframes
int8_t parsed_all_subframes
all subframes decoded?
Definition: wmalosslessdec.c:113