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 __MMFSWCODECCONVERTDATAPATH_H__
17 #define __MMFSWCODECCONVERTDATAPATH_H__
21 #include "mmfSwCodecDataPath.h"
24 * Derived class for convert datapath internal to the Sw codec wrapper
27 class CMMFSwCodecConvertDataPath : public CMMFSwCodecDataPathX
30 static CMMFSwCodecConvertDataPath* NewL();
31 virtual ~CMMFSwCodecConvertDataPath();
32 virtual TInt SetObserver(MMMFHwDeviceObserver &aHwObserver);
33 virtual TInt AddCodec(CMMFSwCodec& aCodec);
37 virtual void BufferFilledL(CMMFDataBuffer& aBuffer);
38 virtual void BufferEmptiedL(const CMMFDataBuffer& aBuffer);
39 virtual void SoundDeviceException(TInt aError);
40 virtual RMdaDevSound& Device();
41 void FillSourceBufferL();
42 void FillSinkBufferL();
43 void EmptySinkBufferL();
45 CMMFSwCodecConvertDataPath() {};
49 * Private class for the convert datapath that is an active object
50 * used to drive the conversion. This class performs the main data transfer
51 * between the source and the sink.
52 * This is done in a separate class as opposed to CMMFSwCodecConvertDataPath
53 * because the class needs to be an active object to avoid recursive call stacks
54 * in cases where the source and sink are not active objects - which is
55 * the case with descriptors. Making CMMFSwCodecConvertDataPath derive
56 * from CActive is less desirable as it would involve multiple inheretence
59 class CDataPathConverter : public CActive
70 CDataPathConverter(CMMFSwCodecConvertDataPath& aParent, TInt aPriority);
71 ~CDataPathConverter();
73 void BufferFilledL(CMMFDataBuffer& aBuffer);
74 void BufferEmptiedL(CMMFDataBuffer& aBuffer);
75 void ChangeConvertState(TConvertState aNewConvertState);
78 virtual TInt RunError(TInt aError);
79 virtual void DoCancel();
81 void FillSourceBufferL();
82 void FillSinkBufferL();
83 void EmptySinkBufferL();
85 TConvertState iConvertState;
86 CMMFSwCodecConvertDataPath& iParent;
87 CMMFDataBuffer* iSourceBuffer;
90 CDataPathConverter* iDataPathConverter;
91 CMMFDataBuffer* iSourceBuffer;
92 CMMFDataBuffer* iSinkBuffer;
93 TBool iNoMoreSourceData;
94 TUint iSinkBufferSize;
95 TUint iSourceBufferSize;
96 RMdaDevSound iDummyDevSound;//don't need a devsound for convert