Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
296debcc
Commit
296debcc
authored
Feb 27, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark hq-resampling obsolete
This option has not had any effects since VLC 1.1.8.
parent
7ddfb56b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
19 deletions
+1
-19
modules/audio_filter/resampler/bandlimited.c
modules/audio_filter/resampler/bandlimited.c
+0
-7
src/libvlc-module.c
src/libvlc-module.c
+1
-12
No files found.
modules/audio_filter/resampler/bandlimited.c
View file @
296debcc
...
@@ -300,13 +300,6 @@ static int OpenFilter( vlc_object_t *p_this )
...
@@ -300,13 +300,6 @@ static int OpenFilter( vlc_object_t *p_this )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
#if !defined( SYS_DARWIN )
if
(
!
var_InheritBool
(
p_this
,
"hq-resampling"
)
)
{
return
VLC_EGENERIC
;
}
#endif
/* Allocate the memory needed to store the module's structure */
/* Allocate the memory needed to store the module's structure */
p_filter
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
struct
filter_sys_t
)
);
p_filter
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
struct
filter_sys_t
)
);
if
(
p_sys
==
NULL
)
if
(
p_sys
==
NULL
)
...
...
src/libvlc-module.c
View file @
296debcc
...
@@ -154,14 +154,6 @@ static const char *const ppsz_snap_formats[] =
...
@@ -154,14 +154,6 @@ static const char *const ppsz_snap_formats[] =
"The volume can be recorded and automatically restored next time " \
"The volume can be recorded and automatically restored next time " \
"VLC is used." )
"VLC is used." )
#if !defined( __APPLE__ )
#define AOUT_RESAMP_TEXT N_("High quality audio resampling")
#define AOUT_RESAMP_LONGTEXT N_( \
"This uses a high quality audio resampling algorithm. High quality " \
"audio resampling can be processor intensive so you can " \
"disable it and a cheaper resampling algorithm will be used instead.")
#endif
#define DESYNC_TEXT N_("Audio desynchronization compensation")
#define DESYNC_TEXT N_("Audio desynchronization compensation")
#define DESYNC_LONGTEXT N_( \
#define DESYNC_LONGTEXT N_( \
"This delays the audio output. The delay must be given in milliseconds. " \
"This delays the audio output. The delay must be given in milliseconds. " \
...
@@ -1476,10 +1468,7 @@ vlc_module_begin ()
...
@@ -1476,10 +1468,7 @@ vlc_module_begin ()
change_integer_range
(
1
,
AOUT_VOLUME_DEFAULT
)
change_integer_range
(
1
,
AOUT_VOLUME_DEFAULT
)
add_bool
(
"volume-save"
,
true
,
VOLUME_SAVE_TEXT
,
VOLUME_SAVE_TEXT
,
true
)
add_bool
(
"volume-save"
,
true
,
VOLUME_SAVE_TEXT
,
VOLUME_SAVE_TEXT
,
true
)
add_obsolete_integer
(
"aout-rate"
)
/* since 2.0.0 */
add_obsolete_integer
(
"aout-rate"
)
/* since 2.0.0 */
#if HAVE_FPU && !defined( __APPLE__ )
add_obsolete_bool
(
"hq-resampling"
)
/* since 1.1.8 */
add_bool
(
"hq-resampling"
,
1
,
AOUT_RESAMP_TEXT
,
AOUT_RESAMP_LONGTEXT
,
true
)
#endif
add_bool
(
"spdif"
,
0
,
SPDIF_TEXT
,
SPDIF_LONGTEXT
,
false
)
add_bool
(
"spdif"
,
0
,
SPDIF_TEXT
,
SPDIF_LONGTEXT
,
false
)
add_integer
(
"force-dolby-surround"
,
0
,
FORCE_DOLBY_TEXT
,
add_integer
(
"force-dolby-surround"
,
0
,
FORCE_DOLBY_TEXT
,
FORCE_DOLBY_LONGTEXT
,
false
)
FORCE_DOLBY_LONGTEXT
,
false
)
...
...
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