mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
fix a bad memory access pulsecore/client.c
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2527 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
7bae1baa3e
commit
b27cc1d426
14 changed files with 220 additions and 33 deletions
|
|
@ -73,6 +73,9 @@ struct pa_source_output {
|
|||
|
||||
pa_source *source;
|
||||
|
||||
/* A source output can monitor just a single input of a sink, in which case we find it here */
|
||||
pa_sink_input *direct_on_input; /* may be NULL */
|
||||
|
||||
pa_sample_spec sample_spec;
|
||||
pa_channel_map channel_map;
|
||||
|
||||
|
|
@ -135,6 +138,8 @@ struct pa_source_output {
|
|||
|
||||
/* The requested latency for the source */
|
||||
pa_usec_t requested_source_latency;
|
||||
|
||||
pa_sink_input *direct_on_input; /* may be NULL */
|
||||
} thread_info;
|
||||
|
||||
void *userdata;
|
||||
|
|
@ -154,6 +159,7 @@ enum {
|
|||
|
||||
typedef struct pa_source_output_new_data {
|
||||
pa_proplist *proplist;
|
||||
pa_sink_input *direct_on_input;
|
||||
|
||||
const char *driver;
|
||||
pa_module *module;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue