Changeset 56 in 3DVCSoftware for trunk/source/App/TAppDecoder/TAppDecCfg.cpp
- Timestamp:
- 11 May 2012, 21:20:17 (14 years ago)
- File:
-
- 1 edited
-
trunk/source/App/TAppDecoder/TAppDecCfg.cpp (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppDecoder/TAppDecCfg.cpp
r5 r56 2 2 * License, included below. This software may be subject to other third party 3 3 * and contributor rights, including patent rights, and no such rights are 4 * granted under this license. 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 1,ISO/IEC6 * Copyright (c) 2010-2012, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 15 15 * this list of conditions and the following disclaimer in the documentation 16 16 * and/or other materials provided with the distribution. 17 * * Neither the name of the I SO/IEC nor the names of its contributors may17 * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may 18 18 * be used to endorse or promote products derived from this software without 19 19 * specific prior written permission. … … 32 32 */ 33 33 34 35 36 34 /** \file TAppDecCfg.cpp 37 35 \brief Decoder configuration class … … 42 40 #include <string> 43 41 #include "TAppDecCfg.h" 44 #include " ../../App/TAppCommon/program_options_lite.h"42 #include "TAppCommon/program_options_lite.h" 45 43 46 44 #ifdef WIN32 … … 50 48 using namespace std; 51 49 namespace po = df::program_options_lite; 50 51 //! \ingroup TAppDecoder 52 //! \{ 52 53 53 54 // ==================================================================================================================== … … 72 73 "YUV writing is skipped if omitted") 73 74 ("ScaleOffsetFile,p", cfg_ScaleOffsetFile, string(""), "file with coded scales and offsets") 74 #if DCM_SKIP_DECODING_FRAMES75 75 ("SkipFrames,s", m_iSkipFrame, 0, "number of frames to skip before random access") 76 #endif77 76 ("OutputBitDepth,d", m_outputBitDepth, 0u, "bit depth of YUV output file (use 0 for native depth)") 78 ("SEIpictureDigest", m_pictureDigestEnabled, false, "Control handling of picture_digest SEI messages\n" 77 ("MaxTemporalLayer,t", m_iMaxTemporalLayer, -1, "Maximum Temporal Layer to be decoded. -1 to decode all layers") 78 ("SEIpictureDigest", m_pictureDigestEnabled, true, "Control handling of picture_digest SEI messages\n" 79 79 "\t1: check\n" 80 80 "\t0: ignore") … … 99 99 m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str()); 100 100 m_pchScaleOffsetFile = cfg_ScaleOffsetFile.empty() ? NULL : strdup(cfg_ScaleOffsetFile.c_str()); 101 101 102 102 103 if (!m_pchBitstreamFile) … … 124 125 rpchOutputFileName[iInLength+iAppendLength] = '\0'; 125 126 } 127 128 //! \}
Note: See TracChangeset for help on using the changeset viewer.