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
f1f6ed16
Commit
f1f6ed16
authored
Aug 15, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove duplicated config refresh callbacks
parent
ca923dce
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
6 deletions
+0
-6
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+0
-2
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+0
-1
modules/audio_output/directx.c
modules/audio_output/directx.c
+0
-1
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+0
-1
modules/video_output/msw/directx.c
modules/video_output/msw/directx.c
+0
-1
No files found.
modules/access/dshow/dshow.cpp
View file @
f1f6ed16
...
...
@@ -223,12 +223,10 @@ vlc_module_begin ()
add_string
(
CFG_PREFIX
"vdev"
,
NULL
,
VDEV_TEXT
,
VDEV_LONGTEXT
,
false
)
change_string_cb
(
FindDevicesCallback
)
change_action_add
(
FindDevicesCallback
,
N_
(
"Refresh list"
)
)
change_action_add
(
ConfigDevicesCallback
,
N_
(
"Configure"
)
)
add_string
(
CFG_PREFIX
"adev"
,
NULL
,
ADEV_TEXT
,
ADEV_LONGTEXT
,
false
)
change_string_cb
(
FindDevicesCallback
)
change_action_add
(
FindDevicesCallback
,
N_
(
"Refresh list"
)
)
change_action_add
(
ConfigDevicesCallback
,
N_
(
"Configure"
)
)
add_string
(
CFG_PREFIX
"size"
,
NULL
,
SIZE_TEXT
,
SIZE_LONGTEXT
,
false
)
...
...
modules/audio_output/alsa.c
View file @
f1f6ed16
...
...
@@ -82,7 +82,6 @@ vlc_module_begin ()
add_string
(
"alsa-audio-device"
,
"default"
,
AUDIO_DEV_TEXT
,
AUDIO_DEV_LONGTEXT
,
false
)
change_string_cb
(
FindDevicesCallback
)
change_action_add
(
FindDevicesCallback
,
N_
(
"Refresh list"
)
)
add_integer
(
"alsa-audio-channels"
,
AOUT_CHANS_FRONT
,
AUDIO_CHAN_TEXT
,
AUDIO_CHAN_LONGTEXT
,
false
)
change_integer_list
(
channels
,
channels_text
)
...
...
modules/audio_output/directx.c
View file @
f1f6ed16
...
...
@@ -144,7 +144,6 @@ vlc_module_begin ()
add_string
(
"directx-audio-device"
,
"default"
,
DEVICE_TEXT
,
DEVICE_LONGTEXT
,
false
)
change_string_cb
(
ReloadDirectXDevices
)
change_action_add
(
ReloadDirectXDevices
,
N_
(
"Refresh list"
)
)
add_obsolete_string
(
"directx-audio-device-name"
)
add_bool
(
"directx-audio-float32"
,
false
,
FLOAT_TEXT
,
FLOAT_LONGTEXT
,
true
)
...
...
modules/audio_output/waveout.c
View file @
f1f6ed16
...
...
@@ -145,7 +145,6 @@ vlc_module_begin ()
add_string
(
"waveout-audio-device"
,
"wavemapper"
,
DEVICE_TEXT
,
DEVICE_LONG
,
false
)
change_string_cb
(
ReloadWaveoutDevices
)
change_action_add
(
ReloadWaveoutDevices
,
N_
(
"Refresh list"
)
)
add_sw_gain
(
)
add_bool
(
"waveout-float32"
,
true
,
FLOAT_TEXT
,
FLOAT_LONGTEXT
,
true
)
...
...
modules/video_output/msw/directx.c
View file @
f1f6ed16
...
...
@@ -103,7 +103,6 @@ vlc_module_begin()
TRIPLEBUF_LONGTEXT
,
true
)
add_string
(
"directx-device"
,
""
,
DEVICE_TEXT
,
DEVICE_LONGTEXT
,
true
)
change_string_cb
(
FindDevicesCallback
)
change_action_add
(
FindDevicesCallback
,
N_
(
"Refresh list"
))
set_capability
(
"vout display"
,
230
)
add_shortcut
(
"directx"
)
...
...
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