Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 1 | /* |
vivek mehta | a51fd40 | 2016-02-04 19:49:33 -0800 | [diff] [blame] | 2 | * Copyright (C) 2014-2016 The Android Open Source Project |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 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 VOICE_H |
| 18 | #define VOICE_H |
| 19 | |
| 20 | #define BASE_SESS_IDX 0 |
| 21 | #define VOICE_SESS_IDX (BASE_SESS_IDX) |
| 22 | |
| 23 | #ifdef MULTI_VOICE_SESSION_ENABLED |
vivek mehta | a51fd40 | 2016-02-04 19:49:33 -0800 | [diff] [blame] | 24 | #define MAX_VOICE_SESSIONS 7 |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 25 | #else |
| 26 | #define MAX_VOICE_SESSIONS 1 |
| 27 | #endif |
| 28 | |
| 29 | #define BASE_CALL_STATE 1 |
| 30 | #define CALL_INACTIVE (BASE_CALL_STATE) |
| 31 | #define CALL_ACTIVE (BASE_CALL_STATE + 1) |
| 32 | |
| 33 | #define VOICE_VSID 0x10C01000 |
| 34 | |
| 35 | #define AUDIO_PARAMETER_KEY_INCALLMUSIC "incall_music_enabled" |
| 36 | #define AUDIO_PARAMETER_VALUE_TRUE "true" |
| 37 | |
| 38 | struct audio_device; |
| 39 | struct str_parms; |
| 40 | struct stream_in; |
| 41 | struct stream_out; |
Ravi Kumar Alamanda | 08dbcfc | 2014-08-20 16:24:38 -0700 | [diff] [blame] | 42 | typedef int audio_usecase_t; |
vivek mehta | 765eb64 | 2015-08-07 19:46:06 -0700 | [diff] [blame] | 43 | typedef int snd_device_t; |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 44 | |
| 45 | struct call_state { |
| 46 | int current; |
| 47 | int new; |
| 48 | }; |
| 49 | |
| 50 | struct voice_session { |
| 51 | struct pcm *pcm_rx; |
| 52 | struct pcm *pcm_tx; |
| 53 | struct call_state state; |
| 54 | uint32_t vsid; |
| 55 | }; |
| 56 | |
| 57 | struct voice { |
| 58 | struct voice_session session[MAX_VOICE_SESSIONS]; |
| 59 | int tty_mode; |
Eric Laurent | 9d0d3f1 | 2014-07-25 12:40:29 -0500 | [diff] [blame] | 60 | bool hac; |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 61 | bool mic_mute; |
| 62 | float volume; |
Ravi Kumar Alamanda | f181924 | 2014-08-05 18:20:42 -0700 | [diff] [blame] | 63 | bool in_call; |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | enum { |
| 67 | INCALL_REC_NONE = -1, |
| 68 | INCALL_REC_UPLINK, |
| 69 | INCALL_REC_DOWNLINK, |
| 70 | INCALL_REC_UPLINK_AND_DOWNLINK, |
| 71 | }; |
| 72 | |
Eric Laurent | 75a2e1d | 2014-08-29 12:38:47 -0700 | [diff] [blame] | 73 | int voice_start_usecase(struct audio_device *adev, audio_usecase_t usecase_id); |
Ravi Kumar Alamanda | 08dbcfc | 2014-08-20 16:24:38 -0700 | [diff] [blame] | 74 | int voice_stop_usecase(struct audio_device *adev, audio_usecase_t usecase_id); |
| 75 | |
Eric Laurent | 75a2e1d | 2014-08-29 12:38:47 -0700 | [diff] [blame] | 76 | int voice_start_call(struct audio_device *adev); |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 77 | int voice_stop_call(struct audio_device *adev); |
| 78 | int voice_set_parameters(struct audio_device *adev, struct str_parms *parms); |
| 79 | void voice_get_parameters(struct audio_device *adev, struct str_parms *query, |
| 80 | struct str_parms *reply); |
| 81 | void voice_init(struct audio_device *adev); |
| 82 | bool voice_is_in_call(struct audio_device *adev); |
| 83 | bool voice_is_in_call_rec_stream(struct stream_in *in); |
| 84 | int voice_set_mic_mute(struct audio_device *dev, bool state); |
| 85 | bool voice_get_mic_mute(struct audio_device *dev); |
| 86 | int voice_set_volume(struct audio_device *adev, float volume); |
| 87 | int voice_check_and_set_incall_rec_usecase(struct audio_device *adev, |
| 88 | struct stream_in *in); |
| 89 | int voice_check_and_set_incall_music_usecase(struct audio_device *adev, |
| 90 | struct stream_out *out); |
| 91 | int voice_check_and_stop_incall_rec_usecase(struct audio_device *adev, |
| 92 | struct stream_in *in); |
| 93 | void voice_update_devices_for_all_voice_usecases(struct audio_device *adev); |
vivek mehta | 765eb64 | 2015-08-07 19:46:06 -0700 | [diff] [blame] | 94 | void voice_set_sidetone(struct audio_device *adev, |
| 95 | snd_device_t out_snd_device, |
| 96 | bool enable); |
| 97 | bool voice_is_call_state_active(struct audio_device *adev); |
Vineeta Srivastava | 4b89e37 | 2014-06-19 14:21:42 -0700 | [diff] [blame] | 98 | #endif //VOICE_H |