summaryrefslogtreecommitdiff
path: root/libavutil/log.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 11:03:23 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-02 11:03:23 +0000
commiteee9119ad174dfc56a86fd54493a0636cef29d8d (patch)
tree9671bffa1880c85ae47877f1836703885e8de8d1 /libavutil/log.h
parent33edd31f5f896c767810b35feb8e50bf4c5d1482 (diff)
Add parameter names to av_log/av_vlog function declarations.
Doxygen gets confused without an explicit parameter name. Originally committed as revision 23972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.h')
-rw-r--r--libavutil/log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/log.h b/libavutil/log.h
index bcd1b1e25a..831c26eae6 100644
--- a/libavutil/log.h
+++ b/libavutil/log.h
@@ -123,12 +123,12 @@ typedef struct {
* @see av_vlog
*/
#ifdef __GNUC__
-void av_log(void*, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
+void av_log(void *avcl, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
#else
-void av_log(void*, int level, const char *fmt, ...);
+void av_log(void *avcl, int level, const char *fmt, ...);
#endif
-void av_vlog(void*, int level, const char *fmt, va_list);
+void av_vlog(void *avcl, int level, const char *fmt, va_list);
int av_log_get_level(void);
void av_log_set_level(int);
void av_log_set_callback(void (*)(void*, int, const char*, va_list));