Changeset 121 in 3DVCSoftware for trunk/source/App/TAppEncoder/TAppEncTop.cpp


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

Fixed several memory leaks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/App/TAppEncoder/TAppEncTop.cpp

    r120 r121  
    10001000  pcDepthPicYuvOrg = NULL;
    10011001 
     1002#if FIX_MEM_LEAKS
     1003  if ( pcPdmDepthOrg != NULL )
     1004  {
     1005    pcPdmDepthOrg->destroy();
     1006    delete pcPdmDepthOrg;     
     1007    pcPdmDepthOrg = NULL;
     1008  };
     1009#endif
     1010
     1011 
    10021012  for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ )
    10031013  {
Note: See TracChangeset for help on using the changeset viewer.