Update contrib.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __MMFSWCODECPLAYDATAPATH_H__
17 #define __MMFSWCODECPLAYDATAPATH_H__
20 #include "mmfSwCodecDataPath.h"
21 #include <mmf/server/mmfswcodecwrapper.h>
24 class CMMFSwCodecPlayDataPath; //fwd ref
25 class CMMFSwCodecUtility; // fwd ref
26 class MEmptyBuffersCustomInterface; // fwd ref
27 class MSetVbrFlagCustomInterface; // fwd ref
30 * Active object used by the CMMFSwCodecPlayDataPath to send data to the sound
31 * driver This particular active object encapsulates the asynchronous play
32 * function, where a buffer of data is sent to the WINS audio device, and the
33 * active object's RunL is called when the buffer has been consumed by the
37 class CDataPathPlayer : public CActive
40 CDataPathPlayer(CMMFSwCodecPlayDataPath& aParent, TInt aPriority);
44 void PlayData(const CMMFDataBuffer& aData);
47 virtual TInt RunError(TInt aError);
48 virtual void DoCancel();
49 virtual void Error(TInt aError);
51 CMMFSwCodecPlayDataPath& iParent;
52 const CMMFDataBuffer* iDataFromSource;
57 * Active object used by CMMFSwCodecPlayDataPath to listening for error messages
58 * from the WINS audio device. If this object's RunL is called, playback has
59 * been terminated for some reason. The active object then
60 * notifies its parent the datapath, so that proper cleanup and client
61 * notification can occur.
64 class CSoundDevPlayErrorReceiver : public CActive
67 CSoundDevPlayErrorReceiver(CMMFSwCodecPlayDataPath& aParent, TInt aPriority);
68 ~CSoundDevPlayErrorReceiver();
72 virtual void DoCancel();
74 CMMFSwCodecPlayDataPath& iParent;
79 * Derived class for play datapath internal to the Sw codec wrapper
82 class CMMFSwCodecPlayDataPath : public CMMFSwCodecDataPathX,
83 public MEmptyBuffersCustomInterface,
84 public MSetVbrFlagCustomInterface,
85 public MTimePlayedCustomInterface,
86 public MIgnoreUnderflowEventsCustomInterface
89 static CMMFSwCodecPlayDataPath* NewL();
90 virtual ~CMMFSwCodecPlayDataPath();
91 virtual TInt SetObserver(MMMFHwDeviceObserver &aHwObserver);
92 virtual TInt AddCodec(CMMFSwCodec& aCodec);
96 virtual void BufferFilledL(CMMFDataBuffer& aBuffer);
97 virtual void BufferEmptiedL(const CMMFDataBuffer& aBuffer);
98 virtual void SoundDeviceException(TInt aError);
99 virtual RMdaDevSound& Device();
100 virtual void SetPlayCustomInterface(MPlayCustomInterface& aCustomInterface);
101 virtual TInt EmptyBuffers();
102 virtual TAny* CustomInterface(TUid aInterfaceId);
103 //From MSetVbrFlagCustomInterface
104 virtual void SetVbrFlag();
105 virtual TInt GetTimePlayed(TTimeIntervalMicroSeconds& aTime);
106 virtual void IgnoreUnderflowEvents();
108 CMMFSwCodecPlayDataPath() {};
110 void FillSourceBufferL();
111 void FillSoundDeviceBufferL();
113 CDataPathPlayer* iAudioPlayer;
114 CSoundDevPlayErrorReceiver* iSoundDeviceErrorReceiver;
115 RMdaDevSound iSoundDevice;
116 CMMFDataBuffer* iSourceBuffer;
117 CMMFDataBuffer* iSoundDeviceBuffer;
118 TBool iNoMoreSourceData;
119 TBool iSinkCanReceive;
120 TUint iSourceBufferSize;
121 TUint iSoundDevBufferSize;
122 CMMFSwCodecUtility* iUtility;
123 TBool iRampAudioSample;
124 MPlayCustomInterface* iCustomInterface; // not owned
125 TTimeIntervalMicroSeconds iVolumeRamp;
131 TBool iNoMoreSoundDeviceData;
132 TBool iIgnoreUnderflow;