From a04f48420ffc2c1a33e743d5075f24809161b2fd Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 27 Nov 2008 18:38:03 +0200 Subject: Implement support for AT+NREC This patch adds support for the AT+NREC command which can be used for disabling noice reduction and echo canceling features on the AG side. --- audio/telephony-dummy.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'audio/telephony-dummy.c') diff --git a/audio/telephony-dummy.c b/audio/telephony-dummy.c index b857183f..0c7ff9d9 100644 --- a/audio/telephony-dummy.c +++ b/audio/telephony-dummy.c @@ -196,6 +196,12 @@ void telephony_call_hold_req(void *telephony_device, const char *cmd) telephony_call_hold_rsp(telephony_device, CME_ERROR_NONE); } +void telephony_disable_nr_and_ec_req(void *telephony_device) +{ + debug("telephony-dummy: got disable NR and EC request"); + telephony_disable_nr_and_ec_rsp(telephony_device, CME_ERROR_NONE); +} + /* D-Bus method handlers */ static DBusMessage *outgoing_call(DBusConnection *conn, DBusMessage *msg, void *data) -- cgit