Changeset 1163 in SHVCSoftware


Ignore:
Timestamp:
8 Jul 2015, 01:04:18 (9 years ago)
Author:
seregin
Message:

macro cleanup: P0182_VPS_VUI_PS_FLAG

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

Legend:

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

    r1161 r1163  
    789789#endif
    790790#endif
    791 
    792 #if P0182_VPS_VUI_PS_FLAG
    793791  UInt       m_baseLayerPSCompatibilityFlag[MAX_LAYERS];
    794 #endif
    795 
    796792#if P0307_VPS_NON_VUI_EXTENSION
    797793  Int        m_vpsNonVuiExtLength;
     
    11771173#endif
    11781174#endif
    1179 #if P0182_VPS_VUI_PS_FLAG
    1180   Void   setBaseLayerPSCompatibilityFlag (Int layer, int val)        { m_baseLayerPSCompatibilityFlag[layer] = val; }
    1181   Int    getBaseLayerPSCompatibilityFlag (Int layer)   { return m_baseLayerPSCompatibilityFlag[layer];}
    1182 #endif
    1183 
    1184   Bool   getAltOuputLayerFlag(Int idx)         { return m_altOutputLayerFlag[idx]; }
    1185   Void   setAltOuputLayerFlag(Int idx, Bool x) { m_altOutputLayerFlag[idx] = x;    }
     1175  Void   setBaseLayerPSCompatibilityFlag (Int layer, int val)   { m_baseLayerPSCompatibilityFlag[layer] = val; }
     1176  Int    getBaseLayerPSCompatibilityFlag (Int layer)            { return m_baseLayerPSCompatibilityFlag[layer];}
     1177  Bool   getAltOuputLayerFlag(Int idx)                          { return m_altOutputLayerFlag[idx]; }
     1178  Void   setAltOuputLayerFlag(Int idx, Bool x)                  { m_altOutputLayerFlag[idx] = x;    }
    11861179
    11871180#if REPN_FORMAT_IN_VPS
  • branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h

    r1162 r1163  
    126126#define VPS_VUI_VIDEO_SIGNAL_MOVE        1      ///< JCTVC-P0076 Move video signal information syntax structure earlier in the VPS VUI
    127127#endif
    128 #define P0182_VPS_VUI_PS_FLAG            1      ///< JCTVC-P0182, add base_layer_parameter_set_compatibility_flag
    129128
    130129#define AVC_BASE                         1      ///< YUV BL reading for AVC base SVC
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1161 r1163  
    37593759  }
    37603760#endif
    3761 #if P0182_VPS_VUI_PS_FLAG
    3762   for(i = 1; i < vps->getMaxLayers(); i++)
     3761
     3762  for( i = 1; i < vps->getMaxLayers(); i++ )
    37633763  {
    37643764    if (vps->getNumRefLayers(vps->getLayerIdInNuh(i)) == 0)
     
    37723772    }
    37733773  }
    3774 #endif
    37753774}
    37763775
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r1150 r1163  
    607607    }
    608608
    609 #if P0182_VPS_VUI_PS_FLAG
    610609    UInt layerIdx = activeVPS->getLayerIdxInVps( m_layerId );
    611610
     
    627626      assert( repFormat->getConformanceWindowVps().getWindowBottomOffset() == sps->getConformanceWindow().getWindowBottomOffset() );
    628627    }   
    629 #endif
    630628  }
    631629
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r1161 r1163  
    26242624    }
    26252625#endif
    2626 #if P0182_VPS_VUI_PS_FLAG
    2627     for(i = 1; i < vps->getMaxLayers(); i++)
     2626
     2627    for( i = 1; i < vps->getMaxLayers(); i++ )
    26282628    {
    26292629      if( vps->getNumRefLayers(vps->getLayerIdInNuh(i)) == 0 )
     
    26322632      }
    26332633    }
    2634 #endif
    26352634}
    26362635
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncTop.cpp

    r1150 r1163  
    15091509    }
    15101510
    1511 #if P0182_VPS_VUI_PS_FLAG
    15121511    if( m_cVPS.getNumRefLayers( m_layerId ) == 0 )
    15131512    {
     
    15351534      }
    15361535    }
    1537 #endif
    15381536  }
    15391537}
Note: See TracChangeset for help on using the changeset viewer.