diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-26 16:29:23 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-26 16:29:23 +0200 |
commit | 71043016384a069d48d84fc92e2a39ecfdc97157 (patch) | |
tree | 95c2aaf6ced399c0c0f5ac24053b7cf63c90737f /libavcodec/rv10.c | |
parent | e06dde52d75ac216c98c8479f7f8f0d4566024af (diff) | |
download | ffmpeg-71043016384a069d48d84fc92e2a39ecfdc97157.tar.gz |
avcodec/rv10: Use ff_tlog() for block level tracing
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 4fde24df26..e9365045da 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -634,7 +634,7 @@ static int rv10_decode_packet(AVCodecContext *avctx, const uint8_t *buf, for (s->mb_num_left = mb_count; s->mb_num_left > 0; s->mb_num_left--) { int ret; ff_update_block_index(s); - ff_dlog(avctx, "**mb x=%d y=%d\n", s->mb_x, s->mb_y); + ff_tlog(avctx, "**mb x=%d y=%d\n", s->mb_x, s->mb_y); s->mv_dir = MV_DIR_FORWARD; s->mv_type = MV_TYPE_16X16; |