/external/flac/libFLAC/include/private/ |
D | lpc.h | 55 void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FLAC__real out[], uns… 125 …ients(const FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], in… 140 …oefficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 141 …cients_wide(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 145 …ts_asm_ia32(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 146 …sm_ia32_mmx(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 168 …e_signal(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 169 …nal_wide(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 173 …asm_ia32(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 174 …ia32_mmx(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … [all …]
|
D | window.h | 53 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L); 54 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L); 55 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L); 56 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L); 57 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L); 58 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L); 59 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev); /* 0.0 <… 60 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L); 61 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L); 62 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L); [all …]
|
D | fixed.h | 55 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__floa… 59 unsigned FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov(const FLAC__int32 data[], unsigned da… 63 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… 65 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixe… 66 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… 80 void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, unsigned order, FLAC… 95 void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, unsigned order, FL…
|
D | bitwriter.h | 83 FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bits); 88 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter); 93 FLAC__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned paramet… 94 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, un…
|
D | memory.h | 48 …__memory_alloc_aligned_int32_array(unsigned elements, FLAC__int32 **unaligned_pointer, FLAC__int32…
|
D | md5.h | 42 FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned …
|
D | float.h | 63 typedef FLAC__int32 FLAC__fixedpoint;
|
D | bitreader.h | 75 FLAC__bool FLAC__bitreader_read_raw_int32(FLAC__BitReader *br, FLAC__int32 *val, unsigned bits);
|
/external/flac/libFLAC/ |
D | window.c | 49 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett() 51 const FLAC__int32 N = L - 1; in FLAC__window_bartlett() 52 FLAC__int32 n; in FLAC__window_bartlett() 68 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett_hann() 70 const FLAC__int32 N = L - 1; in FLAC__window_bartlett_hann() 71 FLAC__int32 n; in FLAC__window_bartlett_hann() 77 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman() 79 const FLAC__int32 N = L - 1; in FLAC__window_blackman() 80 FLAC__int32 n; in FLAC__window_blackman() 87 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman_harris_4term_92db_sidelobe() [all …]
|
D | fixed.c | 224 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__floa… in FLAC__fixed_compute_best_predictor() 226 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixe… in FLAC__fixed_compute_best_predictor() 229 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor() 230 FLAC__int32 last_error_1 = data[-1] - data[-2]; in FLAC__fixed_compute_best_predictor() 231 FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); in FLAC__fixed_compute_best_predictor() 232 FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); in FLAC__fixed_compute_best_predictor() 233 FLAC__int32 error, save; in FLAC__fixed_compute_best_predictor() 282 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide() 284 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide() 287 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor_wide() [all …]
|
D | lpc.c | 56 void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FLAC__real out[], uns… in FLAC__lpc_window_data() 156 …ients(const FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], in… in FLAC__lpc_quantize_coefficients() 160 FLAC__int32 qmax, qmin; in FLAC__lpc_quantize_coefficients() 200 FLAC__int32 q; in FLAC__lpc_quantize_coefficients() 205 q = (FLAC__int32)(error + 0.5); in FLAC__lpc_quantize_coefficients() 207 q = (FLAC__int32)(error - 0.5); in FLAC__lpc_quantize_coefficients() 232 FLAC__int32 q; in FLAC__lpc_quantize_coefficients() 240 q = (FLAC__int32)(error + 0.5); in FLAC__lpc_quantize_coefficients() 242 q = (FLAC__int32)(error - 0.5); in FLAC__lpc_quantize_coefficients() 265 …oefficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients() [all …]
|
D | memory.c | 74 …__memory_alloc_aligned_int32_array(unsigned elements, FLAC__int32 **unaligned_pointer, FLAC__int32… in FLAC__memory_alloc_aligned_int32_array() 76 FLAC__int32 *pu; /* unaligned pointer */ in FLAC__memory_alloc_aligned_int32_array() 78 FLAC__int32 *pa; /* aligned pointer */ in FLAC__memory_alloc_aligned_int32_array() 90 pu = (FLAC__int32*)FLAC__memory_alloc_aligned(sizeof(*pu) * (size_t)elements, &u.pv); in FLAC__memory_alloc_aligned_int32_array()
|
D | stream_encoder.c | 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[], [all …]
|
D | stream_decoder.c | 125 …ntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual, FLAC… 132 …_client_(FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[… 163 …_signal)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 165 …l_64bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 167 …l_16bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 169 …_order8)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 174 FLAC__int32 *output[FLAC__MAX_CHANNELS]; 175 …FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real p… 192 FLAC__int32 *residual_unaligned[FLAC__MAX_CHANNELS]; 1310 FLAC__int32 *tmp; in allocate_output_() [all …]
|
D | md5.c | 277 static void format_input_(FLAC__byte *buf, const FLAC__int32 * const signal[], unsigned channels, u… in format_input_() 280 register FLAC__int32 a_word; in format_input_() 287 memcpy(buf_, signal[0], sizeof(FLAC__int32) * samples); in format_input_() 398 FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned … in FLAC__MD5Accumulate()
|
D | bitwriter.c | 379 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsig… in FLAC__bitwriter_write_raw_int32() 439 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter) in FLAC__bitwriter_rice_bits() 515 FLAC__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned paramet… in FLAC__bitwriter_write_rice_signed() 541 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, un…
|
D | stream_encoder_framing.c | 48 static FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[],… 466 const FLAC__int32 *signal = subframe->data; in FLAC__subframe_add_verbatim() 497 FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[], const … in add_residual_partitioned_rice_()
|
D | metadata_iterators.c | 166 …k_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[… 254 …k_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[… in write_callback_() 1273 …b_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[… in chain_read_ogg_write_cb_()
|
/external/flac/include/FLAC/ |
D | ordinals.h | 44 typedef __int32 FLAC__int32; typedef 51 typedef long FLAC__int32; typedef 58 typedef int32_t FLAC__int32; typedef
|
D | format.h | 284 FLAC__int32 value; /**< The constant signal value. */ 291 const FLAC__int32 *data; /**< A pointer to verbatim signal. */ 304 FLAC__int32 warmup[FLAC__MAX_FIXED_ORDER]; 307 const FLAC__int32 *residual; 327 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; 330 FLAC__int32 warmup[FLAC__MAX_LPC_ORDER]; 333 const FLAC__int32 *residual;
|
D | stream_encoder.h | 1235 …signed *frame_number, unsigned *channel, unsigned *sample, FLAC__int32 *expected, FLAC__int32 *got… 1728 FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * … 1760 …stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsig…
|
D | stream_decoder.h | 682 …k)(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[…
|
/external/flac/libFLAC/ia32/ |
D | fixed_asm.nasm | 43 ; unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 *data, unsigned data_len, FLAC__flo… 45 ; FLAC__int32 last_error_0 = data[-1]; 46 ; FLAC__int32 last_error_1 = data[-1] - data[-2]; 47 ; FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); 48 ; FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); 49 ; FLAC__int32 error, save;
|
D | stream_encoder_asm.nasm | 46 ; const FLAC__int32 residual[], 58 ;; [esp + 4] const FLAC__int32 residual[] 69 ;; [esp + 28] const FLAC__int32 residual[]
|
D | lpc_asm.nasm | 741 …oefficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 1142 …e_signal(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 1145 ; FLAC__int32 sum;
|