omxil/omxilcomponentcommon/src/common/omxilclientclockport.h
author Tapani Kanerva <tapani.kanerva@nice.fi>
Tue, 16 Nov 2010 14:11:25 +0200
branchRCL_3
changeset 67 b35006be8823
parent 0 40261b775718
child 16 eedf2dcd43c6
permissions -rw-r--r--
Bug 3673 - Seeking via grabbing the Music Player progress bar does not work.

// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//


/**
   @file
   @internalComponent
*/

#ifndef OMXILCLIENTCLOCKPORT_H
#define OMXILCLIENTCLOCKPORT_H

#include "omxilotherport.h"
#include "omxilclockcomponentcmdsif.h"

NONSHARABLE_CLASS(COmxILClientClockPort) : public COmxILOtherPort, public MOmxILClockComponentCmdsIf
	{
public:
	IMPORT_C static COmxILClientClockPort* NewL(const TOmxILCommonPortData& aCommonPortData,
						    					const RArray<OMX_OTHER_FORMATTYPE>& aSupportedOtherFormats);

	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE GetMediaTime(OMX_TICKS& aMediaTime) const;
	
	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE GetWallTime(OMX_TICKS& aWallTime) const;

	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE GetClockState(OMX_TIME_CONFIG_CLOCKSTATETYPE& aClockState) const;
	
	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE MediaTimeRequest(const OMX_PTR apPrivate, const OMX_TICKS aMediaTime, const OMX_TICKS aOffset) const;
	
	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE SetStartTime(const OMX_TICKS aStartTime) const;
	
	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE SetVideoReference(const OMX_TICKS aVideRef) const;
	
	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_ERRORTYPE SetAudioReference(const OMX_TICKS aAudioRef) const;
	
	// From MOmxILClockComponentCmdsIf
	IMPORT_C OMX_BOOL IsClockComponentAvailable() const;
	
	// From COmxILPort
	OMX_ERRORTYPE GetLocalOmxParamIndexes(RArray<TUint>& aIndexArray) const;

	// From COmxILPort
	OMX_ERRORTYPE GetLocalOmxConfigIndexes(RArray<TUint>& aIndexArray) const;

	// From COmxILPort
	OMX_ERRORTYPE GetParameter(OMX_INDEXTYPE aParamIndex,
	                                    TAny* apComponentParameterStructure) const;

	// From COmxILPort
	OMX_ERRORTYPE SetParameter(OMX_INDEXTYPE aParamIndex,
	                                    const TAny* apComponentParameterStructure,
	                                    TBool& aUpdateProcessingFunction);
										
protected:
	// From COmxILPort
	OMX_ERRORTYPE SetFormatInPortDefinition(const OMX_PARAM_PORTDEFINITIONTYPE& aPortDefinition,
							 						TBool& aUpdateProcessingFunction);

	// From COmxILPort
	TBool IsTunnelledPortCompatible(const OMX_PARAM_PORTDEFINITIONTYPE& aPortDefinition) const;

private:
	
	COmxILClientClockPort(const TOmxILCommonPortData& aCommonPortData);

	OMX_ERRORTYPE GetTime(OMX_TICKS& aTime, const OMX_INDEXTYPE aTimeIndex) const;

	OMX_ERRORTYPE SetTime(const OMX_TICKS aTime, const OMX_INDEXTYPE aTimeIndex) const;
	
	const OMX_VERSIONTYPE iSpecVersion;
	};

#endif // COMXILCLIENTCLOCKPORT_H