Home
last modified time | relevance | path

Searched refs:FLAC__int32 (Results 1 – 25 of 34) sorted by relevance

12

/external/flac/libFLAC/include/private/
Dlpc.h57 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 …]
Dwindow.h54 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 …]
Dfixed.h57 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, float resi…
58 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, float…
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 …]
Dstream_encoder.h51 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…
Dbitwriter.h84 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…
Dmd5.h34 FLAC__int32 *p32;
48 FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned …
Dmemory.h49 …AC__memory_alloc_aligned_int32_array(size_t elements, FLAC__int32 **unaligned_pointer, FLAC__int32
Dfloat.h61 typedef FLAC__int32 FLAC__fixedpoint;
/external/flac/libFLAC/
Dwindow.c46 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 …]
Dfixed.c217 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, float resi… 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, float… 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 …]
Dlpc.c66 void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FLAC__real out[], uns… in FLAC__lpc_window_data()
166 …ients(const FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], in… in FLAC__lpc_quantize_coefficients()
170 FLAC__int32 qmax, qmin; in FLAC__lpc_quantize_coefficients()
210 FLAC__int32 q; in FLAC__lpc_quantize_coefficients()
236 FLAC__int32 q; in FLAC__lpc_quantize_coefficients()
267 …st FLAC__int32 * flac_restrict data, unsigned data_len, const FLAC__int32 * flac_restrict qlp_coef… in FLAC__lpc_compute_residual_from_qlp_coefficients()
272 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients()
273 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 …]
Dstream_encoder.c85 FLAC__int32 *data[FLAC__MAX_CHANNELS];
152 const FLAC__int32 integer_signal[],
155 FLAC__int32 *residual[2],
170 const FLAC__int32 signal,
178 const FLAC__int32 signal[],
179 FLAC__int32 residual[],
198 const FLAC__int32 signal[],
199 FLAC__int32 residual[],
220 const FLAC__int32 signal[],
228 const FLAC__int32 residual[],
[all …]
Dmemory.c62 …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()
Dfixed_intrin_ssse3.c58 unsigned FLAC__fixed_compute_best_predictor_intrin_ssse3(const FLAC__int32 data[], unsigned data_le… in FLAC__fixed_compute_best_predictor_intrin_ssse3()
66 FLAC__int32 itmp; in FLAC__fixed_compute_best_predictor_intrin_ssse3()
149 unsigned FLAC__fixed_compute_best_predictor_wide_intrin_ssse3(const FLAC__int32 data[], unsigned da… in FLAC__fixed_compute_best_predictor_wide_intrin_ssse3()
157 FLAC__int32 itmp; in FLAC__fixed_compute_best_predictor_wide_intrin_ssse3()
Dfixed_intrin_sse2.c58 unsigned FLAC__fixed_compute_best_predictor_intrin_sse2(const FLAC__int32 data[], unsigned data_len… in FLAC__fixed_compute_best_predictor_intrin_sse2()
66 FLAC__int32 itmp; in FLAC__fixed_compute_best_predictor_intrin_sse2()
155 unsigned FLAC__fixed_compute_best_predictor_wide_intrin_sse2(const FLAC__int32 data[], unsigned dat… in FLAC__fixed_compute_best_predictor_wide_intrin_sse2()
163 FLAC__int32 itmp; in FLAC__fixed_compute_best_predictor_wide_intrin_sse2()
Dstream_decoder.c96 …ntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual, FLAC…
103 …_client_(FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[…
132 …_signal)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned …
134 …l_64bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned …
136 …l_16bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned …
140 FLAC__int32 *output[FLAC__MAX_CHANNELS];
141FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real p…
158 FLAC__int32 *residual_unaligned[FLAC__MAX_CHANNELS];
1269 FLAC__int32 *tmp; in allocate_output_()
1294 tmp = safe_malloc_muladd2_(sizeof(FLAC__int32), /*times (*/size, /*+*/4/*)*/); in allocate_output_()
[all …]
Dlpc_intrin_sse2.c57 …intrin_sse2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_16_intrin_sse2()
60 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients_16_intrin_sse2()
411 …intrin_sse2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_intrin_sse2()
895 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients_intrin_sse2()
940 …rin_sse2(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … in FLAC__lpc_restore_signal_16_intrin_sse2()
953 FLAC__int32 curr; in FLAC__lpc_restore_signal_16_intrin_sse2()
1047 FLAC__int32 curr; in FLAC__lpc_restore_signal_16_intrin_sse2()
Dbitwriter.c372 inline FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bi… in FLAC__bitwriter_write_raw_int32()
432 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter) in FLAC__bitwriter_rice_bits()
510 FLAC__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned paramet… in FLAC__bitwriter_write_rice_signed()
538 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, un… in FLAC__bitwriter_write_rice_signed_block()
878 extern FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bi…
Dlpc_intrin_avx2.c51 …intrin_avx2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_16_intrin_avx2()
54 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients_16_intrin_avx2()
406 …intrin_avx2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_intrin_avx2()
409 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients_intrin_avx2()
760 static FLAC__int32 pack_arr[8] = { 0, 2, 4, 6, 1, 3, 5, 7 };
763 …intrin_avx2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_wide_intrin_avx2()
1073 residual[i] = data[i] - (FLAC__int32)(sum >> lp_quantization); in FLAC__lpc_compute_residual_from_qlp_coefficients_wide_intrin_avx2()
1113 residual[i] = data[i] - (FLAC__int32)(sum >> lp_quantization); in FLAC__lpc_compute_residual_from_qlp_coefficients_wide_intrin_avx2()
Dlpc_intrin_sse41.c56 …ntrin_sse41(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_wide_intrin_sse41()
586 residual[i] = data[i] - (FLAC__int32)(sum >> lp_quantization); in FLAC__lpc_compute_residual_from_qlp_coefficients_wide_intrin_sse41()
592 …in_sse41(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned … in FLAC__lpc_restore_signal_wide_intrin_sse41()
950 data[i] = residual[i] + (FLAC__int32)(sum >> lp_quantization); in FLAC__lpc_restore_signal_wide_intrin_sse41()
958 …ntrin_sse41(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned or… in FLAC__lpc_compute_residual_from_qlp_coefficients_intrin_sse41()
961 FLAC__int32 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients_intrin_sse41()
/external/flac/include/FLAC/
Dformat.h285 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;
Dordinals.h46 typedef __int32 FLAC__int32; typedef
62 typedef int32_t FLAC__int32; typedef
Dstream_encoder.h1257 …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…
/external/flac/include/share/
Dreplaygain_synthesis.h50 …FLAC__bool little_endian_data_out, FLAC__bool unsigned_data_out, const FLAC__int32 * const input[]…
/external/flac/include/share/grabbag/
Dreplaygain.h50 FLAC__bool grabbag__replaygain_analyze(const FLAC__int32 * const input[], FLAC__bool is_stereo, uns…

12