]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/log.c
Fix swscale-error vs. swscale_error typo; it is marked as the former in .PHONY.
[ffmpeg] / libavutil / log.c
index aadcf90de44d55727646c2ff69c96375999fd0e1..65328bb25f6417d37b23b32fbeef3f98eba9f1e0 100644 (file)
  */
 
 /**
- * @file log.c
- * log.
+ * @file libavutil/log.c
+ * logging functions
  */
 
 #include "avutil.h"
+#include "log.h"
 
 int av_log_level = AV_LOG_INFO;
 
@@ -36,9 +37,8 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
         return;
 #undef fprintf
     if(print_prefix && avc) {
-            fprintf(stderr, "[%s @ %p]", avc->item_name(ptr), ptr);
+        fprintf(stderr, "[%s @ %p]", avc->item_name(ptr), ptr);
     }
-#define fprintf please_use_av_log
 
     print_prefix= strstr(fmt, "\n") != NULL;