Lines Matching defs:shift
51 uint8_t noise_shift; ///< The left shift applied to random noise in 0x31ea substreams.
70 int8_t shift[MAX_CHANNELS]; ///< Left shift to apply to decoded PCM values to get final 24-bit output.
88 uint8_t quant_step_size[MAX_CHANNELS]; ///< left shift to apply to Huffman-decoded residuals
247 if (prev->shift != fp->shift)
308 if (prev_mp->shift[ch] != mp->shift[ch]) {
350 dst->shift = src->shift;
368 dst->shift[channel] = src->shift[channel];
390 dp->matrix_params.shift[channel] = ctx->cur_decoding_params->matrix_params.shift[channel];
834 put_bits(pb, 4, fp->shift );
887 put_sbits(pb, 4, mp->shift[ch]);
1265 dp->quant_step_size[channel] = number_trailing_zeroes(sample_mask[channel]) - mp->shift[channel];
1269 * coefficients, and if it's possible to right-shift their values without
1275 int bits, shift;
1291 for (shift = 0; shift < 7 && bits + shift < 16 && !(coeff_mask & (1<<shift)); shift++);
1294 fp->coeff_shift = shift;
1320 int shift[MLP_MAX_LPC_ORDER];
1330 max_order, 11, coefs, shift, FF_LPC_TYPE_LEVINSON, 0,
1335 fp->shift = shift[order-1];
1420 unsigned int shift = 0;
1459 mp->shift[channel] = shift;
1463 * the third codebook take into account the fact that the sign shift for this
1723 unsigned int filter_shift = fp[FIR]->shift;
1813 unsigned int msb_mask_bits = (ctx->avctx->sample_fmt == AV_SAMPLE_FMT_S16 ? 8 : 0) - mp->shift[mat];