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
b7e972a1
Commit
b7e972a1
authored
Apr 11, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PulseAudio: add some callbacks for debug
parent
99109504
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
modules/audio_output/pulse.c
modules/audio_output/pulse.c
+36
-0
No files found.
modules/audio_output/pulse.c
View file @
b7e972a1
...
@@ -142,6 +142,38 @@ static void stream_moved_cb(pa_stream *s, void *userdata)
...
@@ -142,6 +142,38 @@ static void stream_moved_cb(pa_stream *s, void *userdata)
pa_operation_unref
(
op
);
pa_operation_unref
(
op
);
}
}
static
void
stream_overflow_cb
(
pa_stream
*
s
,
void
*
userdata
)
{
aout_instance_t
*
aout
=
userdata
;
msg_Err
(
aout
,
"overflow"
);
(
void
)
s
;
}
static
void
stream_started_cb
(
pa_stream
*
s
,
void
*
userdata
)
{
aout_instance_t
*
aout
=
userdata
;
msg_Dbg
(
aout
,
"started"
);
(
void
)
s
;
}
static
void
stream_suspended_cb
(
pa_stream
*
s
,
void
*
userdata
)
{
aout_instance_t
*
aout
=
userdata
;
msg_Dbg
(
aout
,
"suspended"
);
(
void
)
s
;
}
static
void
stream_underflow_cb
(
pa_stream
*
s
,
void
*
userdata
)
{
aout_instance_t
*
aout
=
userdata
;
msg_Dbg
(
aout
,
"underflow"
);
(
void
)
s
;
}
static
int
stream_wait
(
pa_threaded_mainloop
*
mainloop
,
pa_stream
*
stream
)
static
int
stream_wait
(
pa_threaded_mainloop
*
mainloop
,
pa_stream
*
stream
)
{
{
pa_stream_state_t
state
;
pa_stream_state_t
state
;
...
@@ -465,6 +497,10 @@ static int Open(vlc_object_t *obj)
...
@@ -465,6 +497,10 @@ static int Open(vlc_object_t *obj)
sys
->
stream
=
s
;
sys
->
stream
=
s
;
pa_stream_set_state_callback
(
s
,
stream_state_cb
,
mainloop
);
pa_stream_set_state_callback
(
s
,
stream_state_cb
,
mainloop
);
pa_stream_set_moved_callback
(
s
,
stream_moved_cb
,
aout
);
pa_stream_set_moved_callback
(
s
,
stream_moved_cb
,
aout
);
pa_stream_set_overflow_callback
(
s
,
stream_overflow_cb
,
aout
);
pa_stream_set_started_callback
(
s
,
stream_started_cb
,
aout
);
pa_stream_set_suspended_callback
(
s
,
stream_suspended_cb
,
aout
);
pa_stream_set_underflow_callback
(
s
,
stream_underflow_cb
,
aout
);
if
(
pa_stream_connect_playback
(
s
,
NULL
,
&
attr
,
flags
,
NULL
,
NULL
)
<
0
if
(
pa_stream_connect_playback
(
s
,
NULL
,
&
attr
,
flags
,
NULL
,
NULL
)
<
0
||
stream_wait
(
mainloop
,
s
))
{
||
stream_wait
(
mainloop
,
s
))
{
...
...
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