Changeset 1325 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 00:35:39 (9 years ago)
- Location:
- branches/SHM-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1324 r1325 1203 1203 ("FieldCoding", m_isField, false, "Signals if it's a field based coding") 1204 1204 ("TopFieldFirst, Tff", m_isTopFieldFirst, false, "In case of field based coding, signals whether if it's a top field first or not") 1205 ("EfficientFieldIRAPEnabled", m_bEfficientFieldIRAPEnabled, true, "Enable to code fields in a specific, potentially more efficient, order.") 1205 1206 1206 1207 // Profile and level -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1324 r1325 88 88 Bool m_isField; ///< enable field coding 89 89 Bool m_isTopFieldFirst; 90 Bool m_bEfficientFieldIRAPEnabled; ///< enable an efficient field IRAP structure. 90 91 #else 91 92 Char* m_pchInputFile; ///< source file name … … 103 104 Bool m_isField; ///< enable field coding 104 105 Bool m_isTopFieldFirst; 106 Bool m_bEfficientFieldIRAPEnabled; ///< enable an efficient field IRAP structure. 105 107 106 108 Int m_conformanceWindowMode; -
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1324 r1325 716 716 m_acTEncTop[layer].setLog2MaxMvLengthVertical ( m_log2MaxMvLengthVertical ); 717 717 m_acTEncTop[layer].setElRapSliceTypeB (layer == 0? 0 : m_elRapSliceBEnabled); 718 m_acTEncTop[layer].setEfficientFieldIRAPEnabled ( m_bEfficientFieldIRAPEnabled ); 718 719 719 720 if( layer > 0 ) … … 1087 1088 m_cTEncTop.setLog2MaxMvLengthHorizontal ( m_log2MaxMvLengthHorizontal ); 1088 1089 m_cTEncTop.setLog2MaxMvLengthVertical ( m_log2MaxMvLengthVertical ); 1090 m_cTEncTop.setEfficientFieldIRAPEnabled ( m_bEfficientFieldIRAPEnabled ); 1089 1091 } 1090 1092 #endif //SVC_EXTENSION
Note: See TracChangeset for help on using the changeset viewer.