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
ebe79922
Commit
ebe79922
authored
Jul 25, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wasapi: log error if COM initialization fails
parent
ae3fd827
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
modules/audio_output/wasapi.c
modules/audio_output/wasapi.c
+9
-3
No files found.
modules/audio_output/wasapi.c
View file @
ebe79922
...
...
@@ -48,11 +48,17 @@ vlc_module_begin()
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
static
int
TryEnter
(
v
oid
)
static
int
TryEnter
(
v
lc_object_t
*
obj
)
{
HRESULT
hr
=
CoInitializeEx
(
NULL
,
COINIT_MULTITHREADED
);
return
-!!
FAILED
(
hr
);
if
(
unlikely
(
FAILED
(
hr
)))
{
msg_Err
(
obj
,
"cannot initialize COM (error 0x%lx)"
,
hr
);
return
-
1
;
}
return
0
;
}
#define TryEnter(o) TryEnter(VLC_OBJECT(o))
static
void
Enter
(
void
)
{
...
...
@@ -461,7 +467,7 @@ static int Open(vlc_object_t *obj)
sys
->
done
=
NULL
;
aout
->
sys
=
sys
;
if
(
TryEnter
())
if
(
TryEnter
(
aout
))
{
free
(
sys
);
return
VLC_EGENERIC
;
...
...
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