Lines Matching defs:bps
90 static inline unsigned int decode_scalar(GetBitContext *gb, int k, int bps)
96 x = get_bits_long(gb, bps);
113 int nb_samples, int bps, int rice_history_mult)
129 x = decode_scalar(&alac->gb, k, bps);
175 int nb_samples, int bps, int16_t *lpc_coefs,
197 bps);
204 buffer_out[i] = sign_extend(buffer_out[i - 1] + error_buffer[i], bps);
220 buffer_out[i] = sign_extend(val, bps);
241 int has_size, bps, is_compressed, decorr_shift, decorr_left_weight, ret;
252 bps = alac->sample_size - alac->extra_bits + channels - 1;
253 if (bps > 32) {
254 avpriv_report_missing_feature(avctx, "bps %d", bps);
257 if (bps < 1)
331 alac->nb_samples, bps,
347 alac->nb_samples, bps, NULL, 31, 0);
354 bps, lpc_coefs[ch], lpc_order[ch], lpc_quant[ch]);