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
fc0b2f11
Commit
fc0b2f11
authored
Aug 19, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Kill directSound warnings
parent
bc503606
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/audio_output/directx.c
modules/audio_output/directx.c
+3
-1
No files found.
modules/audio_output/directx.c
View file @
fc0b2f11
...
@@ -748,6 +748,8 @@ static void CloseAudio( vlc_object_t *p_this )
...
@@ -748,6 +748,8 @@ static void CloseAudio( vlc_object_t *p_this )
static
int
CALLBACK
CallBackDirectSoundEnum
(
LPGUID
p_guid
,
LPCSTR
psz_desc
,
static
int
CALLBACK
CallBackDirectSoundEnum
(
LPGUID
p_guid
,
LPCSTR
psz_desc
,
LPCSTR
psz_mod
,
LPVOID
_p_aout
)
LPCSTR
psz_mod
,
LPVOID
_p_aout
)
{
{
VLC_UNUSED
(
psz_mod
);
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
_p_aout
;
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
_p_aout
;
msg_Dbg
(
p_aout
,
"found device: %s"
,
psz_desc
);
msg_Dbg
(
p_aout
,
"found device: %s"
,
psz_desc
);
...
@@ -1041,7 +1043,7 @@ static int FillBuffer( aout_instance_t *p_aout, int i_frame,
...
@@ -1041,7 +1043,7 @@ static int FillBuffer( aout_instance_t *p_aout, int i_frame,
notification_thread_t
*
p_notif
=
p_aout
->
output
.
p_sys
->
p_notif
;
notification_thread_t
*
p_notif
=
p_aout
->
output
.
p_sys
->
p_notif
;
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
void
*
p_write_position
,
*
p_wrap_around
;
void
*
p_write_position
,
*
p_wrap_around
;
long
l_bytes1
,
l_bytes2
;
unsigned
long
l_bytes1
,
l_bytes2
;
HRESULT
dsresult
;
HRESULT
dsresult
;
/* Before copying anything, we have to lock the buffer */
/* Before copying anything, we have to lock the buffer */
...
...
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