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
8bb2ec21
Commit
8bb2ec21
authored
Nov 19, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward port [13274]
parent
5d744b40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/audio_output/directx.c
modules/audio_output/directx.c
+1
-1
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+1
-1
No files found.
modules/audio_output/directx.c
View file @
8bb2ec21
...
...
@@ -228,7 +228,7 @@ vlc_module_begin();
add_shortcut
(
"directx"
);
add_integer
(
"directx-audio-device"
,
0
,
NULL
,
DEVICE_TEXT
,
DEVICE_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"directx-audio-float32"
,
1
,
0
,
FLOAT_TEXT
,
add_bool
(
"directx-audio-float32"
,
0
,
0
,
FLOAT_TEXT
,
FLOAT_LONGTEXT
,
VLC_TRUE
);
set_callbacks
(
OpenAudio
,
CloseAudio
);
vlc_module_end
();
...
...
modules/audio_output/waveout.c
View file @
8bb2ec21
...
...
@@ -141,7 +141,7 @@ vlc_module_begin();
set_capability
(
"audio output"
,
50
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
add_bool
(
"waveout-float32"
,
1
,
0
,
FLOAT_TEXT
,
FLOAT_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"waveout-float32"
,
0
,
0
,
FLOAT_TEXT
,
FLOAT_LONGTEXT
,
VLC_TRUE
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
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