Changeset 1488 in SHVCSoftware


Ignore:
Timestamp:
24 Nov 2015, 03:56:55 (9 years ago)
Author:
fujitsu
Message:

Fixed small error related to FORMATIDX_CHECK, checking that cfg files do not set two layers with different parameters but same formatID.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r1487 r1488  
    19861986    }
    19871987#if FORMATIDX_CHECK
    1988     for(Int compareLayer = layer+1; compareLayer < m_numLayers; compareLayer++ )
     1988    for(Int compareLayer = 0; compareLayer < layer; compareLayer++ )
    19891989    {
    19901990      if(m_apcLayerCfg[layer]->m_repFormatIdx == m_apcLayerCfg[compareLayer]->m_repFormatIdx && (
     
    19931993           || m_apcLayerCfg[layer]->m_iSourceWidth != m_apcLayerCfg[compareLayer]->m_iSourceWidth
    19941994           || m_apcLayerCfg[layer]->m_iSourceHeight != m_apcLayerCfg[compareLayer]->m_iSourceHeight
    1995            || m_apcLayerCfg[layer]->m_internalBitDepth != m_apcLayerCfg[compareLayer]->m_internalBitDepth
     1995           || m_apcLayerCfg[layer]->m_internalBitDepth[0] != m_apcLayerCfg[compareLayer]->m_internalBitDepth[0]
     1996           || m_apcLayerCfg[layer]->m_internalBitDepth[1] != m_apcLayerCfg[compareLayer]->m_internalBitDepth[1]
    19961997           || m_apcLayerCfg[layer]->m_confWinLeft != m_apcLayerCfg[compareLayer]->m_confWinLeft
    19971998           || m_apcLayerCfg[layer]->m_confWinRight != m_apcLayerCfg[compareLayer]->m_confWinRight
Note: See TracChangeset for help on using the changeset viewer.