Changeset 446 in 3DVCSoftware for branches/HTM-DEV-0.2-dev/source/App/TAppDecoder/TAppDecCfg.cpp
- Timestamp:
- 26 May 2013, 16:22:23 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.2-dev/source/App/TAppDecoder/TAppDecCfg.cpp
r438 r446 45 45 #include <cassert> 46 46 #endif 47 48 47 #ifdef WIN32 49 48 #define strdup _strdup … … 69 68 string cfg_ReconFile; 70 69 string cfg_TargetDecLayerIdSetFile; 70 #if H_3D 71 string cfg_ScaleOffsetFile; 72 #endif 71 73 72 74 po::Options opts; … … 76 78 ("ReconFile,o", cfg_ReconFile, string(""), "reconstructed YUV output file name\n" 77 79 "YUV writing is skipped if omitted") 80 #if H_3D 81 ("ScaleOffsetFile,p", cfg_ScaleOffsetFile, string(""), "file with coded scales and offsets") 82 #endif 78 83 ("SkipFrames,s", m_iSkipFrame, 0, "number of frames to skip before random access") 79 84 ("OutputBitDepth,d", m_outputBitDepthY, 0, "bit depth of YUV output luma component (default: use 0 for native depth)") 80 85 ("OutputBitDepthC,d", m_outputBitDepthC, 0, "bit depth of YUV output chroma component (default: use 0 for native depth)") 81 82 86 #if H_MV 83 87 ("MaxLayerId,-ls", m_maxLayerId, MAX_NUM_LAYER_IDS-1, "Maximum LayerId to be decoded.") 84 88 #endif 85 86 89 ("MaxTemporalLayer,t", m_iMaxTemporalLayer, -1, "Maximum Temporal Layer to be decoded. -1 to decode all layers") 87 90 ("SEIDecodedPictureHash", m_decodedPictureHashSEIEnabled, 1, "Control handling of decoded picture hash SEI messages\n" … … 108 111 /* convert std::string to c string for compatability */ 109 112 m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str()); 110 111 113 m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str()); 112 114 115 #if H_3D 116 m_pchScaleOffsetFile = cfg_ScaleOffsetFile.empty() ? NULL : strdup(cfg_ScaleOffsetFile.c_str()); 117 #endif 113 118 if (!m_pchBitstreamFile) 114 119 { … … 191 196 } 192 197 #endif 193 194 198 //! \}
Note: See TracChangeset for help on using the changeset viewer.