From 6f001fe9314a1aba1c957e5478cbc1d1c703b94f Mon Sep 17 00:00:00 2001 From: Lee Hackseung Date: Wed, 28 Jun 2017 11:53:52 +0900 Subject: [PATCH] Remove SPEAKER, MIC and JACK Does not support these devices. Change-Id: I9fd6ea8f95a2824de69e556cb557265b909e6148 --- tizen-audio-routing.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tizen-audio-routing.c b/tizen-audio-routing.c index 8be716b..0cdadb6 100644 --- a/tizen-audio-routing.c +++ b/tizen-audio-routing.c @@ -32,8 +32,6 @@ /* #define DEBUG_TIMING */ static device_type_t outDeviceTypes[] = { - { AUDIO_DEVICE_OUT_SPEAKER, "Speaker" }, - { AUDIO_DEVICE_OUT_JACK, "Headphones" }, { AUDIO_DEVICE_OUT_BT_SCO, "Bluetooth" }, { AUDIO_DEVICE_OUT_AUX, "Line" }, { AUDIO_DEVICE_OUT_HDMI, "HDMI" }, @@ -41,8 +39,6 @@ static device_type_t outDeviceTypes[] = { }; static device_type_t inDeviceTypes[] = { - { AUDIO_DEVICE_IN_MAIN_MIC, "MainMic" }, - { AUDIO_DEVICE_IN_JACK, "HeadsetMic" }, { AUDIO_DEVICE_IN_BT_SCO, "BT Mic" }, { 0, 0 }, }; -- 2.7.4