Fix alignment issues introduced by the pa_bool -> bool conversion

This commit is contained in:
poljar (Damir Jelić) 2013-06-28 01:03:47 +02:00 committed by Tanu Kaskinen
parent d806b19714
commit 408f0ba783
7 changed files with 46 additions and 46 deletions

View file

@ -77,10 +77,10 @@ static int routing_mode_from_string(const char *rmode) {
}
bool 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) {
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) {
webrtc::AudioProcessing *apm = NULL;
bool hpf, ns, agc, dgc, mobile, cn;
int rm = -1;