Ignore:
Timestamp:
8 Oct 2013, 08:00:50 (11 years ago)
Author:
qualcomm
Message:

JCTVC-N0244: Signaling of poc_reset_flag in the slice header (MACRO: POC_RESET_FLAG)

Signal poc_reset_flag in slice header, which will reset POC value of the current picture and decrement the POC of pictures in the DPB.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

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

    r409 r411  
    15681568  Bool        m_bRefenced;
    15691569 
     1570#if POC_RESET_FLAG
     1571  Bool        m_bPocResetFlag;
     1572  Int         m_pocValueBeforeReset;
     1573#endif 
    15701574#if SH_DISCARDABLE_FLAG
    15711575  Bool        m_bDiscardableFlag;
    15721576#endif
    1573 
    15741577  // access channel
    15751578  TComVPS*    m_pcVPS;
     
    17301733#endif
    17311734
     1735#if POC_RESET_FLAG
     1736  Bool      getPocResetFlag  ()                              { return m_bPocResetFlag; }
     1737  Void      setPocResetFlag  (Bool b)                        { m_bPocResetFlag = b; }
     1738  Int       getPocValueBeforeReset ()                        { return m_pocValueBeforeReset; }
     1739  Void      setPocValueBeforeReset (Int x)                   { m_pocValueBeforeReset = x ; }
     1740#endif
    17321741#if SH_DISCARDABLE_FLAG
    17331742  Bool      getDiscardableFlag  ()                              { return m_bDiscardableFlag; }
Note: See TracChangeset for help on using the changeset viewer.