Changeset 121 in 3DVCSoftware for trunk/source/App
- Timestamp:
- 6 Sep 2012, 18:12:56 (12 years ago)
- Location:
- trunk/source/App
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppDecoder/TAppDecCfg.cpp
r100 r121 103 103 if (!m_pchBitstreamFile) 104 104 { 105 fprintf(stderr, "No input file specif ed, aborting\n");105 fprintf(stderr, "No input file specified, aborting\n"); 106 106 return false; 107 107 } -
trunk/source/App/TAppEncoder/TAppEncCfg.cpp
r120 r121 120 120 #endif 121 121 122 #if FIX_MEM_LEAKS 123 if ( m_pchCameraParameterFile != NULL ) 124 free ( m_pchCameraParameterFile ); 125 126 if ( m_pchBaseViewCameraNumbers != NULL ) 127 free ( m_pchBaseViewCameraNumbers ); 128 129 if ( m_pchdQPFile != NULL ) 130 free ( m_pchdQPFile ); 131 132 if ( m_pchColumnWidth != NULL ) 133 free ( m_pchColumnWidth ); 134 135 if ( m_pchRowHeight != NULL ) 136 free ( m_pchRowHeight ); 137 138 if ( m_scalingListFile != NULL ) 139 free ( m_scalingListFile ); 140 141 #endif 142 122 143 } 123 144 … … 228 249 ("FrameSkip,-fs", m_FrameSkip, 0u, "Number of frames to skip at start of input YUV") 229 250 ("FramesToBeEncoded,f", m_iFrameToBeEncoded, 0, "number of frames to be encoded (default=all)") 230 ("FrameToBeEncoded", m_iFrameToBeEncoded, 0, "depricated alias of FramesToBeEncoded")251 ("FrameToBeEncoded", m_iFrameToBeEncoded, 0, "deprecated alias of FramesToBeEncoded") 231 252 232 253 ("NumberOfViews", m_iNumberOfViews, 0, "Number of views") -
trunk/source/App/TAppEncoder/TAppEncTop.cpp
r120 r121 1000 1000 pcDepthPicYuvOrg = NULL; 1001 1001 1002 #if FIX_MEM_LEAKS 1003 if ( pcPdmDepthOrg != NULL ) 1004 { 1005 pcPdmDepthOrg->destroy(); 1006 delete pcPdmDepthOrg; 1007 pcPdmDepthOrg = NULL; 1008 }; 1009 #endif 1010 1011 1002 1012 for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) 1003 1013 {
Note: See TracChangeset for help on using the changeset viewer.