summaryrefslogtreecommitdiff
path: root/src/modules/echo-cancel/webrtc.cc
diff options
context:
space:
mode:
authorpoljar (Damir Jelić) <poljarinho@gmail.com>2013-06-18 22:24:24 +0200
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>2013-06-24 16:56:24 +0300
commite95d054e40f65bdf84bf80d289d6cbcdc3b076d5 (patch)
tree9a2b602ac2db4cf1d2afb54b2754096ea32f9411 /src/modules/echo-cancel/webrtc.cc
parentcbd274676d510b755e9b670e40228d490707a5b8 (diff)
downloadpulseaudio-e95d054e40f65bdf84bf80d289d6cbcdc3b076d5.tar.gz
Style fix: Remove new lines from opening brackets
This patch replaces every occurrence of ')\n{' with ') {'. Command used for this: find . -type d \( -name ffmpeg \) -prune -o \ -regex '\(.*\.[hc]\|.*\.cc\)' \ -a -not -name core-util.c -a -not \ -name adrian-aec.c -a -not -name g711.c \ -exec sed -i -e '/)$/{N;s/)\n{$/) {/}' {} \; The excluded files are mirrored files from external sources.
Diffstat (limited to 'src/modules/echo-cancel/webrtc.cc')
-rw-r--r--src/modules/echo-cancel/webrtc.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/echo-cancel/webrtc.cc b/src/modules/echo-cancel/webrtc.cc
index 71f6ebb8f..7517d4ad6 100644
--- a/src/modules/echo-cancel/webrtc.cc
+++ b/src/modules/echo-cancel/webrtc.cc
@@ -80,8 +80,7 @@ pa_bool_t pa_webrtc_ec_init(pa_core *c, pa_echo_canceller *ec,
pa_sample_spec *rec_ss, pa_channel_map *rec_map,
pa_sample_spec *play_ss, pa_channel_map *play_map,
pa_sample_spec *out_ss, pa_channel_map *out_map,
- uint32_t *nframes, const char *args)
-{
+ uint32_t *nframes, const char *args) {
webrtc::AudioProcessing *apm = NULL;
pa_bool_t hpf, ns, agc, dgc, mobile, cn;
int rm = -1;