blob: 9b806bff61473bada7c324c64780086840f8a7a8 [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 PV_2WAY_ENC_DATA_CHANNEL_DATAPATH_H_INCLUDED
#define PV_2WAY_ENC_DATA_CHANNEL_DATAPATH_H_INCLUDED
#ifndef PV_2WAY_DATA_CHANNEL_DATAPATH_H_INCLUDED
#include "pv_2way_data_channel_datapath.h"
#endif
class CPV2WayEncDataChannelDatapath : public CPV2WayDataChannelDatapath
{
public:
static CPV2WayEncDataChannelDatapath *NewL(PVLogger *aLogger,
PVMFFormatType aFormat,
CPV324m2Way *a2Way);
~CPV2WayEncDataChannelDatapath() {};
void TSCPortClosed();
PVMFPortInterface *GetTSCPort();
PVMFPortInterface *GetSrcPort();
CPV2WayPort *GetSourceInputPort()
{
return &iSourceInputPort;
}
void SetSourceInputPort(PVMFPortInterface *aPort);
void SetFilePlayPort(PVMFPortInterface *aPort)
{
iFilePlayPort = aPort;
}
void UseFilePlayPort(bool aUseFilePlayPort);
private:
CPV2WayEncDataChannelDatapath(PVLogger *aLogger,
PVMFFormatType aFormat,
CPV324m2Way *a2Way) : CPV2WayDataChannelDatapath(aLogger, EEncodeDatapath, aFormat, a2Way),
iFilePlayPort(NULL)
{};
TPV2WayNode* iNode;
void OpenComplete();
bool CheckPathSpecificOpen();
bool PathSpecificClose();
bool CheckPathSpecificStart();
CPV2WayPort iSourceInputPort;
PVMFPortInterface *iFilePlayPort;
friend class CPV324m2Way;
};
#endif //PV_2WAY_ENC_DATA_CHANNEL_DATAPATH_H_INCLUDED