mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04: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
|
|
@ -80,6 +80,11 @@ struct pa_sink_input {
|
|||
|
||||
pa_sink *sink;
|
||||
|
||||
/* A sink input may be connected to multiple source outputs
|
||||
* directly, so that they don't get mixed data of the entire
|
||||
* source. */
|
||||
pa_idxset *direct_outputs;
|
||||
|
||||
pa_sample_spec sample_spec;
|
||||
pa_channel_map channel_map;
|
||||
|
||||
|
|
@ -166,6 +171,8 @@ struct pa_sink_input {
|
|||
|
||||
/* The requested latency for the sink */
|
||||
pa_usec_t requested_sink_latency;
|
||||
|
||||
pa_hashmap *direct_outputs;
|
||||
} thread_info;
|
||||
|
||||
void *userdata;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue