projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7919d10
)
print max and mse
author
Michael Niedermayer
<michaelni@gmx.at>
Sun, 29 Jul 2007 09:58:36 +0000
(09:58 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sun, 29 Jul 2007 09:58:36 +0000
(09:58 +0000)
Originally committed as revision 9826 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/fft-test.c
patch
|
blob
|
history
diff --git
a/libavcodec/fft-test.c
b/libavcodec/fft-test.c
index 725a814ca81aeb67b50709729ba6a3a75c552c1b..fd3346b9bdc7c61160ff7ce6ad690e980eda0c71 100644
(file)
--- a/
libavcodec/fft-test.c
+++ b/
libavcodec/fft-test.c
@@
-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);
}