Ignore:
Timestamp:
12 May 2013, 18:11:47 (12 years ago)
Author:
seregin
Message:

enable zero number of direct references, fix for AVC base YUV input

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/SHM-2.0-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r182 r187  
    12681268  if( vps->getNumDirectRefLayers( m_layerId ) <= 0 )
    12691269  {
     1270#if ZERO_NUM_DIRECT_LAYERS
     1271    return (TDecTop *)getLayerDec( 0 );
     1272#else
    12701273    return NULL;
     1274#endif
    12711275  }
    12721276
     
    12761280  assert( vps->getMaxOneActiveRefLayerFlag() == 1 );
    12771281#endif
    1278 
    1279 
     1282 
    12801283  return (TDecTop *)getLayerDec( vps->getRefLayerId( m_layerId, 0 ) );
    12811284}
Note: See TracChangeset for help on using the changeset viewer.