Changeset 796 in SHVCSoftware


Ignore:
Timestamp:
6 Jun 2014, 20:40:28 (11 years ago)
Author:
seregin
Message:

remove TILE_BOUNDARY_ALIGNED_FLAG

Location:
branches/SHM-6-dev/source/Lib
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TComSlice.cpp

    r795 r796  
    23422342  ::memset(m_loopFilterNotAcrossTilesFlag,  0, sizeof(m_loopFilterNotAcrossTilesFlag));
    23432343#endif
    2344 #if TILE_BOUNDARY_ALIGNED_FLAG
    23452344  ::memset(m_tileBoundariesAlignedFlag,  0, sizeof(m_tileBoundariesAlignedFlag));
    2346 #endif
    23472345#if VPS_VUI_WPP_NOT_IN_USE__FLAG
    23482346  m_wppNotInUseFlag = true;
     
    24892487    }
    24902488  }
    2491 #if TILE_BOUNDARY_ALIGNED_FLAG 
     2489
    24922490  if (m_tilesNotInUseFlag)
    24932491  {
     
    25002498    }
    25012499  }
    2502 #endif
    2503 }
    2504 #endif
     2500}
     2501#endif
     2502
    25052503#if VPS_VUI_WPP_NOT_IN_USE__FLAG
    25062504Void TComVPS::setWppNotInUseFlag(Bool x)
  • branches/SHM-6-dev/source/Lib/TLibCommon/TComSlice.h

    r795 r796  
    597597  Bool       m_loopFilterNotAcrossTilesFlag[MAX_VPS_LAYER_ID_PLUS1];
    598598#endif
    599 #if TILE_BOUNDARY_ALIGNED_FLAG
    600599  Bool       m_tileBoundariesAlignedFlag[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
    601 #endif
    602600#if VPS_VUI_WPP_NOT_IN_USE__FLAG
    603601  Bool       m_wppNotInUseFlag;
     
    992990  Void   setLoopFilterNotAcrossTilesFlag(Int currLayerId, Bool x)    { m_loopFilterNotAcrossTilesFlag[currLayerId] = x; }
    993991#endif
    994 #if TILE_BOUNDARY_ALIGNED_FLAG 
    995992  Bool   getTileBoundariesAlignedFlag(Int currLayerId, Int refLayerId)           { return m_tileBoundariesAlignedFlag[currLayerId][refLayerId]; }
    996993  Void   setTileBoundariesAlignedFlag(Int currLayerId, Int refLayerId, Bool x)   { m_tileBoundariesAlignedFlag[currLayerId][refLayerId] = x; }
    997 #endif
    998994#if VPS_VUI_WPP_NOT_IN_USE__FLAG 
    999995  Bool   getWppNotInUseFlag()         { return m_wppNotInUseFlag; }
  • branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h

    r795 r796  
    130130#define VPS_VUI_TILES_NOT_IN_USE__FLAG   1      ///< JCTVC-O0226: VPS VUI flag to indicate tile not in use
    131131#define VPS_VUI_WPP_NOT_IN_USE__FLAG     1      ///< JCTVC-O0226: VPS VUI flag to indicate tile not in use
    132 #define TILE_BOUNDARY_ALIGNED_FLAG       1      ///< JCTVC-N0160/JCTVC-N0199 proposal 2 variant 2: VPS VUI flag to indicate tile boundary alignment
    133132#define N0160_VUI_EXT_ILP_REF            1      ///< VUI extension inter-layer dependency offset signalling
    134133#if M0040_ADAPTIVE_RESOLUTION_CHANGE
  • branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r795 r796  
    22402240    }
    22412241#endif
    2242 #if TILE_BOUNDARY_ALIGNED_FLAG
     2242
    22432243    for(i = 1; i < vps->getMaxLayers(); i++)
    22442244    {
     
    22552255      }
    22562256    }
    2257 #endif
    22582257#if VPS_VUI_TILES_NOT_IN_USE__FLAG
    22592258  }
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r795 r796  
    15341534    }
    15351535#endif
    1536 #if TILE_BOUNDARY_ALIGNED_FLAG
     1536
    15371537    for(i = 1; i < vps->getMaxLayers(); i++)
    15381538    {
     
    15491549      }
    15501550    } 
    1551 #endif
    15521551#if VPS_VUI_TILES_NOT_IN_USE__FLAG
    15531552  }
Note: See TracChangeset for help on using the changeset viewer.