Changeset 1475 in SHVCSoftware for branches/SHM-dev/source/App/TAppEncoder
- Timestamp:
- 22 Sep 2015, 20:18:26 (9 years ago)
- Location:
- branches/SHM-dev/source/App/TAppEncoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1463 r1475 773 773 774 774 Int* cfg_maxTidIlRefPicsPlus1[MAX_LAYERS]; 775 #if Q0074_COLOUR_REMAPPING_SEI776 775 string* cfg_colourRemapSEIFileRoot[MAX_LAYERS]; 777 #endif778 776 Bool* cfg_entropyCodingSyncEnabledFlag[MAX_LAYERS]; 779 777 Int* cfg_layerSwitchOffBegin[MAX_LAYERS]; … … 792 790 cfg_dQPFileName[layer] = &m_apcLayerCfg[layer]->m_dQPFileName; 793 791 cfg_fQP[layer] = &m_apcLayerCfg[layer]->m_fQP; 794 #if Q0074_COLOUR_REMAPPING_SEI795 792 cfg_colourRemapSEIFileRoot[layer] = &m_apcLayerCfg[layer]->m_colourRemapSEIFileRoot; 796 #endif797 793 cfg_repFormatIdx[layer] = &m_apcLayerCfg[layer]->m_repFormatIdx; 798 794 cfg_layerId[layer] = &m_apcLayerCfg[layer]->m_layerId; … … 1072 1068 ("PhaseHorChroma%d", cfg_phaseHorChromaPtr, string(""), m_numLayers, "chroma shift in the horizontal direction used in resampling proces") 1073 1069 ("PhaseVerChroma%d", cfg_phaseVerChromaPtr, string(""), m_numLayers, "chroma shift in the vertical direction used in resampling proces") 1074 #if Q0074_COLOUR_REMAPPING_SEI1075 1070 ("SEIColourRemappingInfoFileRoot%d,-cri", cfg_colourRemapSEIFileRoot, string(""), m_numLayers, "Colour Remapping Information SEI parameters root file name (wo num ext)") 1076 #endif1077 1071 ("InputBitDepth%d", cfg_InputBitDepth[CHANNEL_TYPE_LUMA], 8, m_numLayers, "Bit-depth of input file for layer %d") 1078 1072 ("InternalBitDepth%d", cfg_InternalBitDepth[CHANNEL_TYPE_LUMA], 0, m_numLayers, "Bit-depth the codec operates at. (default:InputBitDepth) for layer %d " … … 1460 1454 ("Log2MaxMvLengthVertical", m_log2MaxMvLengthVertical, 15, "Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units") 1461 1455 #if !SVC_EXTENSION 1462 #if Q0074_COLOUR_REMAPPING_SEI1463 1456 ("SEIColourRemappingInfoFileRoot,-cri", m_colourRemapSEIFileRoot, string(""), "Colour Remapping Information SEI parameters root file name (wo num ext)") 1464 #endif1465 1457 #endif 1466 1458 ("SEIRecoveryPoint", m_recoveryPointSEIEnabled, false, "Control generation of recovery point SEI messages") -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1460 r1475 458 458 Int m_log2MaxMvLengthVertical; ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units 459 459 #if !SVC_EXTENSION 460 #if Q0074_COLOUR_REMAPPING_SEI461 460 std::string m_colourRemapSEIFileRoot; 462 #endif463 461 #endif 464 462 -
branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.h
r1460 r1475 134 134 135 135 Int m_repFormatIdx; 136 #if Q0074_COLOUR_REMAPPING_SEI137 136 string m_colourRemapSEIFileRoot; 138 #endif139 137 140 138 Int m_layerSwitchOffBegin; -
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1460 r1475 509 509 Int& m_maxTempLayer = m_apcLayerCfg[layer]->m_maxTempLayer; 510 510 511 #if Q0074_COLOUR_REMAPPING_SEI512 511 string& m_colourRemapSEIFileRoot = m_apcLayerCfg[layer]->m_colourRemapSEIFileRoot; 513 #endif514 512 #endif 515 513 … … 766 764 m_cTEncTop.setKneeSEIInputKneePoint ( m_kneeSEIInputKneePoint ); 767 765 m_cTEncTop.setKneeSEIOutputKneePoint ( m_kneeSEIOutputKneePoint ); 768 #if Q0074_COLOUR_REMAPPING_SEI769 766 m_cTEncTop.setColourRemapInfoSEIFileRoot ( m_colourRemapSEIFileRoot ); 770 #endif771 767 m_cTEncTop.setMasteringDisplaySEI ( m_masteringDisplay ); 772 768
Note: See TracChangeset for help on using the changeset viewer.