Changeset 1112 in SHVCSoftware


Ignore:
Timestamp:
6 Jul 2015, 21:19:10 (9 years ago)
Author:
seregin
Message:

macro cleanup: 0146_SSH_EXT_DATA_BIT

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

Legend:

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

    r1111 r1112  
    7979#define Q0177_EOS_CHECKS                 1      ///< JCTVC-Q0177; Put checks on handling EOS
    8080#define Q0142_POC_LSB_NOT_PRESENT        1      ///< JCTVC-Q0142; Add constraint checking on the value of poc_reset_idc and poc_lsb_val
    81 #define Q0146_SSH_EXT_DATA_BIT           1      ///< JCTVC-Q0146; Bug-fix -- the SSH_EXT_DATA_BIT can have any value -- not required to be 1
    8281
    8382#define P0130_EOB                        1      ///< JCTVC-P0130, set layer Id of EOB NALU to be fixed to 0
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1109 r1112  
    20812081    while( counter )
    20822082    {
    2083 #if Q0146_SSH_EXT_DATA_BIT
    20842083      READ_FLAG( uiCode, "slice_segment_header_extension_data_bit" );
    2085 #else
    2086       READ_FLAG( uiCode, "slice_segment_header_extension_reserved_bit" ); assert( uiCode == 1 );
    2087 #endif
    20882084      counter--;
    20892085    }
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r1109 r1112  
    19821982    for (Int i = 0; i < shExtnAdditionalBits; i++)
    19831983    {
    1984 #if Q0146_SSH_EXT_DATA_BIT
    19851984      WRITE_FLAG( 1, "slice_segment_header_extension_data_bit");
    1986 #else
    1987       WRITE_FLAG( 1, "slice_segment_header_extension_reserved_bit");
    1988 #endif
    19891985    }
    19901986  }
Note: See TracChangeset for help on using the changeset viewer.