Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
ee66aa20
Commit
ee66aa20
authored
May 22, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aout: remove legacy HAVE_FPU checks
The new audio filter API deals with these cases automatically.
parent
bf7670fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/codec/dts.c
modules/codec/dts.c
+1
-1
src/libvlc-module.c
src/libvlc-module.c
+1
-1
No files found.
modules/codec/dts.c
View file @
ee66aa20
...
...
@@ -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
);
...
...
src/libvlc-module.c
View file @
ee66aa20
...
...
@@ -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
)
...
...
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