From bc02bc868608668bc277c6d6af47bfd0d9e24e65 Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Thu, 7 Aug 2008 07:01:54 +0000 Subject: Remove unused redefinition of av_log for test. Originally committed as revision 14657 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/lls.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libavutil/lls.c') diff --git a/libavutil/lls.c b/libavutil/lls.c index b9d2d81681..265b57498c 100644 --- a/libavutil/lls.c +++ b/libavutil/lls.c @@ -30,10 +30,6 @@ #include "lls.h" -#ifdef TEST -#define av_log(a,b,...) printf(__VA_ARGS__) -#endif - void av_init_lls(LLSModel *m, int indep_count){ memset(m, 0, sizeof(LLSModel)); @@ -140,7 +136,7 @@ int main(void){ av_solve_lls(&m, 0.001, 0); for(order=0; order<3; order++){ eval= av_evaluate_lls(&m, var+1, order); - av_log(NULL, AV_LOG_DEBUG, "real:%f order:%d pred:%f var:%f coeffs:%f %f %f\n", + printf("real:%f order:%d pred:%f var:%f coeffs:%f %f %f\n", var[0], order, eval, sqrt(m.variance[order] / (i+1)), m.coeff[order][0], m.coeff[order][1], m.coeff[order][2]); } -- cgit v1.2.3