- Timestamp:
- 1 Jul 2015, 23:34:53 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1090 r1092 118 118 , m_enableTMVPFlag ( true ) 119 119 #if SVC_EXTENSION 120 , m_firstSliceInPic ( false ) 120 121 #if R0226_SLICE_TMVP 121 122 , m_availableForTMVPRefFlag ( true ) -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1090 r1092 2269 2269 #endif 2270 2270 UInt m_colFromL0Flag; // collocated picture from List0 flag 2271 2271 2272 2272 Bool m_noOutputPriorPicsFlag; 2273 2273 Bool m_noRaslOutputFlag; … … 2313 2313 2314 2314 #if SVC_EXTENSION 2315 Bool m_firstSliceInPic; 2315 2316 #if R0226_SLICE_TMVP 2316 Bool m_availableForTMVPRefFlag;2317 Bool m_availableForTMVPRefFlag; 2317 2318 #endif 2318 2319 UInt m_layerId; … … 2614 2615 2615 2616 #if SVC_EXTENSION 2617 Void setFirstSliceInPic ( Bool val ) { m_firstSliceInPic = val; } 2618 Bool getFirstSliceInPic () { return m_firstSliceInPic; } 2616 2619 #if R0226_SLICE_TMVP 2617 2620 Void setAvailableForTMVPRefFlag ( Bool b ) { m_availableForTMVPRefFlag = b; } -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1090 r1092 1175 1175 UInt firstSliceSegmentInPic; 1176 1176 READ_FLAG( firstSliceSegmentInPic, "first_slice_segment_in_pic_flag" ); 1177 1178 #if SVC_EXTENSION 1179 pcSlice->setFirstSliceInPic( firstSliceSegmentInPic ); 1180 #endif 1181 1177 1182 if( pcSlice->getRapPicFlag()) 1178 1183 { -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1090 r1092 889 889 // exit when a new picture is found 890 890 #if SVC_EXTENSION 891 bNewPOC = (m_apcSlicePilot->getPOC()!= m_prevPOC);891 bNewPOC = m_apcSlicePilot->getPOC() != m_prevPOC || ( m_apcSlicePilot->getFirstSliceInPic() && m_parseIdc == -1 ); 892 892 893 893 #if NO_OUTPUT_OF_PRIOR_PICS
Note: See TracChangeset for help on using the changeset viewer.