Enhance for echo cancel - samsung
[platform/upstream/pulseaudio.git] / src / pulse / ext-echo-cancel.h
1 #ifndef foopulseechocancelfoo
2 #define foopulseechocancelfoo
3
4 /***
5   This file is part of PulseAudio.
6
7   PulseAudio is free software; you can redistribute it and/or modify
8   it under the terms of the GNU Lesser General Public License as published
9   by the Free Software Foundation; either version 2.1 of the License,
10   or (at your option) any later version.
11
12   PulseAudio is distributed in the hope that it will be useful, but
13   WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   General Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public License
18   along with PulseAudio; if not, write to the Free Software
19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20   USA.
21 ***/
22
23 #include <pulse/context.h>
24 #include <pulse/version.h>
25
26 /** \file
27  *
28  * Routines for controlling module-echo-cancel
29  */
30
31 PA_C_DECL_BEGIN
32
33 /** Set volume to AEC module */
34 pa_operation *pa_ext_echo_cancel_set_volume (
35         pa_context *c,
36         int volume,
37         pa_context_success_cb_t cb,
38         void *userdata);
39
40 pa_operation *pa_ext_echo_cancel_set_device (
41         pa_context *c,
42         int device,
43         pa_context_success_cb_t cb,
44         void *userdata);
45
46
47 PA_C_DECL_END
48
49 #endif