blob: fdd6ccd0b1bf475ed269ad5ccf74ff08dc79b139 [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
* -------------------------------------------------------------------
*/
#ifndef PVMF_OMX_ENC_FACTORY_H_INCLUDED
#define PVMF_OMX_ENC_FACTORY_H_INCLUDED
#ifndef OSCL_BASE_H_INCLUDED
#include "oscl_base.h"
#endif
#ifndef OSCL_SCHEDULER_AO_H_INCLUDED
#include "oscl_scheduler_ao.h"
#endif
// Forward declaration
class PVMFNodeInterface;
#define KPVMFOMXVideoEncNodeUuid PVUuid(0x7f39e8d1,0x1232,0x4394,0xad,0x85,0x43,0xe3,0x29,0x11,0x9a,0x4a)
#define KPVMFOMXAudioEncNodeUuid PVUuid(0x6f29e7d1,0x2222,0x3384,0xcd,0x55,0x23,0xa3,0x19,0x51,0xaa,0xca)
/**
* PVMFOMXEncNodeFactory Class
*
* a singleton class which instantiates and provides
* access to OMX encoder node. It returns a PVMFNodeInterface
* reference, the interface class of the PVMFOMXEncNode.
*
* The client is expected to contain and maintain a pointer to the instance created
* while the node is active.
*/
class PVMFOMXEncNodeFactory
{
public:
/**
* Creates an instance of a PVMFOMXEncNode. If the creation fails, this function will leave.
*
* @param aPriority The active object priority for the node. Default is standard priority if not specified
* @returns A pointer to an instance of PVMFOMXEncNode as PVMFNodeInterface reference or leaves if instantiation fails
**/
OSCL_IMPORT_REF static PVMFNodeInterface* CreatePVMFOMXEncNode(int32 aPriority = OsclActiveObject::EPriorityNominal);
/**
* Deletes an instance of PVMFOMXEncNode
* and reclaims all allocated resources. An instance can be deleted only in
* the idle state. An attempt to delete in any other state will fail and return false.
*
* @param aNode The PVMFOMXEncNode instance to be deleted
* @returns A status code indicating success or failure of deletion
**/
OSCL_IMPORT_REF static bool DeletePVMFOMXEncNode(PVMFNodeInterface* aNode);
};
#endif // PVMF_OMX_ENC_FACTORY_H_INCLUDED