diff options
author | Cyrille Henry <nusmuk@users.sourceforge.net> | 2015-01-20 14:01:00 +0000 |
---|---|---|
committer | Cyrille Henry <nusmuk@users.sourceforge.net> | 2015-01-20 14:01:00 +0000 |
commit | 4b2f71090cc3e29ac4e70c69b5b59d9870305ca6 (patch) | |
tree | 69e9f0806c94cd337edeb310ecbb40f205ff2ab1 /nusmuk-utils | |
parent | db910b5575ccb2e12a8d1c92c8b83a6cafec1b94 (diff) |
remove debug print
svn path=/trunk/externals/nusmuk/; revision=17417
Diffstat (limited to 'nusmuk-utils')
-rw-r--r-- | nusmuk-utils/tab_max.c | 2 | ||||
-rw-r--r-- | nusmuk-utils/tab_min.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nusmuk-utils/tab_max.c b/nusmuk-utils/tab_max.c index 5789261..27d2be1 100644 --- a/nusmuk-utils/tab_max.c +++ b/nusmuk-utils/tab_max.c @@ -56,7 +56,7 @@ void tab_max_compute(t_tab_max *x) nb_max = MIN(npoints_dst, nb_max); if (x->nb_max >0) nb_max = MIN(nb_max, x->nb_max); - post("nb_max = %d",nb_max); + // post("nb_max = %d",nb_max); for (i=0; i<nb_max;i++) { vec_dst[i + x->offset_dst].w_float = MAX(vec_src1[i + x->offset_src1].w_float, vec_src2[i + x->offset_src2].w_float); diff --git a/nusmuk-utils/tab_min.c b/nusmuk-utils/tab_min.c index d1d57bd..d86f913 100644 --- a/nusmuk-utils/tab_min.c +++ b/nusmuk-utils/tab_min.c @@ -56,7 +56,7 @@ void tab_min_compute(t_tab_min *x) nb_max = MIN(npoints_dst, nb_max); if (x->nb_max >0) nb_max = MIN(nb_max, x->nb_max); - post("nb_max = %d",nb_max); + // post("nb_max = %d",nb_max); for (i=0; i<nb_max;i++) { vec_dst[i + x->offset_dst].w_float = MIN(vec_src1[i + x->offset_src1].w_float, vec_src2[i + x->offset_src2].w_float); |