vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Wed May 22 20:23:12 2013 +0300| [ee66aa20dfb5349774ba1a79c27d579fd62f78f7] | committer: Rémi Denis-Courmont
aout: remove legacy HAVE_FPU checks The new audio filter API deals with these cases automatically. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ee66aa20dfb5349774ba1a79c27d579fd62f78f7 --- modules/codec/dts.c | 2 +- src/libvlc-module.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/codec/dts.c b/modules/codec/dts.c index 8559642..09ebc0d 100644 --- a/modules/codec/dts.c +++ b/modules/codec/dts.c @@ -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 ); diff --git a/src/libvlc-module.c b/src/libvlc-module.c index 595f4ff..f07f55b 100644 --- a/src/libvlc-module.c +++ b/src/libvlc-module.c @@ -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 ) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
