sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Declarations of Integration test step classes for A3F DevSound Play cases.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef TSI_A3F_DEVSOUND_PLAY_H
|
sl@0
|
19 |
#define TSI_A3F_DEVSOUND_PLAY_H
|
sl@0
|
20 |
|
sl@0
|
21 |
// User includes
|
sl@0
|
22 |
#include "tsi_a3f_devsound_teststep.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
*
|
sl@0
|
26 |
* RTestStepA3FDevSoundPlayBase
|
sl@0
|
27 |
*
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
class RTestStepA3FDevSoundPlayBase : public RAsyncTestStep,
|
sl@0
|
30 |
public MDevSoundObserver
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
// From RAsyncTestStep
|
sl@0
|
34 |
virtual void KickoffTestL();
|
sl@0
|
35 |
virtual void CloseTest();
|
sl@0
|
36 |
|
sl@0
|
37 |
protected:
|
sl@0
|
38 |
RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
39 |
RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName);
|
sl@0
|
40 |
RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TFourCC& aInputDataType);
|
sl@0
|
41 |
RTestStepA3FDevSoundPlayBase(const TDesC& aTestName);
|
sl@0
|
42 |
|
sl@0
|
43 |
virtual void DoKickoffTestL();
|
sl@0
|
44 |
|
sl@0
|
45 |
// Executes the playing events of DevSound using a Finite State Machine
|
sl@0
|
46 |
virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError);
|
sl@0
|
47 |
|
sl@0
|
48 |
// From MDevSoundObserver
|
sl@0
|
49 |
virtual void InitializeComplete(TInt aError);
|
sl@0
|
50 |
virtual void ToneFinished(TInt aError);
|
sl@0
|
51 |
virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
|
sl@0
|
52 |
virtual void PlayError(TInt aError);
|
sl@0
|
53 |
virtual void BufferToBeEmptied(CMMFBuffer* aBuffer);
|
sl@0
|
54 |
virtual void RecordError(TInt aError);
|
sl@0
|
55 |
virtual void ConvertError(TInt aError);
|
sl@0
|
56 |
virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
|
sl@0
|
57 |
|
sl@0
|
58 |
// Timer Callback
|
sl@0
|
59 |
static TInt TimerCallback(TAny*);
|
sl@0
|
60 |
virtual void DoTimerCallback();
|
sl@0
|
61 |
|
sl@0
|
62 |
TUint ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString);
|
sl@0
|
63 |
TUint ConvertDesToTMMFMonoStereo(const TDesC& aMonoStereoString);
|
sl@0
|
64 |
void DisplayCodecInfo();
|
sl@0
|
65 |
void SetSampleRateAndChannelMode();
|
sl@0
|
66 |
void CheckConfigAndFourCCUsage();
|
sl@0
|
67 |
|
sl@0
|
68 |
protected:
|
sl@0
|
69 |
RFs iFs;
|
sl@0
|
70 |
RFile iFile;
|
sl@0
|
71 |
CMMFDevSound* iMMFDevSound;
|
sl@0
|
72 |
CMMFBuffer* iBuffer;
|
sl@0
|
73 |
CPeriodic* iTimer;
|
sl@0
|
74 |
TCallBack iCallBack;
|
sl@0
|
75 |
TFourCC iInputDataType; // datatype (FourCC) of the Decoder
|
sl@0
|
76 |
TBuf<KNameSize> iSectName;
|
sl@0
|
77 |
TPtrC iFilename;
|
sl@0
|
78 |
TPtrC iSampleRate;
|
sl@0
|
79 |
TPtrC iMonoStereo;
|
sl@0
|
80 |
TDevSoundPlayState iPlayState;
|
sl@0
|
81 |
TInt iBufferCount;
|
sl@0
|
82 |
TBool iConfig;
|
sl@0
|
83 |
TBool iInvalidConfig;
|
sl@0
|
84 |
TBool iUseFourCC;
|
sl@0
|
85 |
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
/*
|
sl@0
|
89 |
*
|
sl@0
|
90 |
* RStepA3FDevSoundPlaySimple
|
sl@0
|
91 |
*
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
class RStepA3FDevSoundPlaySimple : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
94 |
{
|
sl@0
|
95 |
public:
|
sl@0
|
96 |
static RStepA3FDevSoundPlaySimple* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
97 |
static RStepA3FDevSoundPlaySimple* NewL(const TDesC& aTestName, const TDesC& aSectName);
|
sl@0
|
98 |
|
sl@0
|
99 |
private:
|
sl@0
|
100 |
RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
101 |
RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName);
|
sl@0
|
102 |
|
sl@0
|
103 |
};
|
sl@0
|
104 |
|
sl@0
|
105 |
/*
|
sl@0
|
106 |
*
|
sl@0
|
107 |
* RStepA3FDevSoundPlayEmpty
|
sl@0
|
108 |
*
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
class RStepA3FDevSoundPlayEmpty : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
111 |
{
|
sl@0
|
112 |
public:
|
sl@0
|
113 |
static RStepA3FDevSoundPlayEmpty* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
114 |
|
sl@0
|
115 |
private:
|
sl@0
|
116 |
RStepA3FDevSoundPlayEmpty(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
117 |
|
sl@0
|
118 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
119 |
virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError);
|
sl@0
|
120 |
|
sl@0
|
121 |
};
|
sl@0
|
122 |
|
sl@0
|
123 |
/*
|
sl@0
|
124 |
*
|
sl@0
|
125 |
* RStepA3FDevSoundPlayInvalidConfig
|
sl@0
|
126 |
*
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
class RStepA3FDevSoundPlayInvalidConfig : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
129 |
{
|
sl@0
|
130 |
public:
|
sl@0
|
131 |
static RStepA3FDevSoundPlayInvalidConfig* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
132 |
|
sl@0
|
133 |
private:
|
sl@0
|
134 |
RStepA3FDevSoundPlayInvalidConfig(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
135 |
|
sl@0
|
136 |
// From RAsyncTestStep
|
sl@0
|
137 |
virtual void KickoffTestL();
|
sl@0
|
138 |
|
sl@0
|
139 |
// From MDevSoundObserver
|
sl@0
|
140 |
virtual void PlayError(TInt aError);
|
sl@0
|
141 |
|
sl@0
|
142 |
};
|
sl@0
|
143 |
|
sl@0
|
144 |
/*
|
sl@0
|
145 |
*
|
sl@0
|
146 |
* RStepA3FDevSoundPlayInvalidFourCC
|
sl@0
|
147 |
*
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
class RStepA3FDevSoundPlayInvalidFourCC : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
150 |
{
|
sl@0
|
151 |
public:
|
sl@0
|
152 |
static RStepA3FDevSoundPlayInvalidFourCC* NewL(const TDesC& aTestName, const TFourCC& aInputDataType);
|
sl@0
|
153 |
|
sl@0
|
154 |
private:
|
sl@0
|
155 |
RStepA3FDevSoundPlayInvalidFourCC(const TDesC& aTestName, const TFourCC& aInputDataType);
|
sl@0
|
156 |
|
sl@0
|
157 |
// From RAsyncTestStep
|
sl@0
|
158 |
virtual void KickoffTestL();
|
sl@0
|
159 |
|
sl@0
|
160 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
161 |
virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError);
|
sl@0
|
162 |
|
sl@0
|
163 |
};
|
sl@0
|
164 |
|
sl@0
|
165 |
/*
|
sl@0
|
166 |
*
|
sl@0
|
167 |
* RStepA3FDevSoundInitializeWithHwDeviceUID
|
sl@0
|
168 |
*
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
class RStepA3FDevSoundInitializeWithHwDeviceUID : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
171 |
{
|
sl@0
|
172 |
public:
|
sl@0
|
173 |
static RStepA3FDevSoundInitializeWithHwDeviceUID* NewL(const TDesC& aTestName);
|
sl@0
|
174 |
|
sl@0
|
175 |
private:
|
sl@0
|
176 |
RStepA3FDevSoundInitializeWithHwDeviceUID(const TDesC& aTestName);
|
sl@0
|
177 |
|
sl@0
|
178 |
// From RAsyncTestStep
|
sl@0
|
179 |
virtual void KickoffTestL();
|
sl@0
|
180 |
|
sl@0
|
181 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
182 |
virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError);
|
sl@0
|
183 |
|
sl@0
|
184 |
};
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
*
|
sl@0
|
188 |
* RStepA3FDevSoundReadConfigDuringPlay
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
class RStepA3FDevSoundReadConfigDuringPlay : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
191 |
{
|
sl@0
|
192 |
public:
|
sl@0
|
193 |
static RStepA3FDevSoundReadConfigDuringPlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
194 |
|
sl@0
|
195 |
private:
|
sl@0
|
196 |
RStepA3FDevSoundReadConfigDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
197 |
|
sl@0
|
198 |
// From MDevSoundObserver
|
sl@0
|
199 |
virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
|
sl@0
|
200 |
|
sl@0
|
201 |
};
|
sl@0
|
202 |
|
sl@0
|
203 |
/*
|
sl@0
|
204 |
*
|
sl@0
|
205 |
* RStepA3FDevSoundSetVolPlayStopGetVol
|
sl@0
|
206 |
*
|
sl@0
|
207 |
*/
|
sl@0
|
208 |
class RStepA3FDevSoundSetVolPlayStopGetVol : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
209 |
{
|
sl@0
|
210 |
public:
|
sl@0
|
211 |
static RStepA3FDevSoundSetVolPlayStopGetVol* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
212 |
|
sl@0
|
213 |
private:
|
sl@0
|
214 |
RStepA3FDevSoundSetVolPlayStopGetVol(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
215 |
|
sl@0
|
216 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
217 |
virtual void DoKickoffTestL();
|
sl@0
|
218 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
219 |
virtual void DoTimerCallback();
|
sl@0
|
220 |
|
sl@0
|
221 |
private:
|
sl@0
|
222 |
TInt iSetVolume;
|
sl@0
|
223 |
TInt iVolDuringStopped;
|
sl@0
|
224 |
TBool iCheckTimer;
|
sl@0
|
225 |
|
sl@0
|
226 |
};
|
sl@0
|
227 |
|
sl@0
|
228 |
/*
|
sl@0
|
229 |
*
|
sl@0
|
230 |
* RStepA3FDevSoundFlushBuffersPaused
|
sl@0
|
231 |
*
|
sl@0
|
232 |
*/
|
sl@0
|
233 |
class RStepA3FDevSoundFlushBuffersPaused : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
234 |
{
|
sl@0
|
235 |
public:
|
sl@0
|
236 |
static RStepA3FDevSoundFlushBuffersPaused* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
237 |
|
sl@0
|
238 |
private:
|
sl@0
|
239 |
RStepA3FDevSoundFlushBuffersPaused(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
240 |
|
sl@0
|
241 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
242 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
243 |
virtual void DoTimerCallback();
|
sl@0
|
244 |
|
sl@0
|
245 |
// From MDevSoundObserver
|
sl@0
|
246 |
void BufferToBeFilled(CMMFBuffer* aBuffer);
|
sl@0
|
247 |
|
sl@0
|
248 |
private:
|
sl@0
|
249 |
TBool iCheckTimer;
|
sl@0
|
250 |
|
sl@0
|
251 |
};
|
sl@0
|
252 |
|
sl@0
|
253 |
/*
|
sl@0
|
254 |
*
|
sl@0
|
255 |
* RStepA3FDevSoundInvalidStatePlay
|
sl@0
|
256 |
*
|
sl@0
|
257 |
*/
|
sl@0
|
258 |
class RStepA3FDevSoundInvalidStatePlay : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
259 |
{
|
sl@0
|
260 |
public:
|
sl@0
|
261 |
static RStepA3FDevSoundInvalidStatePlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
262 |
|
sl@0
|
263 |
private:
|
sl@0
|
264 |
RStepA3FDevSoundInvalidStatePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
265 |
|
sl@0
|
266 |
// From RAsyncTestStep
|
sl@0
|
267 |
virtual void KickoffTestL();
|
sl@0
|
268 |
|
sl@0
|
269 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
270 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
271 |
|
sl@0
|
272 |
// From MDevSoundObserver
|
sl@0
|
273 |
virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
|
sl@0
|
274 |
virtual void PlayError(TInt aError);
|
sl@0
|
275 |
|
sl@0
|
276 |
};
|
sl@0
|
277 |
|
sl@0
|
278 |
/*
|
sl@0
|
279 |
*
|
sl@0
|
280 |
* RStepA3FDevSoundFlushBuffersPlaying
|
sl@0
|
281 |
*
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
class RStepA3FDevSoundFlushBuffersPlaying : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
284 |
{
|
sl@0
|
285 |
public:
|
sl@0
|
286 |
static RStepA3FDevSoundFlushBuffersPlaying* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
287 |
|
sl@0
|
288 |
private:
|
sl@0
|
289 |
RStepA3FDevSoundFlushBuffersPlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
290 |
|
sl@0
|
291 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
292 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
293 |
|
sl@0
|
294 |
};
|
sl@0
|
295 |
|
sl@0
|
296 |
/*
|
sl@0
|
297 |
*
|
sl@0
|
298 |
* RStepA3FDevSoundInitializeWhilePlaying
|
sl@0
|
299 |
*
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
class RStepA3FDevSoundInitializeWhilePlaying : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
302 |
{
|
sl@0
|
303 |
public:
|
sl@0
|
304 |
static RStepA3FDevSoundInitializeWhilePlaying* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
305 |
|
sl@0
|
306 |
private:
|
sl@0
|
307 |
RStepA3FDevSoundInitializeWhilePlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
308 |
|
sl@0
|
309 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
310 |
void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
311 |
void DoTimerCallback();
|
sl@0
|
312 |
|
sl@0
|
313 |
private:
|
sl@0
|
314 |
TBool iCheckTimer;
|
sl@0
|
315 |
|
sl@0
|
316 |
};
|
sl@0
|
317 |
|
sl@0
|
318 |
/*
|
sl@0
|
319 |
*
|
sl@0
|
320 |
* RStepA3FDevSoundSetBalanceDuringPlay
|
sl@0
|
321 |
*
|
sl@0
|
322 |
*/
|
sl@0
|
323 |
class RStepA3FDevSoundSetBalanceDuringPlay : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
324 |
{
|
sl@0
|
325 |
public:
|
sl@0
|
326 |
static RStepA3FDevSoundSetBalanceDuringPlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
327 |
|
sl@0
|
328 |
private:
|
sl@0
|
329 |
RStepA3FDevSoundSetBalanceDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
330 |
|
sl@0
|
331 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
332 |
virtual void DoKickoffTestL();
|
sl@0
|
333 |
|
sl@0
|
334 |
// From MDevSoundObserver
|
sl@0
|
335 |
virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
|
sl@0
|
336 |
|
sl@0
|
337 |
private:
|
sl@0
|
338 |
TInt iPlaybalanceLeft;
|
sl@0
|
339 |
TInt iPlaybalanceRight;
|
sl@0
|
340 |
|
sl@0
|
341 |
};
|
sl@0
|
342 |
|
sl@0
|
343 |
/*
|
sl@0
|
344 |
*
|
sl@0
|
345 |
* RStepA3FDevSoundPlayStopMultipleTimes
|
sl@0
|
346 |
*
|
sl@0
|
347 |
*/
|
sl@0
|
348 |
class RStepA3FDevSoundPlayStopMultipleTimes : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
349 |
{
|
sl@0
|
350 |
public:
|
sl@0
|
351 |
static RStepA3FDevSoundPlayStopMultipleTimes* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
352 |
|
sl@0
|
353 |
private:
|
sl@0
|
354 |
|
sl@0
|
355 |
RStepA3FDevSoundPlayStopMultipleTimes(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
356 |
|
sl@0
|
357 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
358 |
virtual void DoKickoffTestL();
|
sl@0
|
359 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
360 |
virtual void DoTimerCallback();
|
sl@0
|
361 |
|
sl@0
|
362 |
private:
|
sl@0
|
363 |
TInt iRepeatCount;
|
sl@0
|
364 |
TInt iRepeatCounter;
|
sl@0
|
365 |
TBool iCheckTimer;
|
sl@0
|
366 |
|
sl@0
|
367 |
};
|
sl@0
|
368 |
|
sl@0
|
369 |
/*
|
sl@0
|
370 |
*
|
sl@0
|
371 |
* RStepA3FDevSoundPlayEOFPlayMultipleTimes
|
sl@0
|
372 |
*
|
sl@0
|
373 |
*/
|
sl@0
|
374 |
class RStepA3FDevSoundPlayEOFPlayMultipleTimes : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
375 |
{
|
sl@0
|
376 |
public:
|
sl@0
|
377 |
static RStepA3FDevSoundPlayEOFPlayMultipleTimes* NewL(const TDesC& aTestName, const TDesC& aSectName);
|
sl@0
|
378 |
|
sl@0
|
379 |
private:
|
sl@0
|
380 |
RStepA3FDevSoundPlayEOFPlayMultipleTimes(const TDesC& aTestName, const TDesC& aSectName);
|
sl@0
|
381 |
|
sl@0
|
382 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
383 |
virtual void DoKickoffTestL();
|
sl@0
|
384 |
|
sl@0
|
385 |
// From MDevSoundObserver
|
sl@0
|
386 |
virtual void PlayError(TInt aError);
|
sl@0
|
387 |
|
sl@0
|
388 |
private:
|
sl@0
|
389 |
TInt iRepeatCount;
|
sl@0
|
390 |
TInt iRepeatCounter;
|
sl@0
|
391 |
|
sl@0
|
392 |
};
|
sl@0
|
393 |
|
sl@0
|
394 |
/*
|
sl@0
|
395 |
*
|
sl@0
|
396 |
* RStepA3FDevSoundInititalizeDuringInitialize
|
sl@0
|
397 |
*
|
sl@0
|
398 |
*/
|
sl@0
|
399 |
class RStepA3FDevSoundInititalizeDuringInitialize : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
400 |
{
|
sl@0
|
401 |
public:
|
sl@0
|
402 |
static RStepA3FDevSoundInititalizeDuringInitialize* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
403 |
|
sl@0
|
404 |
private:
|
sl@0
|
405 |
RStepA3FDevSoundInititalizeDuringInitialize(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
406 |
|
sl@0
|
407 |
// From RAsyncTestStep
|
sl@0
|
408 |
virtual void KickoffTestL();
|
sl@0
|
409 |
|
sl@0
|
410 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
411 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
412 |
|
sl@0
|
413 |
// From MDevSoundObserver
|
sl@0
|
414 |
virtual void InitializeComplete(TInt aError);
|
sl@0
|
415 |
|
sl@0
|
416 |
private:
|
sl@0
|
417 |
TInt iSecondInitErr;
|
sl@0
|
418 |
|
sl@0
|
419 |
};
|
sl@0
|
420 |
|
sl@0
|
421 |
/*
|
sl@0
|
422 |
*
|
sl@0
|
423 |
* RStepA3FDevSoundPlayInitDuringPlayInit
|
sl@0
|
424 |
*
|
sl@0
|
425 |
*/
|
sl@0
|
426 |
class RStepA3FDevSoundPlayInitDuringPlayInit : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
427 |
{
|
sl@0
|
428 |
public:
|
sl@0
|
429 |
static RStepA3FDevSoundPlayInitDuringPlayInit* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
430 |
|
sl@0
|
431 |
private:
|
sl@0
|
432 |
RStepA3FDevSoundPlayInitDuringPlayInit(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
433 |
|
sl@0
|
434 |
// From RASyncTestStep
|
sl@0
|
435 |
virtual void KickoffTestL();
|
sl@0
|
436 |
|
sl@0
|
437 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
438 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
439 |
|
sl@0
|
440 |
// From MDevSoundObserver
|
sl@0
|
441 |
virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
|
sl@0
|
442 |
|
sl@0
|
443 |
private:
|
sl@0
|
444 |
TInt iFirstPlayInitErr;
|
sl@0
|
445 |
TInt iSecondPlayInitErr;
|
sl@0
|
446 |
|
sl@0
|
447 |
};
|
sl@0
|
448 |
|
sl@0
|
449 |
/*
|
sl@0
|
450 |
*
|
sl@0
|
451 |
* RStepA3FDevSoundVolumeCrop
|
sl@0
|
452 |
*
|
sl@0
|
453 |
*/
|
sl@0
|
454 |
class RStepA3FDevSoundVolumeCrop : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
455 |
{
|
sl@0
|
456 |
public:
|
sl@0
|
457 |
static RStepA3FDevSoundVolumeCrop* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
458 |
|
sl@0
|
459 |
private:
|
sl@0
|
460 |
RStepA3FDevSoundVolumeCrop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
461 |
|
sl@0
|
462 |
// From RAsyncTestStep
|
sl@0
|
463 |
virtual void KickoffTestL();
|
sl@0
|
464 |
|
sl@0
|
465 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
466 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
467 |
|
sl@0
|
468 |
private:
|
sl@0
|
469 |
TInt iIncreaseMaxVolume;
|
sl@0
|
470 |
TInt iMinVolume;
|
sl@0
|
471 |
|
sl@0
|
472 |
};
|
sl@0
|
473 |
|
sl@0
|
474 |
/*
|
sl@0
|
475 |
*
|
sl@0
|
476 |
* RStepA3FDevSoundInitializeForConverting
|
sl@0
|
477 |
*
|
sl@0
|
478 |
*/
|
sl@0
|
479 |
class RStepA3FDevSoundInitializeForConverting : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
480 |
{
|
sl@0
|
481 |
public:
|
sl@0
|
482 |
static RStepA3FDevSoundInitializeForConverting* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
483 |
|
sl@0
|
484 |
private:
|
sl@0
|
485 |
RStepA3FDevSoundInitializeForConverting(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
486 |
|
sl@0
|
487 |
// From RAsyncTestStep
|
sl@0
|
488 |
virtual void KickoffTestL();
|
sl@0
|
489 |
|
sl@0
|
490 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
491 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
492 |
|
sl@0
|
493 |
};
|
sl@0
|
494 |
|
sl@0
|
495 |
/*
|
sl@0
|
496 |
*
|
sl@0
|
497 |
* RStepA3FDevSoundGetSampleNumsDuringPlayStop
|
sl@0
|
498 |
*
|
sl@0
|
499 |
*/
|
sl@0
|
500 |
class RStepA3FDevSoundGetSampleNumsAfterStop : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
501 |
{
|
sl@0
|
502 |
public:
|
sl@0
|
503 |
static RStepA3FDevSoundGetSampleNumsAfterStop* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
504 |
|
sl@0
|
505 |
private:
|
sl@0
|
506 |
RStepA3FDevSoundGetSampleNumsAfterStop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
507 |
|
sl@0
|
508 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
509 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
510 |
virtual void DoTimerCallback();
|
sl@0
|
511 |
|
sl@0
|
512 |
private:
|
sl@0
|
513 |
TBool iCheckTimer;
|
sl@0
|
514 |
|
sl@0
|
515 |
};
|
sl@0
|
516 |
|
sl@0
|
517 |
/*
|
sl@0
|
518 |
*
|
sl@0
|
519 |
* RStepA3FDevSoundCancelInitializePlay
|
sl@0
|
520 |
*
|
sl@0
|
521 |
*/
|
sl@0
|
522 |
class RStepA3FDevSoundCancelInitializePlay : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
523 |
{
|
sl@0
|
524 |
public:
|
sl@0
|
525 |
static RStepA3FDevSoundCancelInitializePlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
526 |
|
sl@0
|
527 |
private:
|
sl@0
|
528 |
RStepA3FDevSoundCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
529 |
|
sl@0
|
530 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
531 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
532 |
virtual void DoTimerCallback();
|
sl@0
|
533 |
virtual void KickoffTestL();
|
sl@0
|
534 |
|
sl@0
|
535 |
// From MDevSoundObserver
|
sl@0
|
536 |
virtual void InitializeComplete(TInt aError);
|
sl@0
|
537 |
|
sl@0
|
538 |
};
|
sl@0
|
539 |
|
sl@0
|
540 |
/*
|
sl@0
|
541 |
*
|
sl@0
|
542 |
* RStepA3FDevSoundNegCancelInitializePlay
|
sl@0
|
543 |
*
|
sl@0
|
544 |
*/
|
sl@0
|
545 |
class RStepA3FDevSoundNegCancelInitializePlay : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
546 |
{
|
sl@0
|
547 |
public:
|
sl@0
|
548 |
static RStepA3FDevSoundNegCancelInitializePlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
549 |
|
sl@0
|
550 |
private:
|
sl@0
|
551 |
RStepA3FDevSoundNegCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
552 |
|
sl@0
|
553 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
554 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
555 |
virtual void KickoffTestL();
|
sl@0
|
556 |
|
sl@0
|
557 |
// From MDevSoundObserver
|
sl@0
|
558 |
virtual void InitializeComplete(TInt aError);
|
sl@0
|
559 |
|
sl@0
|
560 |
};
|
sl@0
|
561 |
|
sl@0
|
562 |
/*
|
sl@0
|
563 |
*
|
sl@0
|
564 |
* RStepA3FDevSoundEmptyBuffersInCreatedState
|
sl@0
|
565 |
*
|
sl@0
|
566 |
*/
|
sl@0
|
567 |
class RStepA3FDevSoundEmptyBuffersInCreatedState : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
568 |
{
|
sl@0
|
569 |
public:
|
sl@0
|
570 |
static RStepA3FDevSoundEmptyBuffersInCreatedState* NewL(const TDesC& aTestName);
|
sl@0
|
571 |
|
sl@0
|
572 |
private:
|
sl@0
|
573 |
RStepA3FDevSoundEmptyBuffersInCreatedState(const TDesC& aTestName);
|
sl@0
|
574 |
|
sl@0
|
575 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
576 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
577 |
virtual void KickoffTestL();
|
sl@0
|
578 |
|
sl@0
|
579 |
};
|
sl@0
|
580 |
|
sl@0
|
581 |
/*
|
sl@0
|
582 |
*
|
sl@0
|
583 |
* RStepA3FDevSoundEmptyBuffersInInitializedState
|
sl@0
|
584 |
*
|
sl@0
|
585 |
*/
|
sl@0
|
586 |
class RStepA3FDevSoundEmptyBuffersInInitializedState : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
587 |
{
|
sl@0
|
588 |
public:
|
sl@0
|
589 |
static RStepA3FDevSoundEmptyBuffersInInitializedState* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
590 |
|
sl@0
|
591 |
private:
|
sl@0
|
592 |
RStepA3FDevSoundEmptyBuffersInInitializedState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
593 |
|
sl@0
|
594 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
595 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
596 |
virtual void KickoffTestL();
|
sl@0
|
597 |
|
sl@0
|
598 |
};
|
sl@0
|
599 |
|
sl@0
|
600 |
/*
|
sl@0
|
601 |
*
|
sl@0
|
602 |
* RStepA3FDevSoundEmptyBuffersInInitializingState
|
sl@0
|
603 |
*
|
sl@0
|
604 |
*/
|
sl@0
|
605 |
class RStepA3FDevSoundEmptyBuffersInInitializingState : public RTestStepA3FDevSoundPlayBase
|
sl@0
|
606 |
{
|
sl@0
|
607 |
public:
|
sl@0
|
608 |
static RStepA3FDevSoundEmptyBuffersInInitializingState* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
609 |
|
sl@0
|
610 |
private:
|
sl@0
|
611 |
RStepA3FDevSoundEmptyBuffersInInitializingState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType);
|
sl@0
|
612 |
|
sl@0
|
613 |
// From RTestStepA3FDevSoundPlayBase
|
sl@0
|
614 |
virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError);
|
sl@0
|
615 |
virtual void KickoffTestL();
|
sl@0
|
616 |
|
sl@0
|
617 |
// From MDevSoundObserver
|
sl@0
|
618 |
virtual void InitializeComplete(TInt aError);
|
sl@0
|
619 |
|
sl@0
|
620 |
};
|
sl@0
|
621 |
|
sl@0
|
622 |
#endif // TSI_A3F_DEVSOUND_PLAY_H
|