Changeset 860 in SHVCSoftware for branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.cpp
- Timestamp:
- 11 Aug 2014, 23:24:03 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.cpp
r859 r860 228 228 } 229 229 230 Int tempCode; 230 231 retval = fscanf( fic, "%d", &m_colourRemapSEIId ); 231 retval = fscanf( fic, "%d", & m_colourRemapSEICancelFlag );232 retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEICancelFlag = tempCode ? 1 : 0; 232 233 if( !m_colourRemapSEICancelFlag ) 233 234 { 234 retval = fscanf( fic, "%d", & m_colourRemapSEIPersistenceFlag );235 retval = fscanf( fic, "%d", & m_colourRemapSEIVideoSignalTypePresentFlag);235 retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIPersistenceFlag = tempCode ? 1 : 0; 236 retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIVideoSignalTypePresentFlag = tempCode ? 1 : 0; 236 237 if( m_colourRemapSEIVideoSignalTypePresentFlag ) 237 238 { 238 retval = fscanf( fic, "%d", & m_colourRemapSEIVideoFullRangeFlag );239 retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIVideoFullRangeFlag = tempCode ? 1 : 0; 239 240 retval = fscanf( fic, "%d", &m_colourRemapSEIPrimaries ); 240 241 retval = fscanf( fic, "%d", &m_colourRemapSEITransferCharacteristics ); … … 260 261 } 261 262 262 retval = fscanf( fic, "%d", & m_colourRemapSEIMatrixPresentFlag );263 retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIMatrixPresentFlag = tempCode ? 1 : 0; 263 264 if( m_colourRemapSEIMatrixPresentFlag ) 264 265 {
Note: See TracChangeset for help on using the changeset viewer.