Changeset 569 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
28 Jan 2014, 00:05:18 (11 years ago)
Author:
qualcomm
Message:

JCTVC-P0130: Absence of discardable pictures in RPS (Macro: DISCARDABLE_PIC_RPS)

Added conditions/asserts to ensure that pictures that belong to the temporal RPS or the inter-layer RPS have discardable_flag equal to 0.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-5.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r568 r569  
    18091809    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
    18101810    {
     1811#if DISCARDABLE_PIC_RPS
     1812      READ_FLAG(uiCode, "discardable_flag"); rpcSlice->setDiscardableFlag( uiCode ? true : false );
     1813#else
    18111814      READ_FLAG(uiCode, "discardable_flag"); // ignored
     1815#endif
    18121816      iBits++;
    18131817    }
Note: See TracChangeset for help on using the changeset viewer.