diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-08-26 19:05:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-08-26 19:05:44 +0000 |
commit | 95ae72b7e063cb02aa17c7f0c7d759844a37e526 (patch) | |
tree | fce2f7de2ba52379302e234fb30d1de82f0e63f9 /libavcodec/motion_est.c | |
parent | 5b2bf9434078d0a57482658d82a26c3b2a13493d (diff) | |
download | ffmpeg-95ae72b7e063cb02aa17c7f0c7d759844a37e526.tar.gz |
Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf uni-stuttgart de)
Originally committed as revision 4540 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r-- | libavcodec/motion_est.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 6811dca27b..3426d3497c 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -441,7 +441,7 @@ static int log_motion_search(MpegEncContext * s, } while (range >= 1); #ifdef DEBUG - fprintf(stderr, "log - MX: %d\tMY: %d\n", mx, my); + av_log(s->avctx, AV_LOG_DEBUG, "log - MX: %d\tMY: %d\n", mx, my); #endif *mx_ptr = mx; *my_ptr = my; @@ -530,7 +530,7 @@ static int phods_motion_search(MpegEncContext * s, } while (range >= 1); #ifdef DEBUG - fprintf(stderr, "phods - MX: %d\tMY: %d\n", mx, my); + av_log(s->avctx, AV_LOG_DEBUG, "phods - MX: %d\tMY: %d\n", mx, my); #endif /* half pixel search */ |