Lines Matching refs:FLAC__int32
81 FLAC__int32 *data[FLAC__MAX_CHANNELS];
148 const FLAC__int32 integer_signal[],
151 FLAC__int32 *residual[2],
166 const FLAC__int32 signal,
174 const FLAC__int32 signal[],
175 FLAC__int32 residual[],
194 const FLAC__int32 signal[],
195 FLAC__int32 residual[],
216 const FLAC__int32 signal[],
224 const FLAC__int32 residual[],
240 const FLAC__int32 residual[],
250 const FLAC__int32 residual[],
260 const FLAC__int32 residual[],
275 static unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples);
280 const FLAC__int32 * const input[],
288 const FLAC__int32 input[],
295 static FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
314 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
315 FLAC__int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
324 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
325 FLAC__int32 *residual_workspace_mid_side[2][2];
350 void (*local_precompute_partition_info_sums)(const FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned bps);
352 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__float residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
353 unsigned (*local_fixed_compute_best_predictor_wide)(const FLAC__int32 data[], unsigned data_len, FLAC__float residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
355 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
356 unsigned (*local_fixed_compute_best_predictor_wide)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
360 void (*local_lpc_compute_residual_from_qlp_coefficients)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
361 void (*local_lpc_compute_residual_from_qlp_coefficients_64bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
362 void (*local_lpc_compute_residual_from_qlp_coefficients_16bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32FLAC__int32 residual[]);
387 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
388 FLAC__int32 *integer_signal_mid_side_unaligned[2];
395 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
396 FLAC__int32 *residual_workspace_mid_side_unaligned[2][2];
421 FLAC__int32 expected;
422 FLAC__int32 got;
1120 if(0 == (encoder->private_->verify.input_fifo.data[i] = safe_malloc_mul_2op_p(sizeof(FLAC__int32), /*times*/encoder->private_->verify.input_fifo.size))) {
1722 FLAC__int32 tukey_parts = (FLAC__int32)strtod(specification+14, 0);
1733 FLAC__int32 m;
1743 FLAC__int32 tukey_parts = (FLAC__int32)strtod(specification+15, 0);
1754 FLAC__int32 m;
1989 FLAC_API void FLAC__stream_encoder_get_verify_decoder_error_stats(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sample, unsigned *frame_number, unsigned *channel, unsigned *sample, FLAC__int32 *expected, FLAC__int32 *got)
2152 FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
2211 FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
2214 FLAC__int32 x, mid, side;
2459 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
2470 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
3070 if(encoder->protected_->do_md5 && !FLAC__MD5Accumulate(&encoder->private_->md5context, (const FLAC__int32 * const *)encoder->private_->integer_signal, encoder->protected_->channels, encoder->protected_->blocksize, (encoder->protected_->bits_per_sample+7) / 8)) {
3371 const FLAC__int32 integer_signal[],
3374 FLAC__int32 *residual[2],
3673 const FLAC__int32 signal,
3696 const FLAC__int32 signal[],
3697 FLAC__int32 residual[],
3758 const FLAC__int32 signal[],
3759 FLAC__int32 residual[],
3777 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; /* WATCHOUT: the size is important; some x86 intrinsic routines need more than lpc order elements */
3828 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
3844 const FLAC__int32 signal[],
3869 const FLAC__int32 residual[],
3965 const FLAC__int32 residual[],
4026 const FLAC__int32 residual[],
4040 FLAC__int32 r;
4087 const FLAC__int32 *residual
4126 const FLAC__int32 residual[],
4316 unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
4319 FLAC__int32 x = 0;
4340 void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
4345 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
4352 FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
4400 FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
4406 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
4413 FLAC__int32 expect = 0, got = 0;
4418 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
4419 got = (FLAC__int32)buffer[channel][i];