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
876fbd70
Commit
876fbd70
authored
Aug 11, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PulseAudio: simplify and fix mainloop reference counting
(Logic for more than one reference was inverted)
parent
c72c363f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
47 deletions
+31
-47
src/pulse/mainloop.c
src/pulse/mainloop.c
+31
-47
No files found.
src/pulse/mainloop.c
View file @
876fbd70
...
...
@@ -46,61 +46,49 @@ static vlc_mutex_t lock = VLC_STATIC_MUTEX;
/**
* Creates and references the VLC PulseAudio threaded main loop.
* @return
the mainloop or NULL
on failure
* @return
0 on success, -1
on failure
*/
static
pa_threaded_mainloop
*
vlc_pa_mainloop_init
(
void
)
static
int
vlc_pa_mainloop_init
(
void
)
{
pa_threaded_mainloop
*
mainloop
;
vlc_mutex_lock
(
&
lock
);
if
(
refs
==
0
)
{
mainloop
=
pa_threaded_mainloop_new
();
if
(
unlikely
(
mainloop
==
NULL
))
goto
out
;
vlc_pa_
mainloop
=
pa_threaded_mainloop_new
();
if
(
unlikely
(
vlc_pa_
mainloop
==
NULL
))
goto
err
;
if
(
pa_threaded_mainloop_start
(
mainloop
)
<
0
)
if
(
pa_threaded_mainloop_start
(
vlc_pa_
mainloop
)
<
0
)
{
pa_threaded_mainloop_free
(
mainloop
);
goto
out
;
pa_threaded_mainloop_free
(
vlc_pa_
mainloop
);
goto
err
;
}
vlc_pa_mainloop
=
mainloop
;
}
else
{
if
(
unlikely
(
refs
<
UINT_MAX
))
{
mainloop
=
NULL
;
goto
out
;
}
mainloop
=
vlc_pa_mainloop
;
if
(
unlikely
(
refs
>=
UINT_MAX
))
goto
err
;
}
assert
(
mainloop
!=
NULL
);
refs
++
;
out:
vlc_mutex_unlock
(
&
lock
);
return
mainloop
;
return
0
;
err:
vlc_mutex_unlock
(
&
lock
);
return
-
1
;
}
/**
* Releases a reference to the VLC PulseAudio main loop.
*/
static
void
vlc_pa_mainloop_deinit
(
pa_threaded_mainloop
*
mainloop
)
static
void
vlc_pa_mainloop_deinit
(
void
)
{
vlc_mutex_lock
(
&
lock
);
assert
(
refs
>
0
);
assert
(
mainloop
==
vlc_pa_mainloop
);
if
(
--
refs
>
0
)
mainloop
=
NULL
;
vlc_mutex_unlock
(
&
lock
);
if
(
mainloop
!=
NULL
)
{
pa_threaded_mainloop_stop
(
mainloop
);
pa_threaded_mainloop_free
(
mainloop
);
pa_threaded_mainloop_stop
(
vlc_pa_
mainloop
);
pa_threaded_mainloop_free
(
vlc_pa_
mainloop
);
}
vlc_mutex_unlock
(
&
lock
);
}
/**
...
...
@@ -138,20 +126,19 @@ void vlc_pa_wait (void)
static
void
context_state_cb
(
pa_context
*
ctx
,
void
*
userdata
)
{
pa_threaded_mainloop
*
mainloop
=
userdata
;
switch
(
pa_context_get_state
(
ctx
))
{
case
PA_CONTEXT_READY
:
case
PA_CONTEXT_FAILED
:
case
PA_CONTEXT_TERMINATED
:
pa_threaded_mainloop_signal
(
mainloop
,
0
);
vlc_pa_signal
(
0
);
default:
break
;
}
(
void
)
userdata
;
}
static
bool
context_wait
(
pa_
threaded_mainloop
*
mainloop
,
pa_
context
*
ctx
)
static
bool
context_wait
(
pa_context
*
ctx
)
{
pa_context_state_t
state
;
...
...
@@ -159,7 +146,7 @@ static bool context_wait (pa_threaded_mainloop *mainloop, pa_context *ctx)
{
if
(
state
==
PA_CONTEXT_FAILED
||
state
==
PA_CONTEXT_TERMINATED
)
return
-
1
;
pa_threaded_mainloop_wait
(
mainloop
);
vlc_pa_wait
(
);
}
return
0
;
}
...
...
@@ -170,8 +157,7 @@ static bool context_wait (pa_threaded_mainloop *mainloop, pa_context *ctx)
*/
pa_context
*
vlc_pa_connect
(
vlc_object_t
*
obj
)
{
pa_threaded_mainloop
*
mainloop
=
vlc_pa_mainloop_init
();
if
(
unlikely
(
mainloop
==
NULL
))
if
(
unlikely
(
vlc_pa_mainloop_init
()))
return
NULL
;
msg_Dbg
(
obj
,
"using library version %s"
,
pa_get_library_version
());
...
...
@@ -222,18 +208,18 @@ pa_context *vlc_pa_connect (vlc_object_t *obj)
}
/* Connect to PulseAudio daemon */
pa_threaded_mainloop_lock
(
mainloop
);
vlc_pa_lock
(
);
ctx
=
pa_context_new_with_proplist
(
pa_threaded_mainloop_get_api
(
mainloop
),
ua
,
props
);
ctx
=
pa_context_new_with_proplist
(
pa_threaded_mainloop_get_api
(
vlc_pa_
mainloop
),
ua
,
props
);
free
(
ua
);
if
(
props
!=
NULL
)
pa_proplist_free
(
props
);
if
(
unlikely
(
ctx
==
NULL
))
goto
fail
;
pa_context_set_state_callback
(
ctx
,
context_state_cb
,
mainloop
);
pa_context_set_state_callback
(
ctx
,
context_state_cb
,
NULL
);
if
(
pa_context_connect
(
ctx
,
NULL
,
0
,
NULL
)
<
0
||
context_wait
(
mainloop
,
ctx
))
||
context_wait
(
ctx
))
{
vlc_pa_error
(
obj
,
"PulseAudio server connection failure"
,
ctx
);
pa_context_unref
(
ctx
);
...
...
@@ -246,12 +232,12 @@ pa_context *vlc_pa_connect (vlc_object_t *obj)
pa_context_get_protocol_version
(
ctx
),
pa_context_get_server_protocol_version
(
ctx
));
pa_threaded_mainloop_unlock
(
mainloop
);
vlc_pa_unlock
(
);
return
ctx
;
fail:
pa_threaded_mainloop_unlock
(
mainloop
);
vlc_pa_mainloop_deinit
(
mainloop
);
vlc_pa_unlock
(
);
vlc_pa_mainloop_deinit
();
return
NULL
;
}
...
...
@@ -260,14 +246,12 @@ fail:
*/
void
vlc_pa_disconnect
(
vlc_object_t
*
obj
,
pa_context
*
ctx
)
{
pa_threaded_mainloop
*
mainloop
=
vlc_pa_mainloop
;
vlc_pa_lock
();
pa_context_disconnect
(
ctx
);
pa_context_set_state_callback
(
ctx
,
NULL
,
NULL
);
pa_context_unref
(
ctx
);
vlc_pa_unlock
();
vlc_pa_mainloop_deinit
(
mainloop
);
vlc_pa_mainloop_deinit
();
(
void
)
obj
;
}
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