Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:FLAC__int32

103 	FLAC__int32 *data[FLAC__MAX_CHANNELS];
168 const FLAC__int32 integer_signal[],
171 FLAC__int32 *residual[2],
186 const FLAC__int32 signal,
194 const FLAC__int32 signal[],
195 FLAC__int32 residual[],
214 const FLAC__int32 signal[],
215 FLAC__int32 residual[],
236 const FLAC__int32 signal[],
244 const FLAC__int32 residual[],
260 const FLAC__int32 residual[],
270 const FLAC__int32 residual[],
280 const FLAC__int32 residual[],
295 static unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples);
300 const FLAC__int32 * const input[],
308 const FLAC__int32 input[],
315 static FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
334 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
335 FLAC__int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
344 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
345 FLAC__int32 *residual_workspace_mid_side[2][2];
371 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__float residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
373 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
377 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[]);
378 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[]);
379 void (*local_lpc_compute_residual_from_qlp_coefficients_16bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
404 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
405 FLAC__int32 *integer_signal_mid_side_unaligned[2];
412 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
413 FLAC__int32 *residual_workspace_mid_side_unaligned[2][2];
438 FLAC__int32 expected;
439 FLAC__int32 got;
997 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)safe_malloc_mul_2op_(sizeof(FLAC__int32), /*times*/encoder->private_->verify.input_fifo.size))) {
1816 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)
1979 FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
2031 FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
2034 FLAC__int32 x, mid, side;
2277 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
2288 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
2878 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)) {
3179 const FLAC__int32 integer_signal[],
3182 FLAC__int32 *residual[2],
3481 const FLAC__int32 signal,
3504 const FLAC__int32 signal[],
3505 FLAC__int32 residual[],
3566 const FLAC__int32 signal[],
3567 FLAC__int32 residual[],
3585 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
3636 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
3652 const FLAC__int32 signal[],
3677 const FLAC__int32 residual[],
3774 const FLAC__int32 residual[],
3784 const FLAC__int32 residual[],
3854 const FLAC__int32 residual[],
3868 FLAC__int32 r;
3915 const FLAC__int32 *residual
3954 const FLAC__int32 residual[],
4117 unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
4120 FLAC__int32 x = 0;
4141 void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
4146 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
4153 void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
4201 FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
4207 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
4214 FLAC__int32 expect = 0, got = 0;
4219 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
4220 got = (FLAC__int32)buffer[channel][i];