equal
deleted
inserted
replaced
14 * Description: Declares constants, structures and enumerated list of |
14 * Description: Declares constants, structures and enumerated list of |
15 * commands shared between VoIP client and the server. |
15 * commands shared between VoIP client and the server. |
16 * |
16 * |
17 */ |
17 */ |
18 |
18 |
19 #ifndef __VOIPSHAREDDATA_H |
19 #ifndef VOIPSHAREDDATA_H |
20 #define __VOIPSHAREDDATA_H |
20 #define VOIPSHAREDDATA_H |
21 |
21 |
22 // INCLUDES |
22 // INCLUDES |
23 #include <e32std.h> |
23 #include <e32std.h> |
24 #include <sounddevice.h> |
24 #include <sounddevice.h> |
25 #include <audio.h> |
25 #include <audio.h> |
147 TBool iCng; |
147 TBool iCng; |
148 TBool iPlc; |
148 TBool iPlc; |
149 TBool iFrameMode; |
149 TBool iFrameMode; |
150 TBool iFrameModeReqForEC; |
150 TBool iFrameModeReqForEC; |
151 TUint iBitrate; |
151 TUint iBitrate; |
152 RArray<TUint> iArrBitrates; |
152 RArray<TUint>* iArrBitrates; |
153 }; |
153 }; |
154 |
154 |
155 // ----------------------------------------------------------------------------- |
155 // ----------------------------------------------------------------------------- |
156 // Class Name: TSharedData |
156 // Class Name: TSharedData |
157 // |
157 // |
193 |
193 |
194 // Any data sent between both threads |
194 // Any data sent between both threads |
195 TInt iInt; |
195 TInt iInt; |
196 TUint iUint; |
196 TUint iUint; |
197 TBool iBool; |
197 TBool iBool; |
198 |
|
199 }; |
198 }; |
200 |
199 |
201 #endif // __VOIPSHAREDDATA_H |
200 #endif //VOIPSHAREDDATA_H |
202 |
201 |
203 // End of file |
202 // End of file |