comparison src/ui/mfw/mfw_aud.h @ 188:92abb46dc1ba

src/ui/mfw/*.[ch]: rm trailing white space
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 19 Jan 2021 06:10:27 +0000
parents 67bfe9f274f6
children
comparison
equal deleted inserted replaced
187:a33dd8a5dcc9 188:92abb46dc1ba
7 +--------------------------------------------------------------------+ 7 +--------------------------------------------------------------------+
8 8
9 MODULE : MFW_AUD 9 MODULE : MFW_AUD
10 10
11 PURPOSE : This module contains the definitions for the Audio Riveria Interface. 11 PURPOSE : This module contains the definitions for the Audio Riveria Interface.
12 12
13 HISTORY: 13 HISTORY:
14 Mar 31, 2006 ER: OMAPS00067709 x0pleela 14 Mar 31, 2006 ER: OMAPS00067709 x0pleela
15 Description: Voice Buffering implementation on C+ for PTT via PCM API 15 Description: Voice Buffering implementation on C+ for PTT via PCM API
16 Solution: Added new field play_stopped to voice buffering data to keep a check before 16 Solution: Added new field play_stopped to voice buffering data to keep a check before
17 calling play stop during end call 17 calling play stop during end call
18 18
19 Mar 15, 2006 ER: OMAPS00067709 x0pleela 19 Mar 15, 2006 ER: OMAPS00067709 x0pleela
20 Description: Voice Buffering implementation on C+ for PTT via PCM API 20 Description: Voice Buffering implementation on C+ for PTT via PCM API
21 Solution: Defined new macro for PTT number length 21 Solution: Defined new macro for PTT number length
22 Defined new Enumeration "T_VOICEMEMO" (which defines different types of voice memo) 22 Defined new Enumeration "T_VOICEMEMO" (which defines different types of voice memo)
23 and "T_VOICE_BUFFERING_STATUS" (Voice buffering status) 23 and "T_VOICE_BUFFERING_STATUS" (Voice buffering status)
24 Defined new structure "T_voice_buffering" to handle diferent scenarios during voice buffering 24 Defined new structure "T_voice_buffering" to handle diferent scenarios during voice buffering
25 Added prototypes of functions set_voice_memo_type, get_voice_memo_type, 25 Added prototypes of functions set_voice_memo_type, get_voice_memo_type,
26 set_voice_buffering_rec_stop_reason. 26 set_voice_buffering_rec_stop_reason.
27 27
28 */ 28 */
29 #ifdef FF_PCM_VM_VB 29 #ifdef FF_PCM_VM_VB
30 #include "mfw_mfw.h" 30 #include "mfw_mfw.h"
46 PCM_VOICE_MEMO, 46 PCM_VOICE_MEMO,
47 VOICE_BUFFERING 47 VOICE_BUFFERING
48 }T_VOICEMEMO; 48 }T_VOICEMEMO;
49 49
50 //x0pleela 09 Mar, 2006 ER: OMAPS00067709 50 //x0pleela 09 Mar, 2006 ER: OMAPS00067709
51 //Voice buffering status 51 //Voice buffering status
52 typedef enum 52 typedef enum
53 { 53 {
54 VB_NONE, /* Reset value */ 54 VB_NONE, /* Reset value */
55 USER_SEL_STOP, /* User has selected "STOP" option from menu */ 55 USER_SEL_STOP, /* User has selected "STOP" option from menu */
56 CALLING_PARTY_END_CALL, /* User has ended the PTT call */ 56 CALLING_PARTY_END_CALL, /* User has ended the PTT call */
79 //To set the type of voice memo 79 //To set the type of voice memo
80 void set_voice_memo_type( T_VOICEMEMO voice_memo_type); 80 void set_voice_memo_type( T_VOICEMEMO voice_memo_type);
81 //To get the type of voice memo 81 //To get the type of voice memo
82 EXTERN T_VOICEMEMO get_voice_memo_type( void); 82 EXTERN T_VOICEMEMO get_voice_memo_type( void);
83 //x0pleela 09 Mar, 2006 ER:OMAPS00067709 83 //x0pleela 09 Mar, 2006 ER:OMAPS00067709
84 //To set reason for calling record_stop 84 //To set reason for calling record_stop
85 EXTERN void set_voice_buffering_rec_stop_reason( T_VOICE_BUFFERING_STATUS reason); 85 EXTERN void set_voice_buffering_rec_stop_reason( T_VOICE_BUFFERING_STATUS reason);
86 86
87 #endif 87 #endif
88 88
89 /* 89 /*
90 ** Voice Memo Functions Prototypes 90 ** Voice Memo Functions Prototypes
91 */ 91 */
92 #ifndef FF_NO_VOICE_MEMO 92 #ifndef FF_NO_VOICE_MEMO
93 SHORT mfw_aud_vm_delete_file(void); 93 SHORT mfw_aud_vm_delete_file(void);