Ignore:
Timestamp:
21 Oct 2014, 21:09:26 (10 years ago)
Author:
tech
Message:

Removed MV-HEVC related macros part 1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp

    r1074 r1075  
    12541254    if( i >= pcVPS->getNumLayerSets( ) )   
    12551255    {     
    1256 #if !VPS_MISC_UPDATES
    1257       WRITE_UVLC( pcVPS->getLayerSetIdxForOlsMinus1( i ),      "layer_set_idx_for_ols_minus1[i]" );
    1258 #else
    12591256      WRITE_CODE( pcVPS->getLayerSetIdxForOlsMinus1( i ), pcVPS->getLayerSetIdxForOlsMinus1Len( i ) ,      "layer_set_idx_for_ols_minus1[i]" );
    1260 #endif
    12611257    }
    12621258
     
    15801576  if( pcVPSVUI->getVideoSignalInfoIdxPresentFlag() && pcVPSVUI->getVpsNumVideoSignalInfoMinus1() > 0 )
    15811577  {
    1582 #if I0045_VPS_VUI_VST_PARAMS
    15831578    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1; i <=  pcVPS->getMaxLayersMinus1(); i++ )
    15841579    {
    15851580      WRITE_CODE( pcVPSVUI->getVpsVideoSignalInfoIdx( i ), 4, "vps_video_signal_info_idx" );
    15861581    }
    1587 #else
    1588     for( Int i = 1; i <=  pcVPS->getMaxLayersMinus1(); i++ )
    1589     {
    1590       WRITE_CODE( pcVPSVUI->getVpsVideoSignalInfoIdx( i ), 4, "vps_video_signal_info_idx" );
    1591       assert( pcVPSVUI->getVpsVideoSignalInfoIdx( i ) >= 0 && pcVPSVUI->getVpsVideoSignalInfoIdx( i ) <= pcVPSVUI->getVpsNumVideoSignalInfoMinus1() );
    1592     }
    1593   }
    1594   else
    1595   {
    1596     for( Int i = 1; i <=  pcVPS->getMaxLayersMinus1(); i++ )
    1597     {
    1598       assert( pcVPSVUI->getVpsVideoSignalInfoIdx( i  ) == ( pcVPSVUI->getVideoSignalInfoIdxPresentFlag() ? 0 : i ) );
    1599     }
    1600 #endif
    16011582  }
    16021583  WRITE_FLAG( pcVPSVUI->getTilesNotInUseFlag( ) ? 1 : 0 , "tiles_not_in_use_flag" );
     
    19211902      esb++;
    19221903      WRITE_FLAG( pcSlice->getDiscardableFlag( ) ? 1 : 0 , "discardable_flag" );
    1923 #if NON_REF_NAL_TYPE_DISCARDABLE
    19241904      if (pcSlice->getDiscardableFlag( ))
    19251905      {
     
    19301910          pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_RASL_R);
    19311911      }
    1932 #endif
    19331912    }
    19341913
     
    20912070      if (pcSlice->getSPS()->getTMVPFlagsPresent())
    20922071      {
    2093 #if I0044_SLICE_TMVP
     2072#if H_MV
    20942073        WRITE_FLAG( pcSlice->getEnableTMVPFlag() ? 1 : 0, "slice_temporal_mvp_enabled_flag" );
    20952074#else
Note: See TracChangeset for help on using the changeset viewer.