FreeCalypso > hg > leo2moko-debug
comparison g23m/condat/ms/src/aci/hl_audio_drv.h @ 0:509db1a7b7b8
initial import: leo2moko-r1
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Jun 2015 03:24:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:509db1a7b7b8 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-PS (6147) | |
4 | Modul : AOC | |
5 +----------------------------------------------------------------------------- | |
6 | Copyright 2002 Texas Instruments Berlin, AG | |
7 | All rights reserved. | |
8 | | |
9 | This file is confidential and a trade secret of Texas | |
10 | Instruments Berlin, AG | |
11 | The receipt of or possession of this file does not convey | |
12 | any rights to reproduce or disclose its contents or to | |
13 | manufacture, use, or sell anything it may describe, in | |
14 | whole, or in part, without the specific written consent of | |
15 | Texas Instruments Berlin, AG. | |
16 +----------------------------------------------------------------------------- | |
17 | Purpose : Definitions for high level driver for vocoder interface | |
18 +----------------------------------------------------------------------------- | |
19 */ | |
20 | |
21 #ifndef HL_VOICE_DRV_H | |
22 #define HL_VOICE_DRV_H | |
23 | |
24 typedef enum | |
25 { | |
26 HL_VOICE_DRV_FAIL, | |
27 HL_VOICE_DRV_SUCC | |
28 | |
29 } T_HL_VOICE_DRV_RSLT; | |
30 | |
31 | |
32 typedef enum | |
33 { | |
34 HL_VOCODER_DISABLED, | |
35 HL_VOCODER_ENABLE_REQ, | |
36 HL_VOCODER_ENABLED | |
37 | |
38 } T_HL_VOCODER_STATE; | |
39 | |
40 | |
41 EXTERN void hl_audio_drv_init (void); | |
42 EXTERN T_HL_VOICE_DRV_RSLT hl_drv_enable_vocoder ( void ); | |
43 EXTERN void hl_drv_disable_vocoder ( void ); | |
44 EXTERN T_HL_VOCODER_STATE hl_drv_get_vocoder_state (void); | |
45 EXTERN void hl_drv_vocoder_enabled (void); | |
46 | |
47 #endif /* HL_VOICE_DRV_H */ |