sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef PCMINPUTPORT_H sl@0: #define PCMINPUTPORT_H sl@0: sl@0: sl@0: #include "pcmprocessingunit.h" sl@0: #include "omxinputport.h" sl@0: sl@0: class MMdfOutputPort; sl@0: class MMdfOutputPortObserver; sl@0: class CPcmOutputPort; sl@0: class CMMFBuffer; sl@0: sl@0: sl@0: class CPcmInputPort : public COmxInputPort sl@0: { sl@0: public: sl@0: static CPcmInputPort* NewL(TInt aIndex, COmxProcessingUnit* aParent, TPcmDataType aDataType); sl@0: sl@0: TInt MipConfigure(const TPuConfig& aConfiguration); sl@0: virtual void MipInitialize(); sl@0: sl@0: private: sl@0: void ConstructL(TInt aIndex, COmxProcessingUnit* aParent); sl@0: CPcmInputPort(TPcmDataType aDataType); sl@0: private: sl@0: sl@0: // PCM configuration parameters sl@0: TInt iSampleRate; sl@0: TInt iChannels; sl@0: TBool iInterleaved; sl@0: TPcmDataType iDataType; sl@0: }; sl@0: sl@0: #endif // PCMINPUTPORT_H