sl@0
|
1 |
// Copyright (c) 2003-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __MMFSWCODECWRAPPERCUSTOMINTERFACES_H__
|
sl@0
|
17 |
#define __MMFSWCODECWRAPPERCUSTOMINTERFACES_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
* Implementation of custom interface class for play functionality created by the
|
sl@0
|
22 |
* CMMFSwCodecWrapper::CustomInterface() method. It provides
|
sl@0
|
23 |
* access to miscellaneous functionality such as volume settings
|
sl@0
|
24 |
* Ports of sw codec wrapper may do this differently eg via EAP
|
sl@0
|
25 |
* note don't use RMdaDevSound::TCurrentSoundFormatBuf so send
|
sl@0
|
26 |
* across the sample rate and channels because 1)it would mean
|
sl@0
|
27 |
* mmfswcodecwrapper.h would have to include mdasound.h and 2)
|
sl@0
|
28 |
* the buffer size and encoding members are not required 3)3rd party ports
|
sl@0
|
29 |
* may not use RMdaDevSound
|
sl@0
|
30 |
* Note also that this interface is just a simple interface to get
|
sl@0
|
31 |
* and set values. No checking is perfomed on the values sent (hence the
|
sl@0
|
32 |
* Set methods do not return an error code.)
|
sl@0
|
33 |
* @released
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class TPlayCustomInterface : public MPlayCustomInterface
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
TPlayCustomInterface() : iVolume(0),iBytesPlayed(0),iDevice(NULL),iRampDuration(0) {}
|
sl@0
|
39 |
void SetVolume(TUint aVolume);
|
sl@0
|
40 |
TUint Volume() {return iVolume;};
|
sl@0
|
41 |
TUint BytesPlayed();
|
sl@0
|
42 |
void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration) {iRampDuration = aRampDuration;};
|
sl@0
|
43 |
TTimeIntervalMicroSeconds& VolumeRamp() {return iRampDuration;};
|
sl@0
|
44 |
void SetDevice(RMdaDevSound* iDevice);//not for use outside codec wrapper
|
sl@0
|
45 |
private:
|
sl@0
|
46 |
TUint iVolume;
|
sl@0
|
47 |
TUint iBytesPlayed;
|
sl@0
|
48 |
RMdaDevSound* iDevice;
|
sl@0
|
49 |
TTimeIntervalMicroSeconds iRampDuration;
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
* Implementation of custom interface class for record functionality created by the
|
sl@0
|
54 |
* CMMFSwCodecWrapper::CustomInterface() method. It provides
|
sl@0
|
55 |
* access to miscelaneous functionality such as volume settings
|
sl@0
|
56 |
* Ports of sw codec wrapper may do this differently eg via EAP
|
sl@0
|
57 |
* note don't use RMdaDevSound::TCurrentSoundFormatBuf so send
|
sl@0
|
58 |
* across the sample rate and channels because 1)it would mean
|
sl@0
|
59 |
* mmfswcodecwrapper.h would have to include mdasound.h and 2)
|
sl@0
|
60 |
* the buffer size and encoding members are not required 3)3rd party ports
|
sl@0
|
61 |
* may not use RMdaDevSound
|
sl@0
|
62 |
* Note also that this interface is just a simple interface to get
|
sl@0
|
63 |
* and set values. No checking is perfomed on the values sent. (hence the
|
sl@0
|
64 |
* Set methods do not return an error code.)
|
sl@0
|
65 |
* @released
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
class TRecordCustomInterface : public MRecordCustomInterface
|
sl@0
|
68 |
{
|
sl@0
|
69 |
public:
|
sl@0
|
70 |
TRecordCustomInterface() : iGain(0), iBytesRecorded(0), iDataPath(NULL) {}
|
sl@0
|
71 |
void SetGain(TUint aGain) {iGain = aGain;};
|
sl@0
|
72 |
void SetDataPath(CMMFSwCodecRecordDataPath* aDataPath){iDataPath = aDataPath;};
|
sl@0
|
73 |
TUint Gain() {return iGain;};
|
sl@0
|
74 |
TUint BytesRecorded();
|
sl@0
|
75 |
private:
|
sl@0
|
76 |
TUint iGain;
|
sl@0
|
77 |
TUint iBytesRecorded;
|
sl@0
|
78 |
CMMFSwCodecRecordDataPath* iDataPath;
|
sl@0
|
79 |
};
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
#endif
|
sl@0
|
83 |
|