Home | History | Annotate | Download | only in src
      1 /* ------------------------------------------------------------------
      2  * Copyright (C) 1998-2009 PacketVideo
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
     13  * express or implied.
     14  * See the License for the specific language governing permissions
     15  * and limitations under the License.
     16  * -------------------------------------------------------------------
     17  */
     18 #ifndef PV_2WAY_DEC_DATA_CHANNEL_DATAPATH_H_INCLUDED
     19 #define PV_2WAY_DEC_DATA_CHANNEL_DATAPATH_H_INCLUDED
     20 
     21 #ifndef PV_2WAY_DATA_CHANNEL_DATAPATH_H_INCLUDED
     22 #include "pv_2way_data_channel_datapath.h"
     23 #endif
     24 
     25 
     26 class CPV2WayDecDataChannelDatapath : public CPV2WayDataChannelDatapath
     27 {
     28     public:
     29         static CPV2WayDecDataChannelDatapath *NewL(PVLogger *aLogger,
     30                 PVMFFormatType aFormat,
     31                 CPV324m2Way *a2Way);
     32 
     33         ~CPV2WayDecDataChannelDatapath() {};
     34 
     35         void TSCPortClosed();
     36         PVMFPortInterface *GetTSCPort();
     37         void SkipComplete(TPV2WayNode* aNode);
     38         bool IsSkipComplete() const;
     39     private:
     40         CPV2WayDecDataChannelDatapath(PVLogger *aLogger,
     41                                       PVMFFormatType aFormat,
     42                                       CPV324m2Way *a2Way) : CPV2WayDataChannelDatapath(aLogger, EDecodeDatapath, aFormat, a2Way), iSkipComplete(false)
     43         {};
     44         TPV2WayNode* iNode;
     45         void OpenComplete();
     46         bool iSkipComplete;
     47 };
     48 
     49 #endif //PV_2WAY_DEC_DATA_CHANNEL_DATAPATH_H_INCLUDED
     50 
     51 
     52