- Timestamp:
- 22 Mar 2013, 23:01:13 (12 years ago)
- Location:
- branches/HM-10.0-dev-SHM/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/Lib/TLibCommon/TComSlice.cpp
r90 r94 2098 2098 assert(iRefPicNum == 1); 2099 2099 #if RAP_MFM_INIT 2100 if(!(getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA && getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA) )2100 if(!(getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA && getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA) && getSPS()->getMFMEnabledFlag()) 2101 2101 #else 2102 2102 if( getPOC() != 0 ) -
branches/HM-10.0-dev-SHM/source/Lib/TLibDecoder/TDecTop.cpp
r92 r94 902 902 m_parameterSetManagerDecoder.storePrefetchedSPS(sps); 903 903 #endif 904 #if REF_IDX_MFM905 m_pcSPS = sps;906 setMFMEnabledFlag(sps->getMFMEnabledFlag());907 #endif908 904 #if REF_IDX_FRAMEWORK 909 905 if(m_numLayer>0) -
branches/HM-10.0-dev-SHM/source/Lib/TLibDecoder/TDecTop.h
r90 r94 76 76 #else 77 77 ParameterSetManagerDecoder m_parameterSetManagerDecoder; // storage for parameter sets 78 #endif79 80 #if REF_IDX_MFM81 TComSPS* m_pcSPS;82 Bool m_bMFMEnabledFlag;83 78 #endif 84 79 … … 177 172 Void setILRPic(TComPic *pcPic); 178 173 #endif 179 #if REF_IDX_MFM180 TComSPS* getSPS() {return m_pcSPS;}181 Void setMFMEnabledFlag(Bool flag) {m_bMFMEnabledFlag = flag;}182 Bool getMFMEnabledFlag() {return m_bMFMEnabledFlag;}183 #endif184 174 185 175 protected:
Note: See TracChangeset for help on using the changeset viewer.