Mercurial > libavcodec.hg
changeset 3551:b0953f642148 libavcodec
printf -> av_log, only occurs in DEBUG cases
author | melanson |
---|---|
date | Fri, 04 Aug 2006 22:51:20 +0000 |
parents | 4f4c13574ad5 |
children | 4a0f82c8dc43 |
files | h263dec.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/h263dec.c Fri Aug 04 19:11:12 2006 +0000 +++ b/h263dec.c Fri Aug 04 22:51:20 2006 +0000 @@ -426,8 +426,8 @@ uint64_t time= rdtsc(); #endif #ifdef DEBUG - printf("*****frame %d size=%d\n", avctx->frame_number, buf_size); - printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); + av_log(avctx, AV_LOG_DEBUG, "*****frame %d size=%d\n", avctx->frame_number, buf_size); + av_log(avctx, AV_LOG_DEBUG, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); #endif s->flags= avctx->flags; s->flags2= avctx->flags2;