Ignore:
Timestamp:
18 Dec 2013, 09:00:24 (10 years ago)
Author:
zte
Message:

JCT3V-F0131, JCT3V-F0139

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-9.1-dev0-ZTE/source/Lib/TLibDecoder/TDecTop.cpp

    r738 r748  
    11511151  pps->setLayerId( getLayerId() );
    11521152#endif
     1153#if DLT_DIFF_CODING_IN_PPS
     1154  // Assuming that all PPS indirectly refer to the same VPS via different SPS
     1155  // There is no parsing dependency in decoding DLT in PPS.
     1156  // The VPS information passed to decodePPS() is used to arrange the decoded DLT tables to their corresponding layers.
     1157  // This is equivalent to the process of
     1158  //   Step 1) decoding DLT tables based on the number of depth layers, and
     1159  //   Step 2) mapping DLT tables to the depth layers
     1160  // as descripted in the 3D-HEVC WD.
     1161  TComVPS* vps = m_parameterSetManagerDecoder.getPrefetchedVPS( 0 );
     1162  m_cEntropyDecoder.decodePPS( pps, vps );
     1163#else
    11531164  m_cEntropyDecoder.decodePPS( pps );
     1165#endif
    11541166  m_parameterSetManagerDecoder.storePrefetchedPPS( pps );
    11551167}
Note: See TracChangeset for help on using the changeset viewer.