Ignore:
Timestamp:
3 May 2013, 16:34:51 (12 years ago)
Author:
tech
Message:

Further cleanups

Location:
branches/HTM-DEV-0.1-dev/source/App/TAppDecoder
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.1-dev/source/App/TAppDecoder/TAppDecCfg.cpp

    r324 r364  
    4545#include <cassert>
    4646#endif
    47 
    4847#ifdef WIN32
    4948#define strdup _strdup
     
    7978  ("OutputBitDepth,d", m_outputBitDepthY, 0, "bit depth of YUV output luma component (default: use 0 for native depth)")
    8079  ("OutputBitDepthC,d", m_outputBitDepthC, 0, "bit depth of YUV output chroma component (default: use 0 for native depth)")
    81 
    8280#if H_MV
    8381  ("MaxLayerId,-ls", m_maxLayerId, MAX_NUM_LAYER_IDS-1, "Maximum LayerId to be decoded.")
    8482#endif
    85 
    8683  ("MaxTemporalLayer,t", m_iMaxTemporalLayer, -1, "Maximum Temporal Layer to be decoded. -1 to decode all layers")
    8784  ("SEIDecodedPictureHash", m_decodedPictureHashSEIEnabled, 1, "Control handling of decoded picture hash SEI messages\n"
     
    108105  /* convert std::string to c string for compatability */
    109106  m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
    110 
    111107  m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str());
    112108
     
    191187}
    192188#endif
    193 
    194189//! \}
  • branches/HTM-DEV-0.1-dev/source/App/TAppDecoder/TAppDecCfg.h

    r324 r364  
    6464#endif
    6565  Char*         m_pchReconFile;                       ///< output reconstruction file name
    66 
    6766  Int           m_iSkipFrame;                         ///< counter for frames prior to the random access point to skip
    6867  Int           m_outputBitDepthY;                    ///< bit depth used for writing output (luma)
     
    7877  Void xAppendToFileNameEnd( Char* pchInputFileName, const Char* pchStringToAppend, Char*& rpchOutputFileName); ///< create filenames
    7978#endif
    80 
    8179public:
    8280  TAppDecCfg()
    8381  : m_pchBitstreamFile(NULL)
    84 
    8582#if H_MV
    8683  , m_maxLayerId(0)
  • branches/HTM-DEV-0.1-dev/source/App/TAppDecoder/TAppDecTop.cpp

    r363 r364  
    6060: m_numDecoders( 0 )
    6161#endif
    62 
    6362{
    6463  ::memset (m_abDecFlag, 0, sizeof (m_abDecFlag));
     
    7978    m_pchBitstreamFile = NULL;
    8079  }
    81 
    8280#if H_MV
    8381  for (Int decIdx = 0; decIdx < m_numDecoders; decIdx++)
  • branches/HTM-DEV-0.1-dev/source/App/TAppDecoder/TAppDecTop.h

    r324 r364  
    9090  Void  decode            (); ///< main decoding function
    9191 
    92 
    9392protected:
    9493  Void  xCreateDecLib     (); ///< create internal classes
     
    153152  Void  xFlushOutput      ( TComList<TComPic*>* pcListPic ); ///< flush all remaining decoded pictures to file
    154153#endif
    155 
    156154  Bool  isNaluWithinTargetDecLayerIdSet ( InputNALUnit* nalu ); ///< check whether given Nalu is within targetDecLayerIdSet
    157155};
Note: See TracChangeset for help on using the changeset viewer.