Mercurial > libavformat.hg
diff nutenc.c @ 2344:a7fd892b1a57 libavformat
get rid of printf
| author | michael |
|---|---|
| date | Thu, 09 Aug 2007 21:04:10 +0000 |
| parents | c6a7a89a0cef |
| children | b73b443c43d0 |
line wrap: on
line diff
--- a/nutenc.c Thu Aug 09 21:01:22 2007 +0000 +++ b/nutenc.c Thu Aug 09 21:04:10 2007 +0000 @@ -176,13 +176,13 @@ #ifdef TRACE static inline void put_v_trace(ByteIOContext *bc, uint64_t v, char *file, char *func, int line){ - printf("get_v %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); + av_log(NULL, AV_LOG_DEBUG, "put_v %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); put_v(bc, v); } static inline void put_s_trace(ByteIOContext *bc, int64_t v, char *file, char *func, int line){ - printf("get_s %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); + av_log(NULL, AV_LOG_DEBUG, "put_s %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); put_s(bc, v); }
