Commit ee66aa20 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

aout: remove legacy HAVE_FPU checks

The new audio filter API deals with these cases automatically.
parent bf7670fd
......@@ -110,7 +110,7 @@ static block_t *GetSoutBuffer( decoder_t * );
static int OpenDecoder( vlc_object_t *p_this )
{
/* HACK: Don't use this codec if we don't have an dts audio filter */
if( !HAVE_FPU || !module_exists( "dtstofloat32" ) )
if( !module_exists( "dtstofloat32" ) )
return VLC_EGENERIC;
return OpenCommon( p_this, false );
......
......@@ -1490,7 +1490,7 @@ vlc_module_begin ()
add_bool( "audio-replay-gain-peak-protection", true,
AUDIO_REPLAY_GAIN_PEAK_PROTECTION_TEXT, AUDIO_REPLAY_GAIN_PEAK_PROTECTION_LONGTEXT, true )
add_bool( "audio-time-stretch", HAVE_FPU,
add_bool( "audio-time-stretch", true,
AUDIO_TIME_STRETCH_TEXT, AUDIO_TIME_STRETCH_LONGTEXT, false )
set_subcategory( SUBCAT_AUDIO_AOUT )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment