Changeset 1020 in SHVCSoftware for branches/SHM-dev


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

fix compiler warning

File:
1 edited

Legend:

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

    r1017 r1020  
    17991799    {
    18001800      UInt layerIdx = m_cVPS.getLayerIdInVps( m_layerId );
    1801       RepFormat* repFormat = m_cVPS.getVpsRepFormat(m_cVPS.getVpsRepFormatIdx(layerIdx));
     1801      RepFormat* repFmt = m_cVPS.getVpsRepFormat(m_cVPS.getVpsRepFormatIdx(layerIdx));
    18021802     
    18031803      if( m_cPPS.getLayerId() == 0 &&
    18041804          m_cSPS.getLayerId() == 0 &&
    1805           repFormat->getChromaFormatVpsIdc() == m_cSPS.getChromaFormatIdc() &&
    1806           repFormat->getSeparateColourPlaneVpsFlag() == 0 &&
    1807           repFormat->getPicHeightVpsInLumaSamples() == m_cSPS.getPicHeightInLumaSamples() &&
    1808           repFormat->getPicWidthVpsInLumaSamples()  == m_cSPS.getPicWidthInLumaSamples() &&
    1809           repFormat->getBitDepthVpsLuma()   == m_cSPS.getBitDepthY() &&
    1810           repFormat->getBitDepthVpsChroma() == m_cSPS.getBitDepthC() &&
    1811           repFormat->getConformanceWindowVps().getWindowLeftOffset()   == m_cSPS.getConformanceWindow().getWindowLeftOffset() &&
    1812           repFormat->getConformanceWindowVps().getWindowRightOffset()  == m_cSPS.getConformanceWindow().getWindowRightOffset() &&
    1813           repFormat->getConformanceWindowVps().getWindowTopOffset()    == m_cSPS.getConformanceWindow().getWindowTopOffset() &&
    1814           repFormat->getConformanceWindowVps().getWindowBottomOffset() == m_cSPS.getConformanceWindow().getWindowBottomOffset() )
     1805          repFmt->getChromaFormatVpsIdc() == m_cSPS.getChromaFormatIdc() &&
     1806          repFmt->getSeparateColourPlaneVpsFlag() == 0 &&
     1807          repFmt->getPicHeightVpsInLumaSamples() == m_cSPS.getPicHeightInLumaSamples() &&
     1808          repFmt->getPicWidthVpsInLumaSamples()  == m_cSPS.getPicWidthInLumaSamples() &&
     1809          repFmt->getBitDepthVpsLuma()   == m_cSPS.getBitDepthY() &&
     1810          repFmt->getBitDepthVpsChroma() == m_cSPS.getBitDepthC() &&
     1811          repFmt->getConformanceWindowVps().getWindowLeftOffset()   == m_cSPS.getConformanceWindow().getWindowLeftOffset() &&
     1812          repFmt->getConformanceWindowVps().getWindowRightOffset()  == m_cSPS.getConformanceWindow().getWindowRightOffset() &&
     1813          repFmt->getConformanceWindowVps().getWindowTopOffset()    == m_cSPS.getConformanceWindow().getWindowTopOffset() &&
     1814          repFmt->getConformanceWindowVps().getWindowBottomOffset() == m_cSPS.getConformanceWindow().getWindowBottomOffset() )
    18151815      {
    18161816        m_cVPS.setBaseLayerPSCompatibilityFlag(layerIdx, 1);
Note: See TracChangeset for help on using the changeset viewer.