Ignore:
Timestamp:
2 Feb 2014, 04:51:29 (11 years ago)
Author:
seregin
Message:

update to HM-13.0

File:
1 edited

Legend:

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

    r582 r593  
    44 * granted under this license. 
    55 *
    6  * Copyright (c) 2010-2013, ITU/ISO/IEC
     6 * Copyright (c) 2010-2014, ITU/ISO/IEC
    77 * All rights reserved.
    88 *
     
    714714  UInt    getNumReorderPics(UInt tLayer)                        { return m_numReorderPics[tLayer]; }
    715715 
    716   Void    setMaxDecPicBuffering(UInt v, UInt tLayer)            { m_uiMaxDecPicBuffering[tLayer] = v;    }
     716  Void    setMaxDecPicBuffering(UInt v, UInt tLayer)            { assert(tLayer < MAX_TLAYER); m_uiMaxDecPicBuffering[tLayer] = v;    }
    717717  UInt    getMaxDecPicBuffering(UInt tLayer)                    { return m_uiMaxDecPicBuffering[tLayer]; }
    718718 
     
    13201320  Int         m_qpBDOffsetC;
    13211321
    1322   Bool        m_useLossless;
    1323 
    13241322  UInt        m_uiPCMBitDepthLuma;
    13251323  UInt        m_uiPCMBitDepthChroma;
     
    13401338  Bool        m_scalingListEnabledFlag;
    13411339  Bool        m_scalingListPresentFlag;
    1342 
    13431340  TComScalingList*     m_scalingList;   //!< ScalingList class pointer
    1344 
    13451341  UInt        m_uiMaxDecPicBuffering[MAX_TLAYER];
    13461342  UInt        m_uiMaxLatencyIncrease[MAX_TLAYER];  // Really max latency increase plus 1 (value 0 expresses no limit)
     
    14561452  UInt getMaxTrSize   ()         { return  m_uiMaxTrSize;   }
    14571453 
    1458   // Tool list
    1459   Bool getUseLossless ()         { return m_useLossless; }
    1460   Void setUseLossless ( Bool b ) { m_useLossless  = b; }
    1461  
    14621454  // AMP accuracy
    14631455  Int       getAMPAcc   ( UInt uiDepth ) { return m_iAMPAcc[uiDepth]; }
     
    14991491#endif
    15001492  TComScalingList* getScalingList ()       { return m_scalingList; }               //!< get ScalingList class pointer in SPS
    1501 
    15021493  UInt getMaxDecPicBuffering  (UInt tlayer)            { return m_uiMaxDecPicBuffering[tlayer]; }
    1503   Void setMaxDecPicBuffering  ( UInt ui, UInt tlayer ) { m_uiMaxDecPicBuffering[tlayer] = ui;   }
     1494  Void setMaxDecPicBuffering  ( UInt ui, UInt tlayer ) { assert(tlayer < MAX_TLAYER);  m_uiMaxDecPicBuffering[tlayer] = ui;   }
    15041495  UInt getMaxLatencyIncrease  (UInt tlayer)            { return m_uiMaxLatencyIncrease[tlayer];   }
    15051496  Void setMaxLatencyIncrease  ( UInt ui , UInt tlayer) { m_uiMaxLatencyIncrease[tlayer] = ui;      }
Note: See TracChangeset for help on using the changeset viewer.