git.videolan.org
/
vlc.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
HAVE_FPU: make constant
[vlc.git]
/
src
/
audio_output
/
output.c
diff --git
a/src/audio_output/output.c
b/src/audio_output/output.c
index
dc6ea31
..
e8c9b6b
100644
(file)
--- a/
src/audio_output/output.c
+++ b/
src/audio_output/output.c
@@
-177,8
+177,7
@@
int aout_OutputNew( aout_instance_t * p_aout,
{
/* Non-S/PDIF mixer only deals with float32 or fixed32. */
p_aout->mixer_format.i_format
{
/* Non-S/PDIF mixer only deals with float32 or fixed32. */
p_aout->mixer_format.i_format
- = (vlc_CPU() & CPU_CAPABILITY_FPU) ?
- VLC_CODEC_FL32 : VLC_CODEC_FI32;
+ = HAVE_FPU ? VLC_CODEC_FL32 : VLC_CODEC_FI32;
aout_FormatPrepare( &p_aout->mixer_format );
}
else
aout_FormatPrepare( &p_aout->mixer_format );
}
else