Ignore:
Timestamp:
4 Jun 2014, 09:28:48 (11 years ago)
Author:
nokia
Message:

software implementation for JCTVC-Q0189

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibDecoder/SEIread.cpp

    r778 r779  
    380380     break;
    381381#endif
     382#if Q0189_TMVP_CONSTRAINTS
     383   case SEI::TMVP_CONSTRAINTS:
     384     sei =  new SEITMVPConstrains;
     385     xParseSEITMVPConstraints((SEITMVPConstrains&) *sei, payloadSize);
     386     break;
     387#endif
    382388#endif //SVC_EXTENSION
    383389      break;
     
    10201026}
    10211027
     1028#if Q0189_TMVP_CONSTRAINTS
     1029Void 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
    10221038#if LAYERS_NOT_PRESENT_SEI
    10231039Void SEIReader::xParseSEIScalableNesting(SEIScalableNesting& sei, const NalUnitType nalUnitType, UInt payloadSize, TComVPS *vps, TComSPS *sps)
Note: See TracChangeset for help on using the changeset viewer.