Changeset 1019 in SHVCSoftware


Ignore:
Timestamp:
4 Feb 2015, 18:36:21 (10 years ago)
Author:
seregin
Message:

fix compile warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-upgrade/source/Lib/TLibEncoder/TEncTop.cpp

    r1018 r1019  
    16461646    {
    16471647      UInt layerIdx = m_cVPS.getLayerIdInVps( m_layerId );
    1648       RepFormat* repFormat = m_cVPS.getVpsRepFormat(m_cVPS.getVpsRepFormatIdx(layerIdx));
     1648      RepFormat* repFmt = m_cVPS.getVpsRepFormat(m_cVPS.getVpsRepFormatIdx(layerIdx));
    16491649     
    16501650      if( m_cPPS.getLayerId() == 0 &&
    16511651          m_cSPS.getLayerId() == 0 &&
    1652           repFormat->getChromaFormatVpsIdc() == m_cSPS.getChromaFormatIdc() &&
    1653           repFormat->getSeparateColourPlaneVpsFlag() == 0 &&
    1654           repFormat->getPicHeightVpsInLumaSamples() == m_cSPS.getPicHeightInLumaSamples() &&
    1655           repFormat->getPicWidthVpsInLumaSamples()  == m_cSPS.getPicWidthInLumaSamples() &&
    1656           repFormat->getBitDepthVpsLuma()   == m_cSPS.getBitDepth(CHANNEL_TYPE_LUMA) &&
    1657           repFormat->getBitDepthVpsChroma() == m_cSPS.getBitDepth(CHANNEL_TYPE_CHROMA) &&
    1658           repFormat->getConformanceWindowVps().getWindowLeftOffset()   == m_cSPS.getConformanceWindow().getWindowLeftOffset() &&
    1659           repFormat->getConformanceWindowVps().getWindowRightOffset()  == m_cSPS.getConformanceWindow().getWindowRightOffset() &&
    1660           repFormat->getConformanceWindowVps().getWindowTopOffset()    == m_cSPS.getConformanceWindow().getWindowTopOffset() &&
    1661           repFormat->getConformanceWindowVps().getWindowBottomOffset() == m_cSPS.getConformanceWindow().getWindowBottomOffset() )
     1652          repFmt->getChromaFormatVpsIdc() == m_cSPS.getChromaFormatIdc() &&
     1653          repFmt->getSeparateColourPlaneVpsFlag() == 0 &&
     1654          repFmt->getPicHeightVpsInLumaSamples() == m_cSPS.getPicHeightInLumaSamples() &&
     1655          repFmt->getPicWidthVpsInLumaSamples()  == m_cSPS.getPicWidthInLumaSamples() &&
     1656          repFmt->getBitDepthVpsLuma()   == m_cSPS.getBitDepth(CHANNEL_TYPE_LUMA) &&
     1657          repFmt->getBitDepthVpsChroma() == m_cSPS.getBitDepth(CHANNEL_TYPE_CHROMA) &&
     1658          repFmt->getConformanceWindowVps().getWindowLeftOffset()   == m_cSPS.getConformanceWindow().getWindowLeftOffset() &&
     1659          repFmt->getConformanceWindowVps().getWindowRightOffset()  == m_cSPS.getConformanceWindow().getWindowRightOffset() &&
     1660          repFmt->getConformanceWindowVps().getWindowTopOffset()    == m_cSPS.getConformanceWindow().getWindowTopOffset() &&
     1661          repFmt->getConformanceWindowVps().getWindowBottomOffset() == m_cSPS.getConformanceWindow().getWindowBottomOffset() )
    16621662      {
    16631663        m_cVPS.setBaseLayerPSCompatibilityFlag(layerIdx, 1);
Note: See TracChangeset for help on using the changeset viewer.