Ignore:
Timestamp:
17 Jun 2013, 15:56:57 (12 years ago)
Author:
tech
Message:

Included fixes for memory leaks and gcc-4.6.3 compiler warnings.

Location:
branches/HTM-DEV-0.3-dev1/source/App/TAppDecoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev1/source/App/TAppDecoder/TAppDecCfg.h

    r446 r473  
    8484#if H_MV
    8585  , m_maxLayerId(0)
    86   , m_pchReconFiles(NULL)
    8786#endif
    8887  , m_pchReconFile(NULL)
  • branches/HTM-DEV-0.3-dev1/source/App/TAppDecoder/TAppDecTop.cpp

    r459 r473  
    9595    m_pchReconFile = NULL;
    9696  }
     97#if H_3D_FIX
     98  if (m_pchScaleOffsetFile)
     99  {
     100    free (m_pchScaleOffsetFile);
     101    m_pchScaleOffsetFile = NULL;
     102  }
     103#endif
    97104}
    98105
     
    146153  Int  pocLastPic        = -MAX_INT;   
    147154 
    148   Int  layerIdLastPic    = 0;
    149155  Int  layerIdCurrPic    = 0;
    150156
     
    223229        if ( bNewPicture || !bitstreamFile )
    224230        {
    225           layerIdLastPic    = layerIdCurrPic; 
    226231          layerIdCurrPic    = nalu.m_layerId;
    227232         
Note: See TracChangeset for help on using the changeset viewer.