mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
virtual: Make volume sharing on by default
People who use this code (i.e. mostly filters) would presumably want volume sharing on by default.
This commit is contained in:
parent
2ef7bc6a80
commit
baccd26b6a
2 changed files with 2 additions and 2 deletions
|
|
@ -482,7 +482,7 @@ int pa__init(pa_module*m) {
|
||||||
pa_sink *master=NULL;
|
pa_sink *master=NULL;
|
||||||
pa_sink_input_new_data sink_input_data;
|
pa_sink_input_new_data sink_input_data;
|
||||||
pa_sink_new_data sink_data;
|
pa_sink_new_data sink_data;
|
||||||
pa_bool_t use_volume_sharing = FALSE;
|
pa_bool_t use_volume_sharing = TRUE;
|
||||||
pa_bool_t force_flat_volume = FALSE;
|
pa_bool_t force_flat_volume = FALSE;
|
||||||
pa_memchunk silence;
|
pa_memchunk silence;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -497,7 +497,7 @@ int pa__init(pa_module*m) {
|
||||||
pa_source *master=NULL;
|
pa_source *master=NULL;
|
||||||
pa_source_output_new_data source_output_data;
|
pa_source_output_new_data source_output_data;
|
||||||
pa_source_new_data source_data;
|
pa_source_new_data source_data;
|
||||||
pa_bool_t use_volume_sharing = FALSE;
|
pa_bool_t use_volume_sharing = TRUE;
|
||||||
pa_bool_t force_flat_volume = FALSE;
|
pa_bool_t force_flat_volume = FALSE;
|
||||||
|
|
||||||
/* optional for uplink_sink */
|
/* optional for uplink_sink */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue