Changeset 566 in SHVCSoftware for branches/SHM-5.0-dev/source


Ignore:
Timestamp:
27 Jan 2014, 18:03:48 (11 years ago)
Author:
seregin
Message:

remove VERT_MV_CONSTRAINT macro

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

Legend:

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

    r565 r566  
    4343#define SYNTAX_BYTES                     10      ///< number of bytes taken by syntaxes per 4x4 block [RefIdxL0(1byte), RefIdxL1(1byte), MVxL0(2bytes), MVyL0(2bytes), MVxL1(2bytes), MVyL1(2bytes)]
    4444
    45 #define VPS_VUI_OFFSET                   1      ///< N0085: Signal VPS VUI offset in the VPS extension
    46 
    47 #define RANDOM_ACCESS_SEI_FIX            1
    4845#if SVC_EXTENSION
    4946#define MAX_LAYERS                       8      ///< max number of layers the codec is supposed to handle
    5047
     48#define VPS_VUI_OFFSET                   1      ///< N0085: Signal VPS VUI offset in the VPS extension
     49#define RANDOM_ACCESS_SEI_FIX            1
    5150#define O0137_MAX_LAYERID                1      ///< JCTVC-O0137, JCTVC-O0200, JCTVC-O0223: restrict nuh_layer_id and vps_max_layers_minus1
    5251
     
    8988#define O0142_CONDITIONAL_SPS_EXTENSION  1      ///< JCTVC-O0142: Conditional SPS extension
    9089#endif
    91 #define VERT_MV_CONSTRAINT               1      ///< Vertical MV component constraint flag
    9290#define SCALABILITY_MASK_E0104           1      ///< JCT3V-E0104: scalability mask for depth
    9391#define LAYER_CTB                        0      ///< enable layer-specific CTB structure
  • branches/SHM-5.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r565 r566  
    806806  // more syntax elements to be parsed here
    807807
    808 #if VERT_MV_CONSTRAINT
    809808  READ_FLAG( uiCode, "inter_view_mv_vert_constraint_flag" );
    810809  // Vertical MV component restriction is not used in SHVC CTC
    811810  assert( uiCode == 0 );
    812 #endif
     811
    813812  if( pcSPS->getLayerId() > 0 )
    814813  {
  • branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r565 r566  
    615615  // more syntax elements to be written here
    616616
    617 #if VERT_MV_CONSTRAINT
    618617  // Vertical MV component restriction is not used in SHVC CTC
    619618  WRITE_FLAG( 0, "inter_view_mv_vert_constraint_flag" );
    620 #endif
     619
    621620  if( pcSPS->getLayerId() > 0 )
    622621  {
Note: See TracChangeset for help on using the changeset viewer.