Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
44f34d7d
Commit
44f34d7d
authored
Feb 14, 2003
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* exchanged directx' and waveout's capabilities because the latter
seems to be more reliable
parent
bfd2bcee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/audio_output/directx.c
modules/audio_output/directx.c
+2
-2
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+2
-2
No files found.
modules/audio_output/directx.c
View file @
44f34d7d
...
...
@@ -2,7 +2,7 @@
* directx.c: Windows DirectX audio output method
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: directx.c,v 1.1
0 2003/01/05 13:39:32 gbazin
Exp $
* $Id: directx.c,v 1.1
1 2003/02/14 17:00:02 ipkiss
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -120,7 +120,7 @@ static int DirectxFillBuffer ( aout_instance_t *, int,
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"DirectX audio module"
)
);
set_capability
(
"audio output"
,
10
0
);
set_capability
(
"audio output"
,
5
0
);
add_shortcut
(
"directx"
);
set_callbacks
(
OpenAudio
,
CloseAudio
);
vlc_module_end
();
...
...
modules/audio_output/waveout.c
View file @
44f34d7d
...
...
@@ -2,7 +2,7 @@
* waveout.c : Windows waveOut plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: waveout.c,v 1.1
5 2003/02/14 09:50:12 gbazin
Exp $
* $Id: waveout.c,v 1.1
6 2003/02/14 17:00:02 ipkiss
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -128,7 +128,7 @@ static void InterleaveS16( int16_t *, int *, int );
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Win32 waveOut extension module"
)
);
set_capability
(
"audio output"
,
5
0
);
set_capability
(
"audio output"
,
10
0
);
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