Ticket #16: returnvalues.patch
File returnvalues.patch, 1.0 KB (added by mwi, 13 years ago) |
---|
-
source/App/TAppDecoder/decmain.cpp
60 60 if(!cTAppDecTop.parseCfg( argc, argv )) 61 61 { 62 62 cTAppDecTop.destroy(); 63 return 0;63 return 1; 64 64 } 65 65 66 66 // starting time … … 77 77 // destroy application decoder class 78 78 cTAppDecTop.destroy(); 79 79 80 return 1;80 return 0; 81 81 } 82 82 83 83 -
source/App/TAppEncoder/encmain.cpp
59 59 if(!cTAppEncTop.parseCfg( argc, argv )) 60 60 { 61 61 cTAppEncTop.destroy(); 62 return 0;62 return 1; 63 63 } 64 64 65 65 // starting time … … 76 76 // destroy application encoder class 77 77 cTAppEncTop.destroy(); 78 78 79 #ifdef QC_CONFIG80 79 return 0; 81 #else82 return 1;83 #endif84 80 } 85 81 86 82