Changeset 713 in SHVCSoftware for trunk/source/Lib/TLibEncoder/TEncCfg.h
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/SHM-6-dev (added) merged: 651-712
- Property svn:mergeinfo changed
-
trunk/source
- Property svn:mergeinfo changed
/branches/SHM-6-dev/source (added) merged: 652-678,680,683-684,686-691,693-700,702-705,707-711
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibEncoder/TEncCfg.h
r644 r713 235 235 Int m_cameraIsoSpeedIdc; 236 236 Int m_cameraIsoSpeedValue; 237 Int m_exposureIndexIdc; 238 Int m_exposureIndexValue; 237 239 Int m_exposureCompensationValueSignFlag; 238 240 Int m_exposureCompensationValueNumerator; … … 246 248 Int* m_codedPivotValue; 247 249 Int* m_targetPivotValue; 250 #if Q0074_SEI_COLOR_MAPPING 251 Char* m_seiColorMappingFile; 252 #endif 248 253 Int m_framePackingSEIEnabled; 249 254 Int m_framePackingSEIType; … … 362 367 UInt m_bottomRightTileIndex[1024]; 363 368 UInt m_ilcIdc[1024]; 369 #endif 370 #if Q0048_CGS_3D_ASYMLUT 371 Int m_nCGSFlag; 372 Int m_nCGSMaxOctantDepth; 373 Int m_nCGSMaxYPartNumLog2; 374 Int m_nCGSLUTBit; 364 375 #endif 365 376 #endif //SVC_EXTENSION … … 639 650 Void setTMISEICameraIsoSpeedValue(Int b) { m_cameraIsoSpeedValue = b; } 640 651 Int getTMISEICameraIsoSpeedValue() { return m_cameraIsoSpeedValue; } 652 Void setTMISEIExposureIndexIdc(Int b) { m_exposureIndexIdc = b; } 653 Int getTMISEIExposurIndexIdc() { return m_exposureIndexIdc; } 654 Void setTMISEIExposureIndexValue(Int b) { m_exposureIndexValue = b; } 655 Int getTMISEIExposurIndexValue() { return m_exposureIndexValue; } 641 656 Void setTMISEIExposureCompensationValueSignFlag(Int b) { m_exposureCompensationValueSignFlag = b; } 642 657 Int getTMISEIExposureCompensationValueSignFlag() { return m_exposureCompensationValueSignFlag; } … … 655 670 Void setTMISEIExtendedWhiteLevelLumaCodeValue(Int b) { m_extendedWhiteLevelLumaCodeValue =b; } 656 671 Int getTMISEIExtendedWhiteLevelLumaCodeValue() { return m_extendedWhiteLevelLumaCodeValue; } 672 #if Q0074_SEI_COLOR_MAPPING 673 Void setColorMappingInfoSEIFile( Char* nameFile ) { m_seiColorMappingFile = nameFile; } 674 Char* getColorMappingInfoSEIFile() { return m_seiColorMappingFile; } 675 #endif 657 676 Void setFramePackingArrangementSEIEnabled(Int b) { m_framePackingSEIEnabled = b; } 658 677 Int getFramePackingArrangementSEIEnabled() { return m_framePackingSEIEnabled; } … … 898 917 UInt getIlcIdc(UInt b) { return m_ilcIdc[b]; } 899 918 #endif 919 #if Q0048_CGS_3D_ASYMLUT 920 Void setCGSFlag(Int n) { m_nCGSFlag = n; } 921 Int getCGSFlag() { return m_nCGSFlag; } 922 Void setCGSMaxOctantDepth(Int n) { m_nCGSMaxOctantDepth = n; } 923 Int getCGSMaxOctantDepth() { return m_nCGSMaxOctantDepth; } 924 Void setCGSMaxYPartNumLog2(Int n) { m_nCGSMaxYPartNumLog2 = n; } 925 Int getCGSMaxYPartNumLog2() { return m_nCGSMaxYPartNumLog2; } 926 Void setCGSLUTBit(Int n) { m_nCGSLUTBit = n; } 927 Int getCGSLUTBit() { return m_nCGSLUTBit; } 928 #endif 900 929 #endif 901 930 };
Note: See TracChangeset for help on using the changeset viewer.