Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
91b4ce51
Commit
91b4ce51
authored
Oct 06, 2004
by
Josh Coalson
Browse files
fix #ifdef problems that existed when FLAC__NO_ASM is defined
parent
607fc843
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libFLAC/include/private/lpc.h
View file @
91b4ce51
...
@@ -52,14 +52,15 @@
...
@@ -52,14 +52,15 @@
*/
*/
void
FLAC__lpc_compute_autocorrelation
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
#ifndef FLAC__NO_ASM
#ifndef FLAC__NO_ASM
#ifdef FLAC__CPU_IA32
#
ifdef FLAC__CPU_IA32
#ifdef FLAC__HAS_NASM
#
ifdef FLAC__HAS_NASM
void
FLAC__lpc_compute_autocorrelation_asm_ia32
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
void
FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow
(
const
FLAC__real
data
[],
unsigned
data_len
,
unsigned
lag
,
FLAC__real
autoc
[]);
#endif
# endif
# endif
#endif
#endif
/*
/*
...
@@ -120,12 +121,12 @@ int FLAC__lpc_quantize_coefficients(const FLAC__real lp_coeff[], unsigned order,
...
@@ -120,12 +121,12 @@ int FLAC__lpc_quantize_coefficients(const FLAC__real lp_coeff[], unsigned order,
void
FLAC__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
[]);
void
FLAC__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
[]);
void
FLAC__lpc_compute_residual_from_qlp_coefficients_wide
(
const
FLAC__int32
data
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
residual
[]);
void
FLAC__lpc_compute_residual_from_qlp_coefficients_wide
(
const
FLAC__int32
data
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
residual
[]);
#ifndef FLAC__NO_ASM
#ifndef FLAC__NO_ASM
#ifdef FLAC__CPU_IA32
#
ifdef FLAC__CPU_IA32
#ifdef FLAC__HAS_NASM
#
ifdef FLAC__HAS_NASM
void
FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32
(
const
FLAC__int32
data
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
residual
[]);
void
FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32
(
const
FLAC__int32
data
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
residual
[]);
void
FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx
(
const
FLAC__int32
data
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
residual
[]);
void
FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx
(
const
FLAC__int32
data
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
residual
[]);
#endif
#
endif
#endif
#
endif
#endif
#endif
/*
/*
...
@@ -146,17 +147,16 @@ void FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx(const FLAC__i
...
@@ -146,17 +147,16 @@ void FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx(const FLAC__i
void
FLAC__lpc_restore_signal
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_wide
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_wide
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
#ifndef FLAC__NO_ASM
#ifndef FLAC__NO_ASM
#ifdef FLAC__CPU_IA32
#
ifdef FLAC__CPU_IA32
#ifdef FLAC__HAS_NASM
#
ifdef FLAC__HAS_NASM
void
FLAC__lpc_restore_signal_asm_ia32
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_asm_ia32
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_asm_ia32_mmx
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_asm_ia32_mmx
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
#endif
#
endif
/* FLAC__HAS_NASM */
#elif defined FLAC__CPU_PPC
#
elif defined FLAC__CPU_PPC
void
FLAC__lpc_restore_signal_asm_ppc_altivec_16
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_asm_ppc_altivec_16
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_asm_ppc_altivec_16_order8
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
void
FLAC__lpc_restore_signal_asm_ppc_altivec_16_order8
(
const
FLAC__int32
residual
[],
unsigned
data_len
,
const
FLAC__int32
qlp_coeff
[],
unsigned
order
,
int
lp_quantization
,
FLAC__int32
data
[]);
#endif
# endif
/* FLAC__CPU_IA32 || FLAC__CPU_PPC */
#endif
#endif
/* FLAC__NO_ASM */
#endif
/*
/*
* FLAC__lpc_compute_expected_bits_per_residual_sample()
* FLAC__lpc_compute_expected_bits_per_residual_sample()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment