Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef T_CMMFDEVSOUND_DATA_H
21 #define T_CMMFDEVSOUND_DATA_H
24 #include "datawrapperbase.h"
27 #include <sounddevice.h> //CMMFDevSound
30 * This class tests the CMMFDevSound API's
39 class CT_CMMFDevSoundData : public CDataWrapperBase, public MDevSoundObserver
42 ~CT_CMMFDevSoundData();
43 static CT_CMMFDevSoundData* NewL();
44 virtual TAny* GetObject();
45 virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
48 CT_CMMFDevSoundData();
52 void UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid);
58 /** From MDevSoundObserver */
59 virtual void InitializeComplete(TInt aError);
60 virtual void ToneFinished(TInt aError);
61 virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
62 virtual void PlayError(TInt aError);
63 virtual void BufferToBeEmptied(CMMFBuffer* aBuffer);
64 virtual void RecordError(TInt aError);
65 virtual void ConvertError(TInt aError);
66 virtual void DeviceMessage(TUid uid, const TDesC8& aMsg);
70 void DoCmdNewLLoopL(const TTEFSectionName&aSection);
71 void DoCmdDestructor();
72 void DoCmdCapabilities();
74 void DoCmdMaxGain(const TTEFSectionName& aSection);
75 void DoCmdMaxVolume(const TTEFSectionName& aSection);
76 void DoCmdGetPlayBalanceL(const TTEFSectionName& aSection);
77 void DoCmdGetRecordBalanceL(const TTEFSectionName& aSection);
78 void DoCmdGetSupportedInputDataTypesL();
79 void DoCmdGetSupportedOutputDataTypesL();
80 void DoCmdSamplesPlayed();
81 void DoCmdSamplesRecorded();
82 void DoCmdVolume(const TTEFSectionName& aSection);
83 void DoCmdGain(const TTEFSectionName& aSection);
84 void DoCmdFixedSequenceCount();
85 void DoCmdFixedSequenceName(const TTEFSectionName& aSection);
86 void DoCmdSetConfigL(const TTEFSectionName& aSection);
87 void DoCmdSetDTMFLengths(const TTEFSectionName& aSection);
88 void DoCmdSetGain(const TTEFSectionName& aSection);
89 void DoCmdSetPlayBalanceL(const TTEFSectionName& aSection);
90 void DoCmdSetPrioritySettings(const TTEFSectionName& aSection);
91 void DoCmdSetRecordBalanceL(const TTEFSectionName& aSection);
92 void DoCmdSetToneRepeats(const TTEFSectionName& aSection);
93 void DoCmdSetVolume(const TTEFSectionName& aSection);
94 void DoCmdSetVolumeRamp(const TTEFSectionName& aSection);
95 void DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
96 void DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
98 void DoCmdPlayDualToneL(const TTEFSectionName& aSection);
99 void DoCmdPlayInitL(const TInt aAsyncErrorIndex);
100 void DoCmdPlayToneL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
101 void DoCmdPlayToneSequenceL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
102 void DoCmdRecordData();
103 void DoCmdRecordInitL(const TInt aAsyncErrorIndex);
104 void DoCmdStop(const TTEFSectionName& aSection);
105 void DoCmdSetVolumeLoop(const TTEFSectionName& aSection);
107 void DoCmdUtilityErrorConceal();
108 void DoCmdUtilityReplaceFile(const TTEFSectionName& aSection);
109 void DoCmdUtilityOpenFile(const TTEFSectionName& aSection);
110 void DoCmdUtilityCloseFile();
111 void DoCmdUtilityFileStartPosition();
118 CMMFDevSound* iDevSound;
120 * Array to store DevSound objects
122 RPointerArray<CMMFDevSound> iObjectsDevSound;
126 TMMFPrioritySettings iPrioritySettings;
130 TMMFCapabilities iCapabilities;
132 * Store the volume value
136 * Store the gain value
142 TInt iLeftPercentage;
146 TInt iRightPercentage;
160 * Buffer to be filled or to review if it's empty
164 * Last sample of audio file
168 * for control the pause (DoCmdPause)
180 * Buffer to be filled with tone sequence
182 TBuf8<1024> iToneSequence;
184 * Index for Async error for command InitializeComplete
186 TInt iInitializeCompleteError;
188 * Index for Async error for command ToneFinished
190 TInt iToneFinishedError;
192 * Index for Async error for command BufferToBeFilled
194 TInt iBufferToBeFilledError;
196 * Index for Async error for command PlayError
198 TInt iPlayErrorError;
200 * Index for Async error for command BufferToBeEmptied
202 TInt iBufferToBeEmptiedError;
204 * Index for Async error for command RecordError
206 TInt iRecordErrorError;
208 * Index for Async error for command ConvertError
210 TInt iConvertErrorError;
212 * Index for Async error for command DeviceMessage
214 TInt iDeviceMessageError;
216 * Index for Async error for command UtilityFourCCToHwDeviceUidL
218 TInt iUtilityFourCCToHwDeviceUidLError;
220 * Index for Async error
222 TInt iAsyncErrorIndex_initialize;
223 TInt iAsyncErrorIndex_play;
224 TInt iAsyncErrorIndex_record;
225 TInt iAsyncErrorIndex_tone;
229 static const TEnumEntryTable iEnumChannels[];
231 * Enum for sample rate
233 static const TEnumEntryTable iEnumSampleRate[];
237 static const TEnumEntryTable iEnumMode[];
239 * Enum for the priorities
241 static const TEnumEntryTable iEnumPriority[];
243 * Enum for the priority preference
245 static const TEnumEntryTable iEnumPriorityPreference[];
247 * Enum for initialize(FourCC, HwDevice) the mode and state
249 static const TEnumEntryTable iEnumInitializeLType[];
252 #endif // T_CMMFDEVSOUND_DATA_H