Ignore:
Timestamp:
19 Nov 2012, 21:15:40 (12 years ago)
Author:
mitsubishi-htm
Message:

A second release, as planned

  • Migrate to HTM 4.1
  • Move VSP related switches to cfg file instead of #define in the source code
  • A few bug fixes
  • For VC project files, only VC9 file is updated

TODO

  • Migrate to HTM 5.0, to be used as anchor for CE1 toward Geneva meeting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPicSym.cpp

    r166 r193  
    126126  m_apcTComDataCU = NULL;
    127127
     128
     129#if FIX_MEM_LEAKS
     130  if( m_apcTComTile )
     131  {
     132    for( i=0; i<(m_iNumColumnsMinus1+1)*(m_iNumRowsMinus1+1); i++ )
     133    {
     134      if ( m_apcTComTile[i] )  delete m_apcTComTile[i];
     135    }
     136  }
     137#endif
     138
    128139  delete [] m_apcTComTile;
    129140  m_apcTComTile = NULL;
Note: See TracChangeset for help on using the changeset viewer.