Changeset 914 in SHVCSoftware for branches


Ignore:
Timestamp:
4 Nov 2014, 22:08:05 (10 years ago)
Author:
seregin
Message:

JCTVC-R0157: when pps_pic_parameter_set_id greater than or equal to 8, colour_mapping_enabled_flag shall be equal to 0, the code was provided by Jill Boyce <jill@…>

Location:
branches/SHM-dev/source/Lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h

    r912 r914  
    284284#endif
    285285#endif
     286#define R0157_RESTRICT_PPSID_FOR_CGS_LUT 1      ///< JCTVC-R0157: when pps_pic_parameter_set_id greater than or equal to 8, colour_mapping_enabled_flag shall be equal to 0
    286287
    287288/// scalability types
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r908 r914  
    548548      if( pcPPS->getCGSFlag() )
    549549      {
     550#if R0157_RESTRICT_PPSID_FOR_CGS_LUT
     551        // when pps_pic_parameter_set_id greater than or equal to 8, colour_mapping_enabled_flag shall be equal to 0
     552        assert( pcPPS->getPPSId() < 8 );
     553#endif
    550554        xParse3DAsymLUT( pc3DAsymLUT );
    551555        pcPPS->setCGSOutputBitDepthY( pc3DAsymLUT->getOutputBitDepthY() );
Note: See TracChangeset for help on using the changeset viewer.