Changeset 1125 in SHVCSoftware


Ignore:
Timestamp:
7 Jul 2015, 02:27:23 (9 years ago)
Author:
seregin
Message:

macro cleanup: IRAP_ALIGN_FLAG_IN_VPS_VUI

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

Legend:

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

    r1124 r1125  
    173173#define P0068_CROSS_LAYER_ALIGNED_IDR_ONLY_FOR_IRAP_FLAG   1  ///< a flag to indicatate whether picture types for IRAP are IDR across layers.
    174174
    175 #define IRAP_ALIGN_FLAG_IN_VPS_VUI       1      ///< Move IRAP align flag to VPS VUI
    176 
    177175#define VIEW_ID_RELATED_SIGNALING        1      ///< Introduce syntax elements view_id and view_id_val
    178176#define N0065_LAYER_POC_ALIGNMENT        1
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1124 r1125  
    32743274#endif
    32753275
    3276 #if !IRAP_ALIGN_FLAG_IN_VPS_VUI
    3277   READ_FLAG(uiCode, "cross_layer_irap_aligned_flag" );
    3278   vps->setCrossLayerIrapAlignFlag(uiCode);
    3279 #endif
    3280 
    32813276#if VPS_DPB_SIZE_TABLE
    32823277  parseVpsDpbSizeTable(vps);
     
    36713666  {
    36723667#endif
    3673 #if IRAP_ALIGN_FLAG_IN_VPS_VUI
    36743668    READ_FLAG(uiCode, "cross_layer_irap_aligned_flag" );
    36753669    vps->setCrossLayerIrapAlignFlag(uiCode);
    3676 #endif
    36773670#if O0223_PICTURE_TYPES_ALIGN_FLAG
    36783671  }
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r1124 r1125  
    23132313  }
    23142314#endif
    2315 #if !IRAP_ALIGN_FLAG_IN_VPS_VUI
    2316   WRITE_FLAG(vps->getCrossLayerIrapAlignFlag(), "cross_layer_irap_aligned_flag");
    2317 #endif
     2315 
    23182316#if VPS_DPB_SIZE_TABLE
    23192317  codeVpsDpbSizeTable(vps);
     
    25182516  {
    25192517#endif
    2520 #if IRAP_ALIGN_FLAG_IN_VPS_VUI
    25212518    WRITE_FLAG(vps->getCrossLayerIrapAlignFlag(), "cross_layer_irap_aligned_flag");
    2522 #endif
    25232519#if O0223_PICTURE_TYPES_ALIGN_FLAG
    25242520  }
Note: See TracChangeset for help on using the changeset viewer.