summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index b445c9b589..a8c03339e6 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -4586,9 +4586,7 @@ static int h263p_decode_umotion(MpegEncContext * s, int pred)
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;
}