Changeset 779 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibDecoder
- Timestamp:
- 4 Jun 2014, 09:28:48 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibDecoder/SEIread.cpp
r778 r779 380 380 break; 381 381 #endif 382 #if Q0189_TMVP_CONSTRAINTS 383 case SEI::TMVP_CONSTRAINTS: 384 sei = new SEITMVPConstrains; 385 xParseSEITMVPConstraints((SEITMVPConstrains&) *sei, payloadSize); 386 break; 387 #endif 382 388 #endif //SVC_EXTENSION 383 389 break; … … 1020 1026 } 1021 1027 1028 #if Q0189_TMVP_CONSTRAINTS 1029 Void SEIReader::xParseSEITMVPConstraints (SEITMVPConstrains& sei, UInt payloadSize) 1030 { 1031 UInt uiCode; 1032 READ_UVLC( uiCode, "prev_pics_not_used_flag" ); sei.prev_pics_not_used_flag = uiCode; 1033 READ_UVLC( uiCode, "no_intra_layer_col_pic_flag" ); sei.no_intra_layer_col_pic_flag = uiCode; 1034 xParseByteAlign(); 1035 } 1036 #endif 1037 1022 1038 #if LAYERS_NOT_PRESENT_SEI 1023 1039 Void SEIReader::xParseSEIScalableNesting(SEIScalableNesting& sei, const NalUnitType nalUnitType, UInt payloadSize, TComVPS *vps, TComSPS *sps) -
branches/SHM-6-dev/source/Lib/TLibDecoder/SEIread.h
r778 r779 127 127 Void xParseSEIVPSRewriting(SEIVPSRewriting &sei); 128 128 #endif 129 130 #if Q0189_TMVP_CONSTRAINTS 131 Void xParseSEITMVPConstraints (SEITMVPConstrains& sei, UInt payloadSize); 132 #endif 133 129 134 Void xParseByteAlign(); 130 135 };
Note: See TracChangeset for help on using the changeset viewer.