Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
a07a0b5e
Commit
a07a0b5e
authored
Aug 10, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove aout-rate
I assume this breaks with S/PDIF. And I do not see much use for this.
parent
55f0dc50
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
src/audio_output/output.c
src/audio_output/output.c
+0
-4
src/libvlc-module.c
src/libvlc-module.c
+1
-2
No files found.
src/audio_output/output.c
View file @
a07a0b5e
...
...
@@ -53,10 +53,6 @@ int aout_OutputNew( audio_output_t *p_aout,
aout_assert_locked
(
p_aout
);
p_aout
->
format
=
*
p_format
;
/* Retrieve user defaults. */
int
i_rate
=
var_InheritInteger
(
p_aout
,
"aout-rate"
);
if
(
i_rate
!=
0
)
p_aout
->
format
.
i_rate
=
i_rate
;
aout_FormatPrepare
(
&
p_aout
->
format
);
/* Find the best output plug-in. */
...
...
src/libvlc-module.c
View file @
a07a0b5e
...
...
@@ -1640,8 +1640,7 @@ vlc_module_begin ()
add_integer_with_range
(
"volume-step"
,
AOUT_VOLUME_STEP
,
0
,
AOUT_VOLUME_MAX
,
VOLUME_STEP_TEXT
,
VOLUME_STEP_LONGTEXT
,
true
)
add_integer
(
"aout-rate"
,
0
,
AOUT_RATE_TEXT
,
AOUT_RATE_LONGTEXT
,
true
)
add_obsolete_integer
(
"aout-rate"
)
/* since 1.2.0 */
#if HAVE_FPU && !defined( __APPLE__ )
add_bool
(
"hq-resampling"
,
1
,
AOUT_RESAMP_TEXT
,
AOUT_RESAMP_LONGTEXT
,
true
)
...
...
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