Commit 2438ff9d authored by michael's avatar michael

print max and mse


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9826 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b9b9b138
......@@ -144,13 +144,19 @@ int64_t gettime(void)
void check_diff(float *tab1, float *tab2, int n)
{
int i;
double max= 0;
double error= 0;
for(i=0;i<n;i++) {
if (fabsf(tab1[i] - tab2[i]) >= 1e-3) {
double e= fabsf(tab1[i] - tab2[i]);
if (e >= 1e-3) {
av_log(NULL, AV_LOG_ERROR, "ERROR %d: %f %f\n",
i, tab1[i], tab2[i]);
}
error+= e*e;
if(e>max) max= e;
}
av_log(NULL, AV_LOG_INFO, "max:%f e:%g\n", max, sqrt(error)/n);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment