FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wavpack.c
Go to the documentation of this file.
1 /*
2  * WavPack lossless audio decoder
3  * Copyright (c) 2006,2011 Konstantin Shishkov
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #define BITSTREAM_READER_LE
23 
25 #include "avcodec.h"
26 #include "get_bits.h"
27 #include "internal.h"
28 #include "thread.h"
29 #include "unary.h"
30 #include "bytestream.h"
31 #include "wavpack.h"
32 
33 /**
34  * @file
35  * WavPack lossless audio decoder
36  */
37 
38 typedef struct SavedContext {
39  int offset;
40  int size;
41  int bits_used;
42  uint32_t crc;
43 } SavedContext;
44 
45 typedef struct WavpackFrameContext {
49  int joint;
50  uint32_t CRC;
53  uint32_t crc_extra_bits;
55  int data_size; // in bits
56  int samples;
57  int terms;
59  int zero, one, zeroes;
61  int and, or, shift;
69  int pos;
72 
73 #define WV_MAX_FRAME_DECODERS 14
74 
75 typedef struct WavpackContext {
77 
79  int fdec_num;
80 
81  int block;
82  int samples;
83  int ch_offset;
85 
86 #define LEVEL_DECAY(a) (((a) + 0x80) >> 8)
87 
88 static av_always_inline int get_tail(GetBitContext *gb, int k)
89 {
90  int p, e, res;
91 
92  if (k < 1)
93  return 0;
94  p = av_log2(k);
95  e = (1 << (p + 1)) - k - 1;
96  res = p ? get_bits(gb, p) : 0;
97  if (res >= e)
98  res = (res << 1) - e + get_bits1(gb);
99  return res;
100 }
101 
103 {
104  int i, br[2], sl[2];
105 
106  for (i = 0; i <= ctx->stereo_in; i++) {
107  ctx->ch[i].bitrate_acc += ctx->ch[i].bitrate_delta;
108  br[i] = ctx->ch[i].bitrate_acc >> 16;
109  sl[i] = LEVEL_DECAY(ctx->ch[i].slow_level);
110  }
111  if (ctx->stereo_in && ctx->hybrid_bitrate) {
112  int balance = (sl[1] - sl[0] + br[1] + 1) >> 1;
113  if (balance > br[0]) {
114  br[1] = br[0] << 1;
115  br[0] = 0;
116  } else if (-balance > br[0]) {
117  br[0] <<= 1;
118  br[1] = 0;
119  } else {
120  br[1] = br[0] + balance;
121  br[0] = br[0] - balance;
122  }
123  }
124  for (i = 0; i <= ctx->stereo_in; i++) {
125  if (ctx->hybrid_bitrate) {
126  if (sl[i] - br[i] > -0x100)
127  ctx->ch[i].error_limit = wp_exp2(sl[i] - br[i] + 0x100);
128  else
129  ctx->ch[i].error_limit = 0;
130  } else {
131  ctx->ch[i].error_limit = wp_exp2(br[i]);
132  }
133  }
134 }
135 
137  int channel, int *last)
138 {
139  int t, t2;
140  int sign, base, add, ret;
141  WvChannel *c = &ctx->ch[channel];
142 
143  *last = 0;
144 
145  if ((ctx->ch[0].median[0] < 2U) && (ctx->ch[1].median[0] < 2U) &&
146  !ctx->zero && !ctx->one) {
147  if (ctx->zeroes) {
148  ctx->zeroes--;
149  if (ctx->zeroes) {
151  return 0;
152  }
153  } else {
154  t = get_unary_0_33(gb);
155  if (t >= 2) {
156  if (get_bits_left(gb) < t - 1)
157  goto error;
158  t = get_bits(gb, t - 1) | (1 << (t - 1));
159  } else {
160  if (get_bits_left(gb) < 0)
161  goto error;
162  }
163  ctx->zeroes = t;
164  if (ctx->zeroes) {
165  memset(ctx->ch[0].median, 0, sizeof(ctx->ch[0].median));
166  memset(ctx->ch[1].median, 0, sizeof(ctx->ch[1].median));
168  return 0;
169  }
170  }
171  }
172 
173  if (ctx->zero) {
174  t = 0;
175  ctx->zero = 0;
176  } else {
177  t = get_unary_0_33(gb);
178  if (get_bits_left(gb) < 0)
179  goto error;
180  if (t == 16) {
181  t2 = get_unary_0_33(gb);
182  if (t2 < 2) {
183  if (get_bits_left(gb) < 0)
184  goto error;
185  t += t2;
186  } else {
187  if (get_bits_left(gb) < t2 - 1)
188  goto error;
189  t += get_bits(gb, t2 - 1) | (1 << (t2 - 1));
190  }
191  }
192 
193  if (ctx->one) {
194  ctx->one = t & 1;
195  t = (t >> 1) + 1;
196  } else {
197  ctx->one = t & 1;
198  t >>= 1;
199  }
200  ctx->zero = !ctx->one;
201  }
202 
203  if (ctx->hybrid && !channel)
204  update_error_limit(ctx);
205 
206  if (!t) {
207  base = 0;
208  add = GET_MED(0) - 1;
209  DEC_MED(0);
210  } else if (t == 1) {
211  base = GET_MED(0);
212  add = GET_MED(1) - 1;
213  INC_MED(0);
214  DEC_MED(1);
215  } else if (t == 2) {
216  base = GET_MED(0) + GET_MED(1);
217  add = GET_MED(2) - 1;
218  INC_MED(0);
219  INC_MED(1);
220  DEC_MED(2);
221  } else {
222  base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2);
223  add = GET_MED(2) - 1;
224  INC_MED(0);
225  INC_MED(1);
226  INC_MED(2);
227  }
228  if (!c->error_limit) {
229  if (add >= 0x2000000U) {
230  av_log(ctx->avctx, AV_LOG_ERROR, "k %d is too large\n", add);
231  goto error;
232  }
233  ret = base + get_tail(gb, add);
234  if (get_bits_left(gb) <= 0)
235  goto error;
236  } else {
237  int mid = (base * 2 + add + 1) >> 1;
238  while (add > c->error_limit) {
239  if (get_bits_left(gb) <= 0)
240  goto error;
241  if (get_bits1(gb)) {
242  add -= (mid - base);
243  base = mid;
244  } else
245  add = mid - base - 1;
246  mid = (base * 2 + add + 1) >> 1;
247  }
248  ret = mid;
249  }
250  sign = get_bits1(gb);
251  if (ctx->hybrid_bitrate)
252  c->slow_level += wp_log2(ret) - LEVEL_DECAY(c->slow_level);
253  return sign ? ~ret : ret;
254 
255 error:
256  ret = get_bits_left(gb);
257  if (ret <= 0) {
258  av_log(ctx->avctx, AV_LOG_ERROR, "Too few bits (%d) left\n", ret);
259  }
260  *last = 1;
261  return 0;
262 }
263 
264 static inline int wv_get_value_integer(WavpackFrameContext *s, uint32_t *crc,
265  int S)
266 {
267  int bit;
268 
269  if (s->extra_bits) {
270  S <<= s->extra_bits;
271 
272  if (s->got_extra_bits &&
274  S |= get_bits(&s->gb_extra_bits, s->extra_bits);
275  *crc = *crc * 9 + (S & 0xffff) * 3 + ((unsigned)S >> 16);
276  }
277  }
278 
279  bit = (S & s->and) | s->or;
280  bit = ((S + bit) << s->shift) - bit;
281 
282  if (s->hybrid)
283  bit = av_clip(bit, s->hybrid_minclip, s->hybrid_maxclip);
284 
285  return bit << s->post_shift;
286 }
287 
288 static float wv_get_value_float(WavpackFrameContext *s, uint32_t *crc, int S)
289 {
290  union {
291  float f;
292  uint32_t u;
293  } value;
294 
295  unsigned int sign;
296  int exp = s->float_max_exp;
297 
298  if (s->got_extra_bits) {
299  const int max_bits = 1 + 23 + 8 + 1;
300  const int left_bits = get_bits_left(&s->gb_extra_bits);
301 
302  if (left_bits + 8 * FF_INPUT_BUFFER_PADDING_SIZE < max_bits)
303  return 0.0;
304  }
305 
306  if (S) {
307  S <<= s->float_shift;
308  sign = S < 0;
309  if (sign)
310  S = -S;
311  if (S >= 0x1000000) {
312  if (s->got_extra_bits && get_bits1(&s->gb_extra_bits))
313  S = get_bits(&s->gb_extra_bits, 23);
314  else
315  S = 0;
316  exp = 255;
317  } else if (exp) {
318  int shift = 23 - av_log2(S);
319  exp = s->float_max_exp;
320  if (exp <= shift)
321  shift = --exp;
322  exp -= shift;
323 
324  if (shift) {
325  S <<= shift;
326  if ((s->float_flag & WV_FLT_SHIFT_ONES) ||
327  (s->got_extra_bits &&
328  (s->float_flag & WV_FLT_SHIFT_SAME) &&
329  get_bits1(&s->gb_extra_bits))) {
330  S |= (1 << shift) - 1;
331  } else if (s->got_extra_bits &&
332  (s->float_flag & WV_FLT_SHIFT_SENT)) {
333  S |= get_bits(&s->gb_extra_bits, shift);
334  }
335  }
336  } else {
337  exp = s->float_max_exp;
338  }
339  S &= 0x7fffff;
340  } else {
341  sign = 0;
342  exp = 0;
343  if (s->got_extra_bits && (s->float_flag & WV_FLT_ZERO_SENT)) {
344  if (get_bits1(&s->gb_extra_bits)) {
345  S = get_bits(&s->gb_extra_bits, 23);
346  if (s->float_max_exp >= 25)
347  exp = get_bits(&s->gb_extra_bits, 8);
348  sign = get_bits1(&s->gb_extra_bits);
349  } else {
350  if (s->float_flag & WV_FLT_ZERO_SIGN)
351  sign = get_bits1(&s->gb_extra_bits);
352  }
353  }
354  }
355 
356  *crc = *crc * 27 + S * 9 + exp * 3 + sign;
357 
358  value.u = (sign << 31) | (exp << 23) | S;
359  return value.f;
360 }
361 
363 {
364  s->pos = 0;
365  s->sc.crc = s->extra_sc.crc = 0xFFFFFFFF;
366 }
367 
368 static inline int wv_check_crc(WavpackFrameContext *s, uint32_t crc,
369  uint32_t crc_extra_bits)
370 {
371  if (crc != s->CRC) {
372  av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
373  return AVERROR_INVALIDDATA;
374  }
375  if (s->got_extra_bits && crc_extra_bits != s->crc_extra_bits) {
376  av_log(s->avctx, AV_LOG_ERROR, "Extra bits CRC error\n");
377  return AVERROR_INVALIDDATA;
378  }
379 
380  return 0;
381 }
382 
384  void *dst_l, void *dst_r, const int type)
385 {
386  int i, j, count = 0;
387  int last, t;
388  int A, B, L, L2, R, R2;
389  int pos = s->pos;
390  uint32_t crc = s->sc.crc;
391  uint32_t crc_extra_bits = s->extra_sc.crc;
392  int16_t *dst16_l = dst_l;
393  int16_t *dst16_r = dst_r;
394  int32_t *dst32_l = dst_l;
395  int32_t *dst32_r = dst_r;
396  float *dstfl_l = dst_l;
397  float *dstfl_r = dst_r;
398 
399  s->one = s->zero = s->zeroes = 0;
400  do {
401  L = wv_get_value(s, gb, 0, &last);
402  if (last)
403  break;
404  R = wv_get_value(s, gb, 1, &last);
405  if (last)
406  break;
407  for (i = 0; i < s->terms; i++) {
408  t = s->decorr[i].value;
409  if (t > 0) {
410  if (t > 8) {
411  if (t & 1) {
412  A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
413  B = 2 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1];
414  } else {
415  A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
416  B = (3 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]) >> 1;
417  }
418  s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
419  s->decorr[i].samplesB[1] = s->decorr[i].samplesB[0];
420  j = 0;
421  } else {
422  A = s->decorr[i].samplesA[pos];
423  B = s->decorr[i].samplesB[pos];
424  j = (pos + t) & 7;
425  }
426  if (type != AV_SAMPLE_FMT_S16P) {
427  L2 = L + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
428  R2 = R + ((s->decorr[i].weightB * (int64_t)B + 512) >> 10);
429  } else {
430  L2 = L + ((s->decorr[i].weightA * A + 512) >> 10);
431  R2 = R + ((s->decorr[i].weightB * B + 512) >> 10);
432  }
433  if (A && L)
434  s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
435  if (B && R)
436  s->decorr[i].weightB -= ((((R ^ B) >> 30) & 2) - 1) * s->decorr[i].delta;
437  s->decorr[i].samplesA[j] = L = L2;
438  s->decorr[i].samplesB[j] = R = R2;
439  } else if (t == -1) {
440  if (type != AV_SAMPLE_FMT_S16P)
441  L2 = L + ((s->decorr[i].weightA * (int64_t)s->decorr[i].samplesA[0] + 512) >> 10);
442  else
443  L2 = L + ((s->decorr[i].weightA * s->decorr[i].samplesA[0] + 512) >> 10);
444  UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L);
445  L = L2;
446  if (type != AV_SAMPLE_FMT_S16P)
447  R2 = R + ((s->decorr[i].weightB * (int64_t)L2 + 512) >> 10);
448  else
449  R2 = R + ((s->decorr[i].weightB * L2 + 512) >> 10);
450  UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, L2, R);
451  R = R2;
452  s->decorr[i].samplesA[0] = R;
453  } else {
454  if (type != AV_SAMPLE_FMT_S16P)
455  R2 = R + ((s->decorr[i].weightB * (int64_t)s->decorr[i].samplesB[0] + 512) >> 10);
456  else
457  R2 = R + ((s->decorr[i].weightB * s->decorr[i].samplesB[0] + 512) >> 10);
458  UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, s->decorr[i].samplesB[0], R);
459  R = R2;
460 
461  if (t == -3) {
462  R2 = s->decorr[i].samplesA[0];
463  s->decorr[i].samplesA[0] = R;
464  }
465 
466  if (type != AV_SAMPLE_FMT_S16P)
467  L2 = L + ((s->decorr[i].weightA * (int64_t)R2 + 512) >> 10);
468  else
469  L2 = L + ((s->decorr[i].weightA * R2 + 512) >> 10);
470  UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L);
471  L = L2;
472  s->decorr[i].samplesB[0] = L;
473  }
474  }
475 
476  if (type == AV_SAMPLE_FMT_S16P) {
477  if (FFABS(L) + FFABS(R) > (1<<19)) {
478  av_log(s->avctx, AV_LOG_ERROR, "sample %d %d too large\n", L, R);
479  return AVERROR_INVALIDDATA;
480  }
481  }
482 
483  pos = (pos + 1) & 7;
484  if (s->joint)
485  L += (R -= (L >> 1));
486  crc = (crc * 3 + L) * 3 + R;
487 
488  if (type == AV_SAMPLE_FMT_FLTP) {
489  *dstfl_l++ = wv_get_value_float(s, &crc_extra_bits, L);
490  *dstfl_r++ = wv_get_value_float(s, &crc_extra_bits, R);
491  } else if (type == AV_SAMPLE_FMT_S32P) {
492  *dst32_l++ = wv_get_value_integer(s, &crc_extra_bits, L);
493  *dst32_r++ = wv_get_value_integer(s, &crc_extra_bits, R);
494  } else {
495  *dst16_l++ = wv_get_value_integer(s, &crc_extra_bits, L);
496  *dst16_r++ = wv_get_value_integer(s, &crc_extra_bits, R);
497  }
498  count++;
499  } while (!last && count < s->samples);
500 
502 
503  if (last && count < s->samples) {
504  int size = av_get_bytes_per_sample(type);
505  memset((uint8_t*)dst_l + count*size, 0, (s->samples-count)*size);
506  memset((uint8_t*)dst_r + count*size, 0, (s->samples-count)*size);
507  }
508 
509  if ((s->avctx->err_recognition & AV_EF_CRCCHECK) &&
510  wv_check_crc(s, crc, crc_extra_bits))
511  return AVERROR_INVALIDDATA;
512 
513  return 0;
514 }
515 
517  void *dst, const int type)
518 {
519  int i, j, count = 0;
520  int last, t;
521  int A, S, T;
522  int pos = s->pos;
523  uint32_t crc = s->sc.crc;
524  uint32_t crc_extra_bits = s->extra_sc.crc;
525  int16_t *dst16 = dst;
526  int32_t *dst32 = dst;
527  float *dstfl = dst;
528 
529  s->one = s->zero = s->zeroes = 0;
530  do {
531  T = wv_get_value(s, gb, 0, &last);
532  S = 0;
533  if (last)
534  break;
535  for (i = 0; i < s->terms; i++) {
536  t = s->decorr[i].value;
537  if (t > 8) {
538  if (t & 1)
539  A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
540  else
541  A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
542  s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
543  j = 0;
544  } else {
545  A = s->decorr[i].samplesA[pos];
546  j = (pos + t) & 7;
547  }
548  if (type != AV_SAMPLE_FMT_S16P)
549  S = T + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
550  else
551  S = T + ((s->decorr[i].weightA * A + 512) >> 10);
552  if (A && T)
553  s->decorr[i].weightA -= ((((T ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
554  s->decorr[i].samplesA[j] = T = S;
555  }
556  pos = (pos + 1) & 7;
557  crc = crc * 3 + S;
558 
559  if (type == AV_SAMPLE_FMT_FLTP) {
560  *dstfl++ = wv_get_value_float(s, &crc_extra_bits, S);
561  } else if (type == AV_SAMPLE_FMT_S32P) {
562  *dst32++ = wv_get_value_integer(s, &crc_extra_bits, S);
563  } else {
564  *dst16++ = wv_get_value_integer(s, &crc_extra_bits, S);
565  }
566  count++;
567  } while (!last && count < s->samples);
568 
570 
571  if (last && count < s->samples) {
572  int size = av_get_bytes_per_sample(type);
573  memset((uint8_t*)dst + count*size, 0, (s->samples-count)*size);
574  }
575 
577  int ret = wv_check_crc(s, crc, crc_extra_bits);
578  if (ret < 0 && s->avctx->err_recognition & AV_EF_EXPLODE)
579  return ret;
580  }
581 
582  return 0;
583 }
584 
586 {
588  return -1;
589 
590  c->fdec[c->fdec_num] = av_mallocz(sizeof(**c->fdec));
591  if (!c->fdec[c->fdec_num])
592  return -1;
593  c->fdec_num++;
594  c->fdec[c->fdec_num - 1]->avctx = c->avctx;
596 
597  return 0;
598 }
599 
601 {
602  WavpackContext *s = avctx->priv_data;
603  s->avctx = avctx;
604  return 0;
605 }
606 
608 {
609  WavpackContext *s = avctx->priv_data;
610 
611  s->avctx = avctx;
612 
613  s->fdec_num = 0;
614 
615  return 0;
616 }
617 
619 {
620  WavpackContext *s = avctx->priv_data;
621  int i;
622 
623  for (i = 0; i < s->fdec_num; i++)
624  av_freep(&s->fdec[i]);
625  s->fdec_num = 0;
626 
627  return 0;
628 }
629 
630 static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
631  AVFrame *frame, const uint8_t *buf, int buf_size)
632 {
633  WavpackContext *wc = avctx->priv_data;
634  ThreadFrame tframe = { .f = frame };
636  GetByteContext gb;
637  void *samples_l = NULL, *samples_r = NULL;
638  int ret;
639  int got_terms = 0, got_weights = 0, got_samples = 0,
640  got_entropy = 0, got_bs = 0, got_float = 0, got_hybrid = 0;
641  int i, j, id, size, ssize, weights, t;
642  int bpp, chan = 0, chmask = 0, orig_bpp, sample_rate = 0;
643  int multiblock;
644 
645  if (block_no >= wc->fdec_num && wv_alloc_frame_context(wc) < 0) {
646  av_log(avctx, AV_LOG_ERROR, "Error creating frame decode context\n");
647  return AVERROR_INVALIDDATA;
648  }
649 
650  s = wc->fdec[block_no];
651  if (!s) {
652  av_log(avctx, AV_LOG_ERROR, "Context for block %d is not present\n",
653  block_no);
654  return AVERROR_INVALIDDATA;
655  }
656 
657  memset(s->decorr, 0, MAX_TERMS * sizeof(Decorr));
658  memset(s->ch, 0, sizeof(s->ch));
659  s->extra_bits = 0;
660  s->and = s->or = s->shift = 0;
661  s->got_extra_bits = 0;
662 
663  bytestream2_init(&gb, buf, buf_size);
664 
665  s->samples = bytestream2_get_le32(&gb);
666  if (s->samples != wc->samples) {
667  av_log(avctx, AV_LOG_ERROR, "Mismatching number of samples in "
668  "a sequence: %d and %d\n", wc->samples, s->samples);
669  return AVERROR_INVALIDDATA;
670  }
671  s->frame_flags = bytestream2_get_le32(&gb);
672  bpp = av_get_bytes_per_sample(avctx->sample_fmt);
673  orig_bpp = ((s->frame_flags & 0x03) + 1) << 3;
674  multiblock = (s->frame_flags & WV_SINGLE_BLOCK) != WV_SINGLE_BLOCK;
675 
676  s->stereo = !(s->frame_flags & WV_MONO);
677  s->stereo_in = (s->frame_flags & WV_FALSE_STEREO) ? 0 : s->stereo;
681  s->post_shift = bpp * 8 - orig_bpp + ((s->frame_flags >> 13) & 0x1f);
682  s->hybrid_maxclip = ((1LL << (orig_bpp - 1)) - 1);
683  s->hybrid_minclip = ((-1LL << (orig_bpp - 1)));
684  s->CRC = bytestream2_get_le32(&gb);
685 
686  // parse metadata blocks
687  while (bytestream2_get_bytes_left(&gb)) {
688  id = bytestream2_get_byte(&gb);
689  size = bytestream2_get_byte(&gb);
690  if (id & WP_IDF_LONG) {
691  size |= (bytestream2_get_byte(&gb)) << 8;
692  size |= (bytestream2_get_byte(&gb)) << 16;
693  }
694  size <<= 1; // size is specified in words
695  ssize = size;
696  if (id & WP_IDF_ODD)
697  size--;
698  if (size < 0) {
699  av_log(avctx, AV_LOG_ERROR,
700  "Got incorrect block %02X with size %i\n", id, size);
701  break;
702  }
703  if (bytestream2_get_bytes_left(&gb) < ssize) {
704  av_log(avctx, AV_LOG_ERROR,
705  "Block size %i is out of bounds\n", size);
706  break;
707  }
708  switch (id & WP_IDF_MASK) {
709  case WP_ID_DECTERMS:
710  if (size > MAX_TERMS) {
711  av_log(avctx, AV_LOG_ERROR, "Too many decorrelation terms\n");
712  s->terms = 0;
713  bytestream2_skip(&gb, ssize);
714  continue;
715  }
716  s->terms = size;
717  for (i = 0; i < s->terms; i++) {
718  uint8_t val = bytestream2_get_byte(&gb);
719  s->decorr[s->terms - i - 1].value = (val & 0x1F) - 5;
720  s->decorr[s->terms - i - 1].delta = val >> 5;
721  }
722  got_terms = 1;
723  break;
724  case WP_ID_DECWEIGHTS:
725  if (!got_terms) {
726  av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
727  continue;
728  }
729  weights = size >> s->stereo_in;
730  if (weights > MAX_TERMS || weights > s->terms) {
731  av_log(avctx, AV_LOG_ERROR, "Too many decorrelation weights\n");
732  bytestream2_skip(&gb, ssize);
733  continue;
734  }
735  for (i = 0; i < weights; i++) {
736  t = (int8_t)bytestream2_get_byte(&gb);
737  s->decorr[s->terms - i - 1].weightA = t << 3;
738  if (s->decorr[s->terms - i - 1].weightA > 0)
739  s->decorr[s->terms - i - 1].weightA +=
740  (s->decorr[s->terms - i - 1].weightA + 64) >> 7;
741  if (s->stereo_in) {
742  t = (int8_t)bytestream2_get_byte(&gb);
743  s->decorr[s->terms - i - 1].weightB = t << 3;
744  if (s->decorr[s->terms - i - 1].weightB > 0)
745  s->decorr[s->terms - i - 1].weightB +=
746  (s->decorr[s->terms - i - 1].weightB + 64) >> 7;
747  }
748  }
749  got_weights = 1;
750  break;
751  case WP_ID_DECSAMPLES:
752  if (!got_terms) {
753  av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
754  continue;
755  }
756  t = 0;
757  for (i = s->terms - 1; (i >= 0) && (t < size); i--) {
758  if (s->decorr[i].value > 8) {
759  s->decorr[i].samplesA[0] =
760  wp_exp2(bytestream2_get_le16(&gb));
761  s->decorr[i].samplesA[1] =
762  wp_exp2(bytestream2_get_le16(&gb));
763 
764  if (s->stereo_in) {
765  s->decorr[i].samplesB[0] =
766  wp_exp2(bytestream2_get_le16(&gb));
767  s->decorr[i].samplesB[1] =
768  wp_exp2(bytestream2_get_le16(&gb));
769  t += 4;
770  }
771  t += 4;
772  } else if (s->decorr[i].value < 0) {
773  s->decorr[i].samplesA[0] =
774  wp_exp2(bytestream2_get_le16(&gb));
775  s->decorr[i].samplesB[0] =
776  wp_exp2(bytestream2_get_le16(&gb));
777  t += 4;
778  } else {
779  for (j = 0; j < s->decorr[i].value; j++) {
780  s->decorr[i].samplesA[j] =
781  wp_exp2(bytestream2_get_le16(&gb));
782  if (s->stereo_in) {
783  s->decorr[i].samplesB[j] =
784  wp_exp2(bytestream2_get_le16(&gb));
785  }
786  }
787  t += s->decorr[i].value * 2 * (s->stereo_in + 1);
788  }
789  }
790  got_samples = 1;
791  break;
792  case WP_ID_ENTROPY:
793  if (size != 6 * (s->stereo_in + 1)) {
794  av_log(avctx, AV_LOG_ERROR,
795  "Entropy vars size should be %i, got %i.\n",
796  6 * (s->stereo_in + 1), size);
797  bytestream2_skip(&gb, ssize);
798  continue;
799  }
800  for (j = 0; j <= s->stereo_in; j++)
801  for (i = 0; i < 3; i++) {
802  s->ch[j].median[i] = wp_exp2(bytestream2_get_le16(&gb));
803  }
804  got_entropy = 1;
805  break;
806  case WP_ID_HYBRID:
807  if (s->hybrid_bitrate) {
808  for (i = 0; i <= s->stereo_in; i++) {
809  s->ch[i].slow_level = wp_exp2(bytestream2_get_le16(&gb));
810  size -= 2;
811  }
812  }
813  for (i = 0; i < (s->stereo_in + 1); i++) {
814  s->ch[i].bitrate_acc = bytestream2_get_le16(&gb) << 16;
815  size -= 2;
816  }
817  if (size > 0) {
818  for (i = 0; i < (s->stereo_in + 1); i++) {
819  s->ch[i].bitrate_delta =
820  wp_exp2((int16_t)bytestream2_get_le16(&gb));
821  }
822  } else {
823  for (i = 0; i < (s->stereo_in + 1); i++)
824  s->ch[i].bitrate_delta = 0;
825  }
826  got_hybrid = 1;
827  break;
828  case WP_ID_INT32INFO: {
829  uint8_t val[4];
830  if (size != 4) {
831  av_log(avctx, AV_LOG_ERROR,
832  "Invalid INT32INFO, size = %i\n",
833  size);
834  bytestream2_skip(&gb, ssize - 4);
835  continue;
836  }
837  bytestream2_get_buffer(&gb, val, 4);
838  if (val[0]) {
839  s->extra_bits = val[0];
840  } else if (val[1]) {
841  s->shift = val[1];
842  } else if (val[2]) {
843  s->and = s->or = 1;
844  s->shift = val[2];
845  } else if (val[3]) {
846  s->and = 1;
847  s->shift = val[3];
848  }
849  /* original WavPack decoder forces 32-bit lossy sound to be treated
850  * as 24-bit one in order to have proper clipping */
851  if (s->hybrid && bpp == 4 && s->post_shift < 8 && s->shift > 8) {
852  s->post_shift += 8;
853  s->shift -= 8;
854  s->hybrid_maxclip >>= 8;
855  s->hybrid_minclip >>= 8;
856  }
857  break;
858  }
859  case WP_ID_FLOATINFO:
860  if (size != 4) {
861  av_log(avctx, AV_LOG_ERROR,
862  "Invalid FLOATINFO, size = %i\n", size);
863  bytestream2_skip(&gb, ssize);
864  continue;
865  }
866  s->float_flag = bytestream2_get_byte(&gb);
867  s->float_shift = bytestream2_get_byte(&gb);
868  s->float_max_exp = bytestream2_get_byte(&gb);
869  got_float = 1;
870  bytestream2_skip(&gb, 1);
871  break;
872  case WP_ID_DATA:
873  s->sc.offset = bytestream2_tell(&gb);
874  s->sc.size = size * 8;
875  if ((ret = init_get_bits8(&s->gb, gb.buffer, size)) < 0)
876  return ret;
877  s->data_size = size * 8;
878  bytestream2_skip(&gb, size);
879  got_bs = 1;
880  break;
881  case WP_ID_EXTRABITS:
882  if (size <= 4) {
883  av_log(avctx, AV_LOG_ERROR, "Invalid EXTRABITS, size = %i\n",
884  size);
885  bytestream2_skip(&gb, size);
886  continue;
887  }
888  s->extra_sc.offset = bytestream2_tell(&gb);
889  s->extra_sc.size = size * 8;
890  if ((ret = init_get_bits8(&s->gb_extra_bits, gb.buffer, size)) < 0)
891  return ret;
893  bytestream2_skip(&gb, size);
894  s->got_extra_bits = 1;
895  break;
896  case WP_ID_CHANINFO:
897  if (size <= 1) {
898  av_log(avctx, AV_LOG_ERROR,
899  "Insufficient channel information\n");
900  return AVERROR_INVALIDDATA;
901  }
902  chan = bytestream2_get_byte(&gb);
903  switch (size - 2) {
904  case 0:
905  chmask = bytestream2_get_byte(&gb);
906  break;
907  case 1:
908  chmask = bytestream2_get_le16(&gb);
909  break;
910  case 2:
911  chmask = bytestream2_get_le24(&gb);
912  break;
913  case 3:
914  chmask = bytestream2_get_le32(&gb);
915  break;
916  case 5:
917  size = bytestream2_get_byte(&gb);
918  if (avctx->channels != size)
919  av_log(avctx, AV_LOG_WARNING, "%i channels signalled"
920  " instead of %i.\n", size, avctx->channels);
921  chan |= (bytestream2_get_byte(&gb) & 0xF) << 8;
922  chmask = bytestream2_get_le16(&gb);
923  break;
924  default:
925  av_log(avctx, AV_LOG_ERROR, "Invalid channel info size %d\n",
926  size);
927  chan = avctx->channels;
928  chmask = avctx->channel_layout;
929  }
930  break;
931  case WP_ID_SAMPLE_RATE:
932  if (size != 3) {
933  av_log(avctx, AV_LOG_ERROR, "Invalid custom sample rate.\n");
934  return AVERROR_INVALIDDATA;
935  }
936  sample_rate = bytestream2_get_le24(&gb);
937  break;
938  default:
939  bytestream2_skip(&gb, size);
940  }
941  if (id & WP_IDF_ODD)
942  bytestream2_skip(&gb, 1);
943  }
944 
945  if (!got_terms) {
946  av_log(avctx, AV_LOG_ERROR, "No block with decorrelation terms\n");
947  return AVERROR_INVALIDDATA;
948  }
949  if (!got_weights) {
950  av_log(avctx, AV_LOG_ERROR, "No block with decorrelation weights\n");
951  return AVERROR_INVALIDDATA;
952  }
953  if (!got_samples) {
954  av_log(avctx, AV_LOG_ERROR, "No block with decorrelation samples\n");
955  return AVERROR_INVALIDDATA;
956  }
957  if (!got_entropy) {
958  av_log(avctx, AV_LOG_ERROR, "No block with entropy info\n");
959  return AVERROR_INVALIDDATA;
960  }
961  if (s->hybrid && !got_hybrid) {
962  av_log(avctx, AV_LOG_ERROR, "Hybrid config not found\n");
963  return AVERROR_INVALIDDATA;
964  }
965  if (!got_bs) {
966  av_log(avctx, AV_LOG_ERROR, "Packed samples not found\n");
967  return AVERROR_INVALIDDATA;
968  }
969  if (!got_float && avctx->sample_fmt == AV_SAMPLE_FMT_FLTP) {
970  av_log(avctx, AV_LOG_ERROR, "Float information not found\n");
971  return AVERROR_INVALIDDATA;
972  }
973  if (s->got_extra_bits && avctx->sample_fmt != AV_SAMPLE_FMT_FLTP) {
974  const int size = get_bits_left(&s->gb_extra_bits);
975  const int wanted = s->samples * s->extra_bits << s->stereo_in;
976  if (size < wanted) {
977  av_log(avctx, AV_LOG_ERROR, "Too small EXTRABITS\n");
978  s->got_extra_bits = 0;
979  }
980  }
981 
982  if (!wc->ch_offset) {
983  int sr = (s->frame_flags >> 23) & 0xf;
984  if (sr == 0xf) {
985  if (!sample_rate) {
986  av_log(avctx, AV_LOG_ERROR, "Custom sample rate missing.\n");
987  return AVERROR_INVALIDDATA;
988  }
989  avctx->sample_rate = sample_rate;
990  } else
991  avctx->sample_rate = wv_rates[sr];
992 
993  if (multiblock) {
994  if (chan)
995  avctx->channels = chan;
996  if (chmask)
997  avctx->channel_layout = chmask;
998  } else {
999  avctx->channels = s->stereo ? 2 : 1;
1000  avctx->channel_layout = s->stereo ? AV_CH_LAYOUT_STEREO :
1002  }
1003 
1004  /* get output buffer */
1005  frame->nb_samples = s->samples + 1;
1006  if ((ret = ff_thread_get_buffer(avctx, &tframe, 0)) < 0)
1007  return ret;
1008  frame->nb_samples = s->samples;
1009  }
1010 
1011  if (wc->ch_offset + s->stereo >= avctx->channels) {
1012  av_log(avctx, AV_LOG_WARNING, "Too many channels coded in a packet.\n");
1013  return (avctx->err_recognition & AV_EF_EXPLODE) ? AVERROR_INVALIDDATA : 0;
1014  }
1015 
1016  samples_l = frame->extended_data[wc->ch_offset];
1017  if (s->stereo)
1018  samples_r = frame->extended_data[wc->ch_offset + 1];
1019 
1020  wc->ch_offset += 1 + s->stereo;
1021 
1022  if (s->stereo_in) {
1023  ret = wv_unpack_stereo(s, &s->gb, samples_l, samples_r, avctx->sample_fmt);
1024  if (ret < 0)
1025  return ret;
1026  } else {
1027  ret = wv_unpack_mono(s, &s->gb, samples_l, avctx->sample_fmt);
1028  if (ret < 0)
1029  return ret;
1030 
1031  if (s->stereo)
1032  memcpy(samples_r, samples_l, bpp * s->samples);
1033  }
1034 
1035  return 0;
1036 }
1037 
1039 {
1040  WavpackContext *s = avctx->priv_data;
1041  int i;
1042 
1043  for (i = 0; i < s->fdec_num; i++)
1045 }
1046 
1047 static int wavpack_decode_frame(AVCodecContext *avctx, void *data,
1048  int *got_frame_ptr, AVPacket *avpkt)
1049 {
1050  WavpackContext *s = avctx->priv_data;
1051  const uint8_t *buf = avpkt->data;
1052  int buf_size = avpkt->size;
1053  AVFrame *frame = data;
1054  int frame_size, ret, frame_flags;
1055 
1056  if (avpkt->size <= WV_HEADER_SIZE)
1057  return AVERROR_INVALIDDATA;
1058 
1059  s->block = 0;
1060  s->ch_offset = 0;
1061 
1062  /* determine number of samples */
1063  s->samples = AV_RL32(buf + 20);
1064  frame_flags = AV_RL32(buf + 24);
1065  if (s->samples <= 0 || s->samples > WV_MAX_SAMPLES) {
1066  av_log(avctx, AV_LOG_ERROR, "Invalid number of samples: %d\n",
1067  s->samples);
1068  return AVERROR_INVALIDDATA;
1069  }
1070 
1071  if (frame_flags & 0x80) {
1072  avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
1073  } else if ((frame_flags & 0x03) <= 1) {
1074  avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
1075  } else {
1076  avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
1077  avctx->bits_per_raw_sample = ((frame_flags & 0x03) + 1) << 3;
1078  }
1079 
1080  while (buf_size > 0) {
1081  if (buf_size <= WV_HEADER_SIZE)
1082  break;
1083  frame_size = AV_RL32(buf + 4) - 12;
1084  buf += 20;
1085  buf_size -= 20;
1086  if (frame_size <= 0 || frame_size > buf_size) {
1087  av_log(avctx, AV_LOG_ERROR,
1088  "Block %d has invalid size (size %d vs. %d bytes left)\n",
1089  s->block, frame_size, buf_size);
1090  wavpack_decode_flush(avctx);
1091  return AVERROR_INVALIDDATA;
1092  }
1093  if ((ret = wavpack_decode_block(avctx, s->block,
1094  frame, buf, frame_size)) < 0) {
1095  wavpack_decode_flush(avctx);
1096  return ret;
1097  }
1098  s->block++;
1099  buf += frame_size;
1100  buf_size -= frame_size;
1101  }
1102 
1103  if (s->ch_offset != avctx->channels) {
1104  av_log(avctx, AV_LOG_ERROR, "Not enough channels coded in a packet.\n");
1105  return AVERROR_INVALIDDATA;
1106  }
1107 
1108  *got_frame_ptr = 1;
1109 
1110  return avpkt->size;
1111 }
1112 
1114  .name = "wavpack",
1115  .long_name = NULL_IF_CONFIG_SMALL("WavPack"),
1116  .type = AVMEDIA_TYPE_AUDIO,
1117  .id = AV_CODEC_ID_WAVPACK,
1118  .priv_data_size = sizeof(WavpackContext),
1120  .close = wavpack_decode_end,
1124  .capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
1125 };
int delta
Definition: wavpack.h:84
float, planar
Definition: samplefmt.h:70
#define NULL
Definition: coverity.c:32
#define WV_HYBRID_MODE
Definition: wavpack.h:39
const char const char void * val
Definition: avisynth_c.h:634
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
static int shift(int a, int b)
Definition: sonic.c:82
int median[3]
Definition: wavpack.h:95
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static void wavpack_decode_flush(AVCodecContext *avctx)
Definition: wavpack.c:1038
enum AVCodecID id
Definition: mxfenc.c:99
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
AVFrame * f
Definition: thread.h:36
int slow_level
Definition: wavpack.h:96
Definition: wvdec.c:32
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int samplesA[MAX_TERM]
Definition: wavpack.h:88
int size
Definition: avcodec.h:1163
#define R2
Definition: simple_idct.c:159
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:131
#define WV_FLT_SHIFT_ONES
Definition: wavpack.h:50
#define MAX_TERMS
Definition: wavpack.h:27
int weightB
Definition: wavpack.h:87
#define WV_HYBRID_BITRATE
Definition: wavpack.h:41
Definition: vf_geq.c:45
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:2727
#define AV_CH_LAYOUT_STEREO
uint32_t CRC
Definition: wavpack.c:50
AVCodec.
Definition: avcodec.h:3181
int ch_offset
Definition: wavpack.c:83
Decorr decorr[MAX_TERMS]
Definition: wavpack.c:58
static int wv_get_value_integer(WavpackFrameContext *s, uint32_t *crc, int S)
Definition: wavpack.c:264
static int get_unary_0_33(GetBitContext *gb)
Get unary code terminated by a 0 with a maximum length of 33.
Definition: unary.h:46
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1993
uint8_t
#define av_cold
Definition: attributes.h:74
AVCodec ff_wavpack_decoder
Definition: wavpack.c:1113
static int wavpack_decode_block(AVCodecContext *avctx, int block_no, AVFrame *frame, const uint8_t *buf, int buf_size)
Definition: wavpack.c:630
Multithreading support functions.
int value
Definition: wavpack.h:85
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:789
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1162
const uint8_t * buffer
Definition: bytestream.h:34
bitstream reader API header.
#define WV_HEADER_SIZE
Definition: wavpack.h:30
#define WV_FLT_ZERO_SIGN
Definition: wavpack.h:54
ptrdiff_t size
Definition: opengl_enc.c:101
int fdec_num
Definition: wavpack.c:79
#define A(x)
Definition: vp56_arith.h:28
#define av_log(a,...)
WavpackFrameContext * fdec[WV_MAX_FRAME_DECODERS]
Definition: wavpack.c:78
#define U(x)
Definition: vp56_arith.h:37
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:588
static int init_thread_copy(AVCodecContext *avctx)
Definition: wavpack.c:600
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define S(s, c, i)
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2623
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:162
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
static av_always_inline int wp_exp2(int16_t val)
Definition: wavpack.h:163
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition: bytestream.h:261
AVCodecContext * avctx
Definition: wavpack.c:46
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:152
#define WV_SINGLE_BLOCK
Definition: wavpack.h:48
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
GLsizei count
Definition: opengl_enc.c:109
Libavcodec external API header.
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2046
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:214
int weightA
Definition: wavpack.h:86
uint32_t crc
Definition: wavpack.c:42
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:630
#define T(x)
Definition: vp56_arith.h:29
audio channel layout utility functions
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2612
signed 32 bits, planar
Definition: samplefmt.h:69
static int wv_unpack_stereo(WavpackFrameContext *s, GetBitContext *gb, void *dst_l, void *dst_r, const int type)
Definition: wavpack.c:383
static const int wv_rates[16]
Definition: wavpack.h:119
#define WV_FALSE_STEREO
Definition: wavpack.h:37
ret
Definition: avfilter.c:974
static void wv_reset_saved_context(WavpackFrameContext *s)
Definition: wavpack.c:362
GLsizei GLboolean const GLfloat * value
Definition: opengl_enc.c:109
static int wv_unpack_mono(WavpackFrameContext *s, GetBitContext *gb, void *dst, const int type)
Definition: wavpack.c:516
int32_t
#define WV_FLT_SHIFT_SAME
Definition: wavpack.h:51
#define FFABS(a)
Definition: common.h:61
float u
#define WV_FLT_SHIFT_SENT
Definition: wavpack.h:52
#define L(x)
Definition: vp56_arith.h:36
int error_limit
Definition: wavpack.h:96
static void flush(AVCodecContext *avctx)
Definition: aacdec.c:514
static av_always_inline int bytestream2_tell(GetByteContext *g)
Definition: bytestream.h:186
int bitrate_acc
Definition: wavpack.h:97
static av_cold int wavpack_decode_end(AVCodecContext *avctx)
Definition: wavpack.c:618
#define GET_MED(n)
Definition: wavpack.h:101
sample_rate
int frame_size
Definition: mxfenc.c:1803
uint32_t crc_extra_bits
Definition: wavpack.c:53
int sample_rate
samples per second
Definition: avcodec.h:1985
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:441
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
Definition: avcodec.h:1241
static float wv_get_value_float(WavpackFrameContext *s, uint32_t *crc, int S)
Definition: wavpack.c:288
int samplesB[MAX_TERM]
Definition: wavpack.h:89
void * buf
Definition: avisynth_c.h:553
#define LEVEL_DECAY(a)
Definition: wavpack.c:86
GLint GLenum type
Definition: opengl_enc.c:105
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:304
SavedContext sc
Definition: wavpack.c:70
#define WV_JOINT_STEREO
Definition: wavpack.h:33
static int wavpack_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: wavpack.c:1047
static int wv_check_crc(WavpackFrameContext *s, uint32_t crc, uint32_t crc_extra_bits)
Definition: wavpack.c:368
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:337
static int wv_get_value(WavpackFrameContext *ctx, GetBitContext *gb, int channel, int *last)
Definition: wavpack.c:136
WvChannel ch[2]
Definition: wavpack.c:68
#define UPDATE_WEIGHT_CLIP(weight, delta, samples, in)
Definition: wavpack.h:106
int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
Return number of bytes per sample.
Definition: samplefmt.c:104
static av_always_inline int get_tail(GetBitContext *gb, int k)
Definition: wavpack.c:88
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:522
common internal api header.
#define CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:866
int offset
Definition: wavpack.c:39
static double c[64]
#define WV_FLT_ZERO_SENT
Definition: wavpack.h:53
int size
Definition: wavpack.c:40
#define INC_MED(n)
Definition: wavpack.h:103
int bits_used
Definition: wavpack.c:41
#define AV_EF_CRCCHECK
Verify checksums embedded in the bitstream (could be of either encoded or decoded data...
Definition: avcodec.h:2620
static av_always_inline int wp_log2(int32_t val)
Definition: wavpack.h:178
GetBitContext gb_extra_bits
Definition: wavpack.c:54
void * priv_data
Definition: avcodec.h:1283
int channels
number of audio channels
Definition: avcodec.h:1986
#define av_log2
Definition: intmath.h:105
AVCodecContext * avctx
Definition: wavpack.c:76
#define WV_MAX_SAMPLES
Definition: wavpack.h:56
#define DEC_MED(n)
Definition: wavpack.h:102
Definition: wavpack.h:83
GetBitContext gb
Definition: wavpack.c:51
#define av_freep(p)
signed 16 bits, planar
Definition: samplefmt.h:68
#define av_always_inline
Definition: attributes.h:37
static av_cold int wv_alloc_frame_context(WavpackContext *c)
Definition: wavpack.c:585
static av_cold int wavpack_decode_init(AVCodecContext *avctx)
Definition: wavpack.c:607
#define WV_MAX_FRAME_DECODERS
Definition: wavpack.c:73
int bitrate_delta
Definition: wavpack.h:97
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:215
#define AV_CH_LAYOUT_MONO
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:85
This structure stores compressed data.
Definition: avcodec.h:1139
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:225
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:250
Definition: vf_geq.c:45
#define t2
Definition: regdef.h:30
static void update_error_limit(WavpackFrameContext *ctx)
Definition: wavpack.c:102
SavedContext extra_sc
Definition: wavpack.c:70