/external/flac/libFLAC/include/private/ |
D | lpc.h | 57 void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FLAC__real out[], uns… 139 …ients(const FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], in… 154 …oefficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 155 …cients_wide(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 159 …ts_asm_ia32(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 160 …sm_ia32_mmx(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 161 …de_asm_ia32(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 166 …intrin_sse2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 167 …intrin_sse2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… 170 …ntrin_sse41(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… [all …]
|
D | window.h | 54 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L); 55 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L); 56 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L); 57 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L); 58 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L); 59 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L); 60 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev); /* 0.0 <… 61 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L); 62 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L); 63 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L); [all …]
|
D | fixed.h | 57 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__floa… 58 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… 62 unsigned FLAC__fixed_compute_best_predictor_intrin_sse2(const FLAC__int32 data[], unsigned data_len… 63 unsigned FLAC__fixed_compute_best_predictor_wide_intrin_sse2(const FLAC__int32 data[], unsigned dat… 66 unsigned FLAC__fixed_compute_best_predictor_intrin_ssse3(const FLAC__int32 data[], unsigned data_le… 67 unsigned FLAC__fixed_compute_best_predictor_wide_intrin_ssse3(const FLAC__int32 data[], unsigned da… 71 unsigned FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov(const FLAC__int32 data[], unsigned da… 75 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixe… 76 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… 90 void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, unsigned order, FLAC… [all …]
|
D | stream_encoder.h | 51 extern void FLAC__precompute_partition_info_sums_intrin_sse2(const FLAC__int32 residual[], FLAC__ui… 56 extern void FLAC__precompute_partition_info_sums_intrin_ssse3(const FLAC__int32 residual[], FLAC__u… 61 extern void FLAC__precompute_partition_info_sums_intrin_avx2(const FLAC__int32 residual[], FLAC__ui…
|
D | bitwriter.h | 84 FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bits); 89 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter); 94 FLAC__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned paramet… 95 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, un…
|
D | md5.h | 34 FLAC__int32 *p32; 48 FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned …
|
D | memory.h | 49 …AC__memory_alloc_aligned_int32_array(size_t elements, FLAC__int32 **unaligned_pointer, FLAC__int32…
|
D | float.h | 64 typedef FLAC__int32 FLAC__fixedpoint;
|
D | bitreader.h | 76 FLAC__bool FLAC__bitreader_read_raw_int32(FLAC__BitReader *br, FLAC__int32 *val, unsigned bits);
|
/external/flac/libFLAC/ |
D | window.c | 46 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett() 48 const FLAC__int32 N = L - 1; in FLAC__window_bartlett() 49 FLAC__int32 n; in FLAC__window_bartlett() 65 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett_hann() 67 const FLAC__int32 N = L - 1; in FLAC__window_bartlett_hann() 68 FLAC__int32 n; in FLAC__window_bartlett_hann() 74 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman() 76 const FLAC__int32 N = L - 1; in FLAC__window_blackman() 77 FLAC__int32 n; in FLAC__window_blackman() 84 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 | 217 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__floa… in FLAC__fixed_compute_best_predictor() 219 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixe… in FLAC__fixed_compute_best_predictor() 222 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor() 223 FLAC__int32 last_error_1 = data[-1] - data[-2]; in FLAC__fixed_compute_best_predictor() 224 FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); in FLAC__fixed_compute_best_predictor() 225 FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); in FLAC__fixed_compute_best_predictor() 226 FLAC__int32 error, save; in FLAC__fixed_compute_best_predictor() 275 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide() 277 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide() 280 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor_wide() [all …]
|
D | lpc.c | 67 void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FLAC__real out[], uns… in FLAC__lpc_window_data() 167 …ients(const FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], in… in FLAC__lpc_quantize_coefficients() 171 FLAC__int32 qmax, qmin; in FLAC__lpc_quantize_coefficients() 211 FLAC__int32 q; in FLAC__lpc_quantize_coefficients() 237 FLAC__int32 q; in FLAC__lpc_quantize_coefficients() 268 …st FLAC__int32 * flac_restrict data, unsigned data_len, const FLAC__int32 * flac_restrict qlp_coef… in FLAC__lpc_compute_residual_from_qlp_coefficients() 273 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients() 274 const FLAC__int32 *history; in FLAC__lpc_compute_residual_from_qlp_coefficients() 308 FLAC__int32 sum; 528 …st FLAC__int32 * flac_restrict data, unsigned data_len, const FLAC__int32 * flac_restrict qlp_coef… in FLAC__lpc_compute_residual_from_qlp_coefficients_wide() [all …]
|
D | stream_encoder.c | 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[], [all …]
|
D | memory.c | 62 …AC__memory_alloc_aligned_int32_array(size_t elements, FLAC__int32 **unaligned_pointer, FLAC__int32… in FLAC__memory_alloc_aligned_int32_array() 64 FLAC__int32 *pu; /* unaligned pointer */ in FLAC__memory_alloc_aligned_int32_array() 66 FLAC__int32 *pa; /* aligned pointer */ in FLAC__memory_alloc_aligned_int32_array()
|
D | stream_decoder.c | 102 …ntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual, FLAC… 109 …_client_(FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[… 140 …_signal)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 142 …l_64bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 144 …l_16bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … 148 FLAC__int32 *output[FLAC__MAX_CHANNELS]; 149 …FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real p… 166 FLAC__int32 *residual_unaligned[FLAC__MAX_CHANNELS]; 1282 FLAC__int32 *tmp; in allocate_output_() 1310 tmp = safe_malloc_muladd2_(sizeof(FLAC__int32), /*times (*/size, /*+*/4/*)*/); in allocate_output_() [all …]
|
D | bitwriter.c | 344 inline FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bi… in FLAC__bitwriter_write_raw_int32() 404 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter) in FLAC__bitwriter_rice_bits() 480 FLAC__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned paramet… in FLAC__bitwriter_write_rice_signed() 506 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, un… in FLAC__bitwriter_write_rice_signed_block() 840 extern FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bi…
|
D | md5.c | 274 static void format_input_(FLAC__multibyte *mbuf, const FLAC__int32 * const signal[], unsigned chann… in format_input_() 278 FLAC__int32 *buf32 = mbuf->p32; in format_input_() 279 FLAC__int32 a_word; in format_input_() 491 FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned … in FLAC__MD5Accumulate()
|
D | stream_encoder_framing.c | 44 static FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[],… 462 const FLAC__int32 *signal = subframe->data; in FLAC__subframe_add_verbatim() 493 FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[], const … in add_residual_partitioned_rice_()
|
/external/flac/include/FLAC/ |
D | format.h | 285 FLAC__int32 value; /**< The constant signal value. */ 292 const FLAC__int32 *data; /**< A pointer to verbatim signal. */ 305 FLAC__int32 warmup[FLAC__MAX_FIXED_ORDER]; 308 const FLAC__int32 *residual; 328 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; 331 FLAC__int32 warmup[FLAC__MAX_LPC_ORDER]; 334 const FLAC__int32 *residual;
|
D | ordinals.h | 46 typedef __int32 FLAC__int32; typedef 62 typedef int32_t FLAC__int32; typedef
|
D | stream_encoder.h | 1257 …signed *frame_number, unsigned *channel, unsigned *sample, FLAC__int32 *expected, FLAC__int32 *got… 1750 FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * … 1782 …stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsig…
|
D | stream_decoder.h | 683 …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;
|