1 /* 2 * Copyright (C) 2014 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef __EXYNOS_AUDIOHAL_LOG_H__ 18 #define __EXYNOS_AUDIOHAL_LOG_H__ 19 20 21 char * audiomode_table[AUDIO_MODE_CNT] = { 22 [AUDIO_MODE_NORMAL] = "normal mode", 23 [AUDIO_MODE_RINGTONE] = "ringtone mode", 24 [AUDIO_MODE_IN_CALL] = "in_call mode", 25 [AUDIO_MODE_IN_COMMUNICATION] = "in_comm mode", 26 }; 27 28 char * callmode_table[CALL_MODE_CNT] = { 29 [CALL_OFF] = "Call Off", 30 [VOICE_CALL] = "Voice Call Mode", 31 [VOLTE_CALL] = "VoLTE Call Mode", 32 [VOWIFI_CALL] = "VoWiFi Call Mode", 33 }; 34 35 #endif // __EXYNOS_AUDIOHAL_LOG_H__