diff h263.c @ 9999:c78fd9154378 libavcodec

Change av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.
author diego
date Thu, 30 Jul 2009 21:00:08 +0000
parents 483ba97736f8
children 95f3daa991a2
line wrap: on
line diff
--- a/h263.c	Thu Jul 30 20:57:41 2009 +0000
+++ b/h263.c	Thu Jul 30 21:00:08 2009 +0000
@@ -4586,9 +4586,7 @@
    code >>= 1;
 
    code = (sign) ? (pred - code) : (pred + code);
-#ifdef DEBUG
-   av_log( s->avctx, AV_LOG_DEBUG,"H.263+ UMV Motion = %d\n", code);
-#endif
+   dprintf(s->avctx,"H.263+ UMV Motion = %d\n", code);
    return code;
 
 }