omxilcomp/omxilgeneric/filesink/inc/omxilfilesinkconfigmanager.h
changeset 0 58be5850fb6c
equal deleted inserted replaced
-1:000000000000 0:58be5850fb6c
       
     1 // Copyright (c) 2008-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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 /**
       
    19  * @file
       
    20  * @internalTechnology
       
    21  */
       
    22 
       
    23 #ifndef OMXILFILESINKCONFIGMANAGER_H
       
    24 #define OMXILFILESINKCONFIGMANAGER_H
       
    25 
       
    26 #include <openmax/il/common/omxilconfigmanager.h>
       
    27 
       
    28 class COmxILFileSinkProcessingFunction;
       
    29 
       
    30 NONSHARABLE_CLASS(COmxILFileSinkConfigManager) : public COmxILConfigManager
       
    31 	{
       
    32 public:
       
    33 	static COmxILFileSinkConfigManager* NewL(
       
    34 			const TDesC8& aComponentName,
       
    35 			const OMX_VERSIONTYPE& aComponentVersion,
       
    36 			const RPointerArray<TDesC8>& aComponentRoleList,
       
    37 			COmxILFileSinkProcessingFunction& aFileSinkPF);
       
    38 
       
    39 	~COmxILFileSinkConfigManager();
       
    40 	
       
    41 	OMX_ERRORTYPE GetParameter(OMX_INDEXTYPE aParamIndex, TAny* apComponentParameterStructure) const;
       
    42 	OMX_ERRORTYPE SetParameter(OMX_INDEXTYPE aParamIndex, const TAny* apComponentParameterStructure, OMX_BOOL aInitTime = OMX_TRUE);
       
    43 	
       
    44 private:
       
    45 	COmxILFileSinkConfigManager(COmxILFileSinkProcessingFunction& aFileSinkPF);
       
    46 	void ConstructL(const TDesC8& aComponentName, const OMX_VERSIONTYPE& aComponentVersion, const RPointerArray<TDesC8>& aComponentRoleList);
       
    47 
       
    48 private:
       
    49 	COmxILFileSinkProcessingFunction& iFileSinkPF;
       
    50 	};
       
    51 
       
    52 #endif // OMXILFILESINKCONFIGMANAGER_H