summaryrefslogtreecommitdiff
path: root/vhook/null.c
diff options
context:
space:
mode:
authorJonY <10walls@gmail.com>2008-09-04 20:45:13 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-09-04 20:45:13 +0000
commitf2eb8c5bf63f5efdcb5d57b2b0e85530ffc52843 (patch)
tree4540af722ec13ff0c48fa4deaa0b086a3ff4c245 /vhook/null.c
parent991945d0e4a0a8191342de4c168e594281f5ac12 (diff)
Properly use av_log rather than fprintf/printf.
Fix the "implicit declaration of function 'please_use_av_log'" warnings. Patch by JonY <10walls _AT_ gmail #dot# com> Originally committed as revision 15200 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/null.c')
-rw-r--r--vhook/null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/null.c b/vhook/null.c
index 6f310371c0..1f957fbf5e 100644
--- a/vhook/null.c
+++ b/vhook/null.c
@@ -50,7 +50,7 @@ void Release(void *ctx)
int Configure(void **ctxp, int argc, char *argv[])
{
- fprintf(stderr, "Called with argc=%d\n", argc);
+ av_log(NULL, AV_LOG_DEBUG, "Called with argc=%d\n", argc);
*ctxp = av_mallocz(sizeof(ContextInfo));
return 0;