mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
Style fix: Add a space between the closing/opening bracket
This patch replaces every occurrence of '){' with ') {'.
The ffmpeg source tree was excluded since it will disappear anyways.
Command used for this:
find . -type d \( -name ffmpeg \) -prune -o \
-regex '\(.*\.[hc]\|.*\.cc\)' \
-exec sed -i -e 's/){/) {/' {} \;
This commit is contained in:
parent
faf991ce22
commit
cbd274676d
9 changed files with 121 additions and 121 deletions
|
|
@ -353,7 +353,7 @@ int pa_source_output_new(
|
|||
pa_assert(pa_channel_map_valid(&data->channel_map));
|
||||
|
||||
if (!(data->flags & PA_SOURCE_OUTPUT_VARIABLE_RATE) &&
|
||||
!pa_sample_spec_equal(&data->sample_spec, &data->source->sample_spec)){
|
||||
!pa_sample_spec_equal(&data->sample_spec, &data->source->sample_spec)) {
|
||||
/* try to change source rate. This is done before the FIXATE hook since
|
||||
module-suspend-on-idle can resume a source */
|
||||
|
||||
|
|
@ -1435,7 +1435,7 @@ int pa_source_output_finish_move(pa_source_output *o, pa_source *dest, pa_bool_t
|
|||
}
|
||||
|
||||
if (!(o->flags & PA_SOURCE_OUTPUT_VARIABLE_RATE) &&
|
||||
!pa_sample_spec_equal(&o->sample_spec, &dest->sample_spec)){
|
||||
!pa_sample_spec_equal(&o->sample_spec, &dest->sample_spec)) {
|
||||
/* try to change dest sink rate if possible without glitches.
|
||||
module-suspend-on-idle resumes destination source with
|
||||
SOURCE_OUTPUT_MOVE_FINISH hook */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue