Changeset 54 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/App/TAppDecoder/TAppDecCfg.h
- Timestamp:
- 2 Mar 2013, 09:25:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/App/TAppDecoder/TAppDecCfg.h
r51 r54 58 58 protected: 59 59 Char* m_pchBitstreamFile; ///< input bitstream file name 60 #if SVC_EXTENSION 61 Char* m_pchReconFile [MAX_LAYERS]; ///< output reconstruction file name 62 #if AVC_BASE 63 Char* m_pchBLReconFile; ///< input BL reconstruction file name 64 Int m_iBLSourceWidth; 65 Int m_iBLSourceHeight; 66 #if AVC_SYNTAX 67 Char* m_pchBLSyntaxFile; ///< input BL syntax file name 68 #endif 69 #endif 70 #else 60 71 Char* m_pchReconFile; ///< output reconstruction file name 72 #endif 73 #if SYNTAX_OUTPUT 74 Char* m_pchBLSyntaxFile; ///< input BL syntax file name 75 Int m_iBLSourceWidth; 76 Int m_iBLSourceHeight; 77 Int m_iBLFrames; 78 #endif 61 79 Int m_iSkipFrame; ///< counter for frames prior to the random access point to skip 62 80 Int m_outputBitDepthY; ///< bit depth used for writing output (luma) … … 66 84 Int m_decodedPictureHashSEIEnabled; ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message 67 85 86 #if SVC_EXTENSION 87 Int m_tgtLayerId; ///< target layer ID 88 #endif 68 89 std::vector<Int> m_targetDecLayerIdSet; ///< set of LayerIds to be included in the sub-bitstream extraction process. 69 90 Int m_respectDefDispWindow; ///< Only output content inside the default display window … … 72 93 TAppDecCfg() 73 94 : m_pchBitstreamFile(NULL) 95 #if SVC_EXTENSION 96 , m_tgtLayerId(0) 97 #else 74 98 , m_pchReconFile(NULL) 99 #endif 75 100 , m_iSkipFrame(0) 76 101 , m_outputBitDepthY(0) … … 79 104 , m_decodedPictureHashSEIEnabled(0) 80 105 , m_respectDefDispWindow(0) 106 #if AVC_BASE 107 , m_iBLSourceWidth(0) 108 , m_iBLSourceHeight(0) 109 #endif 110 #if SYNTAX_OUTPUT 111 , m_iBLSourceWidth(0) 112 , m_iBLSourceHeight(0) 113 , m_iBLFrames(0) 114 #endif 81 115 {} 82 116 virtual ~TAppDecCfg() {}
Note: See TracChangeset for help on using the changeset viewer.