Changeset 1092 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 1 Jul 2015, 23:34:53 (11 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 2 edited
-
TDecCAVLC.cpp (modified) (1 diff)
-
TDecTop.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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.