os/mm/devsound/devsoundpluginsupport/src/sounddevice/SoundDeviceBody.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-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 SOUNDDEVICEBODY_H
sl@0
    17
#define SOUNDDEVICEBODY_H
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <mmf/server/sounddevice.h>
sl@0
    21
sl@0
    22
class MMMFDevSoundPlugin;
sl@0
    23
sl@0
    24
/**
sl@0
    25
@internalComponent
sl@0
    26
sl@0
    27
This is the Body for CMMFDevSound. For descriptions of methods, see 
sl@0
    28
MMFDevSound itself.
sl@0
    29
*/
sl@0
    30
NONSHARABLE_CLASS( CMMFDevSound::CBody ) : public CBase
sl@0
    31
	{
sl@0
    32
public:
sl@0
    33
sl@0
    34
	/**
sl@0
    35
	Factory function - returning instance of class.
sl@0
    36
	Leaves on failure.
sl@0
    37
	*/
sl@0
    38
	static CBody* NewL();
sl@0
    39
sl@0
    40
	/**
sl@0
    41
	Destructor.
sl@0
    42
sl@0
    43
	Deletes all objects and releases all resource owned by this
sl@0
    44
	instance.
sl@0
    45
	*/
sl@0
    46
	~CBody();
sl@0
    47
sl@0
    48
	// public functions forwarded from CMMFDevSound
sl@0
    49
    void InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode);
sl@0
    50
	void InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode);
sl@0
    51
	void InitializeL(MDevSoundObserver& aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode);
sl@0
    52
	TMMFCapabilities Capabilities();
sl@0
    53
	TMMFCapabilities Config() const;
sl@0
    54
	void SetConfigL(const TMMFCapabilities& aCaps);
sl@0
    55
	TInt MaxVolume();
sl@0
    56
	TInt Volume();
sl@0
    57
	void SetVolume(TInt aVolume);
sl@0
    58
	TInt MaxGain();
sl@0
    59
	TInt Gain();
sl@0
    60
	void SetGain(TInt aGain);
sl@0
    61
	void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
sl@0
    62
	void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
sl@0
    63
	void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
sl@0
    64
	void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
sl@0
    65
	void PlayInitL();
sl@0
    66
	void RecordInitL();
sl@0
    67
	void PlayData();
sl@0
    68
	void RecordData();
sl@0
    69
	void Stop();
sl@0
    70
	void Pause();
sl@0
    71
	TInt SamplesRecorded();
sl@0
    72
	TInt SamplesPlayed();
sl@0
    73
	void PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration);
sl@0
    74
	void PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration);
sl@0
    75
	void PlayDTMFStringL(const TDesC& aDTMFString);
sl@0
    76
	void PlayToneSequenceL(const TDesC8& aData);
sl@0
    77
	void PlayFixedSequenceL(TInt aSequenceNumber);
sl@0
    78
	void SetToneRepeats(TInt aRepeatCount,
sl@0
    79
			const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
sl@0
    80
	void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
sl@0
    81
							TTimeIntervalMicroSeconds32& aToneOffLength,
sl@0
    82
							TTimeIntervalMicroSeconds32& aPauseLength);
sl@0
    83
	void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
sl@0
    84
	void SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings);
sl@0
    85
	TAny* CustomInterface(TUid aInterfaceId);
sl@0
    86
	TInt FixedSequenceCount();
sl@0
    87
	const TDesC& FixedSequenceName(TInt aSequenceNumber);
sl@0
    88
	void GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const;
sl@0
    89
	void GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const;
sl@0
    90
protected:
sl@0
    91
sl@0
    92
	CBody();
sl@0
    93
	void ConstructL();
sl@0
    94
sl@0
    95
	MMMFDevSoundPlugin* iPlugin;
sl@0
    96
	TUid iDestructorKey;
sl@0
    97
	};
sl@0
    98
	
sl@0
    99
#include "SoundDeviceBody.inl"
sl@0
   100
sl@0
   101
#endif // SOUNDDEVICEBODY_H