Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
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
Show 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 * );
...
@@ -110,7 +110,7 @@ static block_t *GetSoutBuffer( decoder_t * );
static
int
OpenDecoder
(
vlc_object_t
*
p_this
)
static
int
OpenDecoder
(
vlc_object_t
*
p_this
)
{
{
/* HACK: Don't use this codec if we don't have an dts audio filter */
/* 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
VLC_EGENERIC
;
return
OpenCommon
(
p_this
,
false
);
return
OpenCommon
(
p_this
,
false
);
...
...
src/libvlc-module.c
View file @
ee66aa20
...
@@ -1490,7 +1490,7 @@ vlc_module_begin ()
...
@@ -1490,7 +1490,7 @@ vlc_module_begin ()
add_bool
(
"audio-replay-gain-peak-protection"
,
true
,
add_bool
(
"audio-replay-gain-peak-protection"
,
true
,
AUDIO_REPLAY_GAIN_PEAK_PROTECTION_TEXT
,
AUDIO_REPLAY_GAIN_PEAK_PROTECTION_LONGTEXT
,
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
)
AUDIO_TIME_STRETCH_TEXT
,
AUDIO_TIME_STRETCH_LONGTEXT
,
false
)
set_subcategory
(
SUBCAT_AUDIO_AOUT
)
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