FFmpeg
mpc8.c
Go to the documentation of this file.
1 /*
2  * Musepack SV8 decoder
3  * Copyright (c) 2007 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 /**
23  * @file
24  * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
25  * divided into 32 subbands.
26  */
27 
29 #include "libavutil/lfg.h"
30 #include "libavutil/thread.h"
31 #include "avcodec.h"
32 #include "codec_internal.h"
33 #include "decode.h"
34 #include "get_bits.h"
35 #include "mpegaudiodsp.h"
36 
37 #include "mpc.h"
38 #include "mpc8data.h"
39 #include "mpc8huff.h"
40 
41 static VLC band_vlc, scfi_vlc[2], dscf_vlc[2], res_vlc[2];
42 static VLC q1_vlc, q2_vlc[2], q3_vlc[2], quant_vlc[4][2], q9up_vlc;
43 
44 static inline int mpc8_dec_base(GetBitContext *gb, int k, int n)
45 {
46  int len = mpc8_cnk_len[k-1][n-1] - 1;
47  int code = len ? get_bits_long(gb, len) : 0;
48 
49  if (code >= mpc8_cnk_lost[k-1][n-1])
50  code = ((code << 1) | get_bits1(gb)) - mpc8_cnk_lost[k-1][n-1];
51 
52  return code;
53 }
54 
55 static inline int mpc8_dec_enum(GetBitContext *gb, int k, int n)
56 {
57  int bits = 0;
58  const uint32_t * C = mpc8_cnk[k-1];
59  int code = mpc8_dec_base(gb, k, n);
60 
61  do {
62  n--;
63  if (code >= C[n]) {
64  bits |= 1U << n;
65  code -= C[n];
66  C -= 32;
67  k--;
68  }
69  } while(k > 0);
70 
71  return bits;
72 }
73 
74 static inline int mpc8_get_mod_golomb(GetBitContext *gb, int m)
75 {
76  if(mpc8_cnk_len[0][m] < 1) return 0;
77  return mpc8_dec_base(gb, 1, m+1);
78 }
79 
80 static int mpc8_get_mask(GetBitContext *gb, int size, int t)
81 {
82  int mask = 0;
83 
84  if(t && t != size)
85  mask = mpc8_dec_enum(gb, FFMIN(t, size - t), size);
86  if((t << 1) > size) mask = ~mask;
87 
88  return mask;
89 }
90 
91 static av_cold void build_vlc(VLC *vlc, unsigned *buf_offset,
92  const uint8_t codes_counts[16],
93  const uint8_t **syms, int offset)
94 {
95  static VLCElem vlc_buf[9296];
96  uint8_t len[MPC8_MAX_VLC_SIZE];
97  unsigned num = 0;
98 
99  vlc->table = &vlc_buf[*buf_offset];
100  vlc->table_allocated = FF_ARRAY_ELEMS(vlc_buf) - *buf_offset;
101 
102  for (int i = 16; i > 0; i--)
103  for (unsigned tmp = num + codes_counts[i - 1]; num < tmp; num++)
104  len[num] = i;
105 
106  ff_vlc_init_from_lengths(vlc, FFMIN(len[0], 9), num, len, 1,
107  *syms, 1, 1, offset, VLC_INIT_STATIC_OVERLONG, NULL);
108  *buf_offset += vlc->table_size;
109  *syms += num;
110 }
111 
112 static av_cold void mpc8_init_static(void)
113 {
114  const uint8_t *q_syms = mpc8_q_syms, *bands_syms = mpc8_bands_syms;
115  const uint8_t *res_syms = mpc8_res_syms, *scfi_syms = mpc8_scfi_syms;
116  const uint8_t *dscf_syms = mpc8_dscf_syms;
117  unsigned offset = 0;
118 
119  build_vlc(&band_vlc, &offset, mpc8_bands_len_counts, &bands_syms, 0);
120 
121  build_vlc(&q1_vlc, &offset, mpc8_q1_len_counts, &q_syms, 0);
123 
124  for (int i = 0; i < 2; i++){
125  build_vlc(&scfi_vlc[i], &offset, mpc8_scfi_len_counts[i], &scfi_syms, 0);
126 
127  build_vlc(&dscf_vlc[i], &offset, mpc8_dscf_len_counts[i], &dscf_syms, 0);
128 
129  build_vlc(&res_vlc[i], &offset, mpc8_res_len_counts[i], &res_syms, 0);
130 
131  build_vlc(&q2_vlc[i], &offset, mpc8_q2_len_counts[i], &q_syms, 0);
133  &q_syms, -48 - 16 * i);
134  for (int j = 0; j < 4; j++)
136  &q_syms, -((8 << j) - 1));
137  }
139 }
140 
142 {
143  static AVOnce init_static_once = AV_ONCE_INIT;
144  MPCContext *c = avctx->priv_data;
145  GetBitContext gb;
146  int channels;
147 
148  if(avctx->extradata_size < 2){
149  av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size);
150  return -1;
151  }
152  memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
153  av_lfg_init(&c->rnd, 0xDEADBEEF);
154  ff_mpadsp_init(&c->mpadsp);
155 
156  init_get_bits(&gb, avctx->extradata, 16);
157 
158  uint8_t sample_rate_idx = get_bits(&gb, 3);
159  static const int sample_rates[] = { 44100, 48000, 37800, 32000 };
160  if (sample_rate_idx >= FF_ARRAY_ELEMS(sample_rates)) {
161  av_log(avctx, AV_LOG_ERROR, "invalid sample rate index (%u)\n", sample_rate_idx);
162  return AVERROR_INVALIDDATA;
163  }
164  avctx->sample_rate = sample_rates[sample_rate_idx];
165  c->maxbands = get_bits(&gb, 5) + 1;
166  if (c->maxbands >= BANDS) {
167  av_log(avctx,AV_LOG_ERROR, "maxbands %d too high\n", c->maxbands);
168  return AVERROR_INVALIDDATA;
169  }
170  channels = get_bits(&gb, 4) + 1;
171  if (channels > 2) {
172  avpriv_request_sample(avctx, "Multichannel MPC SV8");
173  return AVERROR_PATCHWELCOME;
174  }
175  c->MSS = get_bits1(&gb);
176  c->frames = 1 << (get_bits(&gb, 3) * 2);
177 
181 
182  ff_thread_once(&init_static_once, mpc8_init_static);
183 
184  return 0;
185 }
186 
188  int *got_frame_ptr, AVPacket *avpkt)
189 {
190  const uint8_t *buf = avpkt->data;
191  int buf_size = avpkt->size;
192  MPCContext *c = avctx->priv_data;
193  GetBitContext gb2, *gb = &gb2;
194  int i, j, k, ch, cnt, res, t;
195  Band *bands = c->bands;
196  int off;
197  int maxband, keyframe;
198  int last[2];
199 
200  keyframe = c->cur_frame == 0;
201 
202  if(keyframe){
203  memset(c->Q, 0, sizeof(c->Q));
204  c->last_bits_used = 0;
205  }
206  if ((res = init_get_bits8(gb, buf, buf_size)) < 0)
207  return res;
208 
209  skip_bits(gb, c->last_bits_used & 7);
210 
211  if(keyframe)
212  maxband = mpc8_get_mod_golomb(gb, c->maxbands + 1);
213  else{
214  maxband = c->last_max_band + get_vlc2(gb, band_vlc.table, MPC8_BANDS_BITS, 2);
215  if(maxband > 32) maxband -= 33;
216  }
217 
218  if (get_bits_left(gb) < 0) {
219  *got_frame_ptr = 0;
220  return buf_size;
221  }
222 
223  if(maxband > c->maxbands + 1) {
224  av_log(avctx, AV_LOG_ERROR, "maxband %d too large\n",maxband);
225  return AVERROR_INVALIDDATA;
226  }
227  c->last_max_band = maxband;
228 
229  /* read subband indexes */
230  if(maxband){
231  last[0] = last[1] = 0;
232  for(i = maxband - 1; i >= 0; i--){
233  for(ch = 0; ch < 2; ch++){
234  last[ch] = get_vlc2(gb, res_vlc[last[ch] > 2].table, MPC8_RES_BITS, 2) + last[ch];
235  if(last[ch] > 15) last[ch] -= 17;
236  bands[i].res[ch] = last[ch];
237  }
238  }
239  if(c->MSS){
240  int mask;
241 
242  cnt = 0;
243  for(i = 0; i < maxband; i++)
244  if(bands[i].res[0] || bands[i].res[1])
245  cnt++;
246  t = mpc8_get_mod_golomb(gb, cnt);
247  mask = mpc8_get_mask(gb, cnt, t);
248  for(i = maxband - 1; i >= 0; i--)
249  if(bands[i].res[0] || bands[i].res[1]){
250  bands[i].msf = mask & 1;
251  mask >>= 1;
252  }
253  }
254  }
255  for(i = maxband; i < c->maxbands; i++)
256  bands[i].res[0] = bands[i].res[1] = 0;
257 
258  if(keyframe){
259  for(i = 0; i < 32; i++)
260  c->oldDSCF[0][i] = c->oldDSCF[1][i] = 1;
261  }
262 
263  for(i = 0; i < maxband; i++){
264  if(bands[i].res[0] || bands[i].res[1]){
265  cnt = !!bands[i].res[0] + !!bands[i].res[1] - 1;
266  if(cnt >= 0){
267  t = get_vlc2(gb, scfi_vlc[cnt].table, scfi_vlc[cnt].bits, 1);
268  if(bands[i].res[0]) bands[i].scfi[0] = t >> (2 * cnt);
269  if(bands[i].res[1]) bands[i].scfi[1] = t & 3;
270  }
271  }
272  }
273 
274  for(i = 0; i < maxband; i++){
275  for(ch = 0; ch < 2; ch++){
276  if(!bands[i].res[ch]) continue;
277 
278  if(c->oldDSCF[ch][i]){
279  bands[i].scf_idx[ch][0] = get_bits(gb, 7) - 6;
280  c->oldDSCF[ch][i] = 0;
281  }else{
282  t = get_vlc2(gb, dscf_vlc[1].table, MPC8_DSCF1_BITS, 2);
283  if(t == 64)
284  t += get_bits(gb, 6);
285  bands[i].scf_idx[ch][0] = ((bands[i].scf_idx[ch][2] + t - 25) & 0x7F) - 6;
286  }
287  for(j = 0; j < 2; j++){
288  if((bands[i].scfi[ch] << j) & 2)
289  bands[i].scf_idx[ch][j + 1] = bands[i].scf_idx[ch][j];
290  else{
291  t = get_vlc2(gb, dscf_vlc[0].table, MPC8_DSCF0_BITS, 2);
292  if(t == 31)
293  t = 64 + get_bits(gb, 6);
294  bands[i].scf_idx[ch][j + 1] = ((bands[i].scf_idx[ch][j] + t - 25) & 0x7F) - 6;
295  }
296  }
297  }
298  }
299 
300  for(i = 0, off = 0; i < maxband; i++, off += SAMPLES_PER_BAND){
301  for(ch = 0; ch < 2; ch++){
302  res = bands[i].res[ch];
303  switch(res){
304  case -1:
305  for(j = 0; j < SAMPLES_PER_BAND; j++)
306  c->Q[ch][off + j] = (av_lfg_get(&c->rnd) & 0x3FC) - 510;
307  break;
308  case 0:
309  break;
310  case 1:
311  for(j = 0; j < SAMPLES_PER_BAND; j += SAMPLES_PER_BAND / 2){
312  cnt = get_vlc2(gb, q1_vlc.table, MPC8_Q1_BITS, 2);
313  t = mpc8_get_mask(gb, 18, cnt);
314  for(k = 0; k < SAMPLES_PER_BAND / 2; k++)
315  c->Q[ch][off + j + k] = t & (1 << (SAMPLES_PER_BAND / 2 - k - 1))
316  ? (get_bits1(gb) << 1) - 1 : 0;
317  }
318  break;
319  case 2:
320  cnt = 6;//2*mpc8_thres[res]
321  for(j = 0; j < SAMPLES_PER_BAND; j += 3){
322  t = get_vlc2(gb, q2_vlc[cnt > 3].table, MPC8_Q2_BITS, 2);
323  c->Q[ch][off + j + 0] = mpc8_idx50[t];
324  c->Q[ch][off + j + 1] = mpc8_idx51[t];
325  c->Q[ch][off + j + 2] = mpc8_idx52[t];
326  cnt = (cnt >> 1) + mpc8_huffq2[t];
327  }
328  break;
329  case 3:
330  case 4:
331  for(j = 0; j < SAMPLES_PER_BAND; j += 2){
332  t = get_vlc2(gb, q3_vlc[res - 3].table, MPC8_Q3_BITS, 2);
333  c->Q[ch][off + j + 1] = t >> 4;
334  c->Q[ch][off + j + 0] = sign_extend(t, 4);
335  }
336  break;
337  case 5:
338  case 6:
339  case 7:
340  case 8:
341  cnt = 2 * mpc8_thres[res];
342  for(j = 0; j < SAMPLES_PER_BAND; j++){
343  const VLC *vlc = &quant_vlc[res - 5][cnt > mpc8_thres[res]];
344  c->Q[ch][off + j] = get_vlc2(gb, vlc->table, vlc->bits, 2);
345  cnt = (cnt >> 1) + FFABS(c->Q[ch][off + j]);
346  }
347  break;
348  default:
349  for(j = 0; j < SAMPLES_PER_BAND; j++){
350  c->Q[ch][off + j] = get_vlc2(gb, q9up_vlc.table, MPC8_Q9UP_BITS, 2);
351  if(res != 9){
352  c->Q[ch][off + j] <<= res - 9;
353  c->Q[ch][off + j] |= get_bits(gb, res - 9);
354  }
355  c->Q[ch][off + j] -= (1 << (res - 2)) - 1;
356  }
357  }
358  }
359  }
360 
361  frame->nb_samples = MPC_FRAME_SIZE;
362  if ((res = ff_get_buffer(avctx, frame, 0)) < 0)
363  return res;
364 
365  ff_mpc_dequantize_and_synth(c, maxband - 1,
366  (int16_t **)frame->extended_data,
367  avctx->ch_layout.nb_channels);
368 
369  c->cur_frame++;
370 
371  c->last_bits_used = get_bits_count(gb);
372  if(c->cur_frame >= c->frames)
373  c->cur_frame = 0;
374  if (get_bits_left(gb) < 0) {
375  av_log(avctx, AV_LOG_ERROR, "Overread %d\n", -get_bits_left(gb));
376  c->last_bits_used = buf_size << 3;
377  } else if (c->cur_frame == 0 && get_bits_left(gb) < 8) {// we have only padding left
378  c->last_bits_used = buf_size << 3;
379  }
380 
381  *got_frame_ptr = 1;
382 
383  return c->cur_frame ? c->last_bits_used >> 3 : buf_size;
384 }
385 
387 {
388  MPCContext *c = avctx->priv_data;
389  c->cur_frame = 0;
390 }
391 
393  .p.name = "mpc8",
394  CODEC_LONG_NAME("Musepack SV8"),
395  .p.type = AVMEDIA_TYPE_AUDIO,
396  .p.id = AV_CODEC_ID_MUSEPACK8,
397  .priv_data_size = sizeof(MPCContext),
400  .flush = mpc8_decode_flush,
401  .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
403 };
mpc8_init_static
static av_cold void mpc8_init_static(void)
Definition: mpc8.c:112
q1_vlc
static VLC q1_vlc
Definition: mpc8.c:42
MPC8_Q9UP_BITS
#define MPC8_Q9UP_BITS
Definition: mpc8huff.h:93
ff_vlc_init_from_lengths
int ff_vlc_init_from_lengths(VLC *vlc, int nb_bits, int nb_codes, const int8_t *lens, int lens_wrap, const void *symbols, int symbols_wrap, int symbols_size, int offset, int flags, void *logctx)
Build VLC decoding tables suitable for use with get_vlc2()
Definition: vlc.c:306
get_bits_left
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:689
mpc8data.h
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1024
av_lfg_init
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
Definition: lfg.c:32
thread.h
mpc8_decode_flush
static av_cold void mpc8_decode_flush(AVCodecContext *avctx)
Definition: mpc8.c:386
get_bits_long
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:419
mpc8_dscf_len_counts
static const uint8_t mpc8_dscf_len_counts[2][16]
Definition: mpc8huff.h:68
get_bits_count
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:250
ff_mpadsp_init
av_cold void ff_mpadsp_init(MPADSPContext *s)
Definition: mpegaudiodsp.c:81
mask
int mask
Definition: mediacodecdec_common.c:154
mpc8_dec_base
static int mpc8_dec_base(GetBitContext *gb, int k, int n)
Definition: mpc8.c:44
sample_rates
static const int sample_rates[]
Definition: dcaenc.h:34
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
AVPacket::data
uint8_t * data
Definition: packet.h:558
table
static const uint16_t table[]
Definition: prosumer.c:203
MPCContext
Definition: mpc.h:54
FFCodec
Definition: codec_internal.h:127
scfi_vlc
static VLC scfi_vlc[2]
Definition: mpc8.c:41
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:512
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:379
mpc8huff.h
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:333
build_vlc
static av_cold void build_vlc(VLC *vlc, unsigned *buf_offset, const uint8_t codes_counts[16], const uint8_t **syms, int offset)
Definition: mpc8.c:91
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1039
MPC8_RES_BITS
#define MPC8_RES_BITS
Definition: mpc8huff.h:73
mpc8_get_mod_golomb
static int mpc8_get_mod_golomb(GetBitContext *gb, int m)
Definition: mpc8.c:74
GetBitContext
Definition: get_bits.h:109
mpc8_get_mask
static int mpc8_get_mask(GetBitContext *gb, int size, int t)
Definition: mpc8.c:80
ff_mpc_dequantize_and_synth
void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, int16_t **out, int channels)
Definition: mpc.c:55
mpc8_q2_len_counts
static const uint8_t mpc8_q2_len_counts[2][16]
Definition: mpc8huff.h:101
mpc8_scfi_len_counts
static const uint8_t mpc8_scfi_len_counts[2][16]
Definition: mpc8huff.h:47
mpc8_cnk_lost
static const uint32_t mpc8_cnk_lost[16][33]
Definition: mpc8data.h:101
mpc8_cnk_len
static const uint8_t mpc8_cnk_len[16][33]
Definition: mpc8data.h:80
C
s EdgeDetect Foobar g libavfilter vf_edgedetect c libavfilter vf_foobar c edit libavfilter and add an entry for foobar following the pattern of the other filters edit libavfilter allfilters and add an entry for foobar following the pattern of the other filters configure make j< whatever > ffmpeg ffmpeg i you should get a foobar png with Lena edge detected That s your new playground is ready Some little details about what s going which in turn will define variables for the build system and the C
Definition: writing_filters.txt:58
mpc8_q5_8_len_counts
static const uint8_t mpc8_q5_8_len_counts[2][4][16]
Definition: mpc8huff.h:114
ff_thread_once
static int ff_thread_once(char *control, void(*routine)(void))
Definition: thread.h:205
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:106
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:539
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:515
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:346
av_lfg_get
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
Definition: lfg.h:53
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
lfg.h
bits
uint8_t bits
Definition: vp3data.h:128
mpc8_idx52
static const int8_t mpc8_idx52[125]
Definition: mpc8data.h:41
channels
channels
Definition: aptx.h:31
decode.h
get_bits.h
bands
static const float bands[]
Definition: af_superequalizer.c:56
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:331
tmp
static uint8_t tmp[40]
Definition: aes_ctr.c:52
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:74
MPC8_Q1_BITS
#define MPC8_Q1_BITS
Definition: mpc8huff.h:87
mpc.h
AV_ONCE_INIT
#define AV_ONCE_INIT
Definition: thread.h:203
mpc8_bands_len_counts
static const uint8_t mpc8_bands_len_counts[16]
Definition: mpc8huff.h:36
mpc8_q1_len_counts
static const uint8_t mpc8_q1_len_counts[16]
Definition: mpc8huff.h:89
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
ff_mpa_synth_init_fixed
void ff_mpa_synth_init_fixed(void)
MPC_FRAME_SIZE
#define MPC_FRAME_SIZE
Definition: mpc.h:43
ff_mpc8_decoder
const FFCodec ff_mpc8_decoder
Definition: mpc8.c:392
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:386
mpc8_huffq2
static const int8_t mpc8_huffq2[5 *5 *5]
Definition: mpc8data.h:50
get_vlc2
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table, int bits, int max_depth)
Parse a vlc code.
Definition: get_bits.h:646
quant_vlc
static VLC quant_vlc[4][2]
Definition: mpc8.c:42
AVOnce
#define AVOnce
Definition: thread.h:202
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
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:91
VLC::table_allocated
int table_allocated
Definition: vlc.h:53
mpc8_q34_len_counts
static const uint8_t mpc8_q34_len_counts[2][16]
Definition: mpc8huff.h:109
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1720
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:368
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
MPC8_Q3_BITS
#define MPC8_Q3_BITS
Definition: mpc8huff.h:106
AVPacket::size
int size
Definition: packet.h:559
mpc8_thres
static const unsigned int mpc8_thres[]
Definition: mpc8data.h:49
mpc8_bands_syms
static const uint8_t mpc8_bands_syms[MPC8_BANDS_SIZE]
Definition: mpc8huff.h:32
codec_internal.h
mpc8_q_syms
static const uint8_t mpc8_q_syms[]
Definition: mpc8huff.h:129
band_vlc
static VLC band_vlc
Definition: mpc8.c:41
SAMPLES_PER_BAND
#define SAMPLES_PER_BAND
Definition: mpc.h:42
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1031
size
int size
Definition: twinvq_data.h:10344
VLCElem
Definition: vlc.h:32
MPC8_Q2_BITS
#define MPC8_Q2_BITS
Definition: mpc8huff.h:99
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
CODEC_SAMPLEFMTS
#define CODEC_SAMPLEFMTS(...)
Definition: codec_internal.h:385
mpc8_cnk
static const uint32_t mpc8_cnk[16][32]
Definition: mpc8data.h:60
AV_SAMPLE_FMT_S16P
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition: samplefmt.h:64
av_channel_layout_default
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
Definition: channel_layout.c:839
q9up_vlc
static VLC q9up_vlc
Definition: mpc8.c:42
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
code
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some it can consider them to be part of the FIFO and delay acknowledging a status change accordingly Example code
Definition: filter_design.txt:178
AVCodecContext::extradata
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition: avcodec.h:514
BANDS
#define BANDS
Definition: imc.c:57
mpc8_res_syms
static const uint8_t mpc8_res_syms[]
Definition: mpc8huff.h:75
mpc8_dec_enum
static int mpc8_dec_enum(GetBitContext *gb, int k, int n)
Definition: mpc8.c:55
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
mpc8_dscf_syms
static const uint8_t mpc8_dscf_syms[]
Definition: mpc8huff.h:55
MPC8_DSCF1_BITS
#define MPC8_DSCF1_BITS
Definition: mpc8huff.h:53
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
len
int len
Definition: vorbis_enc_data.h:426
res_vlc
static VLC res_vlc[2]
Definition: mpc8.c:41
avcodec.h
q3_vlc
static VLC q3_vlc[2]
Definition: mpc8.c:42
VLC::bits
int bits
Definition: vlc.h:51
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:265
AV_CODEC_ID_MUSEPACK8
@ AV_CODEC_ID_MUSEPACK8
Definition: codec_id.h:493
dscf_vlc
static VLC dscf_vlc[2]
Definition: mpc8.c:41
U
#define U(x)
Definition: vpx_arith.h:37
mpc8_decode_init
static av_cold int mpc8_decode_init(AVCodecContext *avctx)
Definition: mpc8.c:141
AVCodecContext
main external API structure.
Definition: avcodec.h:431
VLC_INIT_STATIC_OVERLONG
#define VLC_INIT_STATIC_OVERLONG
Definition: vlc.h:191
mpc8_res_len_counts
static const uint8_t mpc8_res_len_counts[2][16]
Definition: mpc8huff.h:82
channel_layout.h
Band
Subband structure - hold all variables for each subband.
Definition: mpc.h:46
mpc8_idx50
static const int8_t mpc8_idx50[125]
Definition: mpc8data.h:27
MPC8_DSCF0_BITS
#define MPC8_DSCF0_BITS
Definition: mpc8huff.h:52
VLC
Definition: vlc.h:50
MPC8_BANDS_BITS
#define MPC8_BANDS_BITS
Definition: mpc8huff.h:30
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:442
sign_extend
static av_const int sign_extend(int val, unsigned bits)
Definition: mathops.h:132
mpc8_q9up_len_counts
static const uint8_t mpc8_q9up_len_counts[16]
Definition: mpc8huff.h:95
VLC::table
VLCElem * table
Definition: vlc.h:52
VLC::table_size
int table_size
Definition: vlc.h:53
mpegaudiodsp.h
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
AVPacket
This structure stores compressed data.
Definition: packet.h:535
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:458
MPC8_MAX_VLC_SIZE
#define MPC8_MAX_VLC_SIZE
Definition: mpc8huff.h:27
mpc8_scfi_syms
static const uint8_t mpc8_scfi_syms[]
Definition: mpc8huff.h:40
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
mpc8_idx51
static const int8_t mpc8_idx51[125]
Definition: mpc8data.h:34
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
mpc8_decode_frame
static int mpc8_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition: mpc8.c:187
q2_vlc
static VLC q2_vlc[2]
Definition: mpc8.c:42