Changeset 780 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibDecoder/SEIread.cpp
- Timestamp:
- 4 Jun 2014, 09:57:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibDecoder/SEIread.cpp
r779 r780 386 386 break; 387 387 #endif 388 #if Q0247_FRAME_FIELD_INFO 389 case SEI::FRAME_FIELD_INFO: 390 sei = new SEIFrameFieldInfo; 391 xParseSEIFrameFieldInfo ((SEIFrameFieldInfo&) *sei, payloadSize); 392 break; 393 #endif 388 394 #endif //SVC_EXTENSION 389 395 break; … … 1036 1042 #endif 1037 1043 1044 #if Q0247_FRAME_FIELD_INFO 1045 Void SEIReader::xParseSEIFrameFieldInfo (SEIFrameFieldInfo& sei, UInt payloadSize) 1046 { 1047 UInt code; 1048 READ_CODE( 4, code, "ffinfo_pic_struct" ); sei.m_ffinfo_picStruct = code; 1049 READ_CODE( 2, code, "ffinfo_source_scan_type" ); sei.m_ffinfo_sourceScanType = code; 1050 READ_FLAG( code, "ffinfo_duplicate_flag" ); sei.m_ffinfo_duplicateFlag = ( code == 1 ? true : false ); 1051 xParseByteAlign(); 1052 } 1053 #endif 1054 1038 1055 #if LAYERS_NOT_PRESENT_SEI 1039 1056 Void SEIReader::xParseSEIScalableNesting(SEIScalableNesting& sei, const NalUnitType nalUnitType, UInt payloadSize, TComVPS *vps, TComSPS *sps)
Note: See TracChangeset for help on using the changeset viewer.