Changeset 121 in 3DVCSoftware for trunk/source/Lib/TLibEncoder


Ignore:
Timestamp:
6 Sep 2012, 18:12:56 (12 years ago)
Author:
tech
Message:

Fixed several memory leaks.

Location:
trunk/source/Lib/TLibEncoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibEncoder/TEncCfg.h

    r120 r121  
    272272  Int       m_iColumnRowInfoPresent;
    273273  Int       m_iUniformSpacingIdr;
     274#if FIX_REMOVE_TILE_DEPENDENCE
     275#else
    274276  Int       m_iTileBoundaryIndependenceIdr;
     277#endif
    275278  Int       m_iNumColumnsMinus1;
    276279  UInt*     m_puiColumnWidth;
     
    287290  Int       m_iWaveFrontSubstreams;
    288291
    289   bool m_pictureDigestEnabled; ///< enable(1)/disable(0) md5 computation and SEI signalling
     292  Bool      m_pictureDigestEnabled; ///< enable(1)/disable(0) md5 computation and SEI signalling
    290293
    291294  //====== Weighted Prediction ========
  • trunk/source/Lib/TLibEncoder/TEncTop.cpp

    r116 r121  
    11021102
    11031103    // # substreams is "per tile" when tiles are independent.
     1104#if FIX_REMOVE_TILE_DEPENDENCE
     1105    if ( m_iWaveFrontSynchro )
     1106#else
    11041107    if (m_iTileBoundaryIndependenceIdr && m_iWaveFrontSynchro)
     1108#endif
    11051109    {
    11061110      m_cPPS.setNumSubstreams(m_iWaveFrontSubstreams * (m_iNumColumnsMinus1+1)*(m_iNumRowsMinus1+1));
Note: See TracChangeset for help on using the changeset viewer.