Changeset 1464 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon


Ignore:
Timestamp:
25 Aug 2015, 19:35:49 (10 years ago)
Author:
seregin
Message:

port rev 4596

Location:
branches/SHM-dev/source/Lib/TLibCommon
Files:
2 edited

Legend:

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

    r1455 r1464  
    20632063  for ( Int i = 0; i < MAX_TLAYER; i++ )
    20642064  {
    2065     m_uiMaxLatencyIncrease[i] = 0;
     2065    m_uiMaxLatencyIncreasePlus1[i] = 0;
    20662066    m_uiMaxDecPicBuffering[i] = 1;
    20672067    m_numReorderPics[i]       = 0;
  • branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h

    r1442 r1464  
    14241424  TComScalingList  m_scalingList;
    14251425  UInt             m_uiMaxDecPicBuffering[MAX_TLAYER];
    1426   UInt             m_uiMaxLatencyIncrease[MAX_TLAYER];  // Really max latency increase plus 1 (value 0 expresses no limit)
     1426  UInt             m_uiMaxLatencyIncreasePlus1[MAX_TLAYER];
    14271427
    14281428  Bool             m_useStrongIntraSmoothing;
     
    15691569  UInt                   getMaxDecPicBuffering(UInt tlayer) const                                        { return m_uiMaxDecPicBuffering[tlayer];                               }
    15701570  Void                   setMaxDecPicBuffering( UInt ui, UInt tlayer )                                   { assert(tlayer < MAX_TLAYER); m_uiMaxDecPicBuffering[tlayer] = ui;    }
    1571   UInt                   getMaxLatencyIncrease(UInt tlayer) const                                        { return m_uiMaxLatencyIncrease[tlayer];                               }
    1572   Void                   setMaxLatencyIncrease( UInt ui , UInt tlayer)                                   { m_uiMaxLatencyIncrease[tlayer] = ui;                                 }
     1571  UInt                   getMaxLatencyIncreasePlus1(UInt tlayer) const                                   { return m_uiMaxLatencyIncreasePlus1[tlayer];                          }
     1572  Void                   setMaxLatencyIncreasePlus1( UInt ui , UInt tlayer)                              { m_uiMaxLatencyIncreasePlus1[tlayer] = ui;                            }
    15731573
    15741574  Void                   setUseStrongIntraSmoothing(Bool bVal)                                           { m_useStrongIntraSmoothing = bVal;                                    }
Note: See TracChangeset for help on using the changeset viewer.