| 2725 | } |
| 2726 | |
| 2727 | void LogErrorToCSVFile(AnalysisErrorCodeType error) |
| 2728 | { |
| 2729 | // Used in test automation and results validation |
| 2730 | if (g_CmdPrams.logcsvformat) |
| 2731 | { |
| 2732 | CMP_ANALYSIS_DATA analysisData = {0}; |
| 2733 | analysisData.SSIM = -1; // Set data content is invalid and not processed |
| 2734 | analysisData.errCode = error; |
| 2735 | ProcessResults(g_CmdPrams, analysisData); |
| 2736 | } |
| 2737 | } |
| 2738 | |
| 2739 | void PrintInfoStr(const char* InfoStr) |
| 2740 | { |
no test coverage detected