Browse code

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

Diego Biurrun authored on 2010/07/02 20:03:23
Showing 1 changed files
... ...
@@ -123,12 +123,12 @@ typedef struct {
123 123
  * @see av_vlog
124 124
  */
125 125
 #ifdef __GNUC__
126
-void av_log(void*, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
126
+void av_log(void *avcl, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
127 127
 #else
128
-void av_log(void*, int level, const char *fmt, ...);
128
+void av_log(void *avcl, int level, const char *fmt, ...);
129 129
 #endif
130 130
 
131
-void av_vlog(void*, int level, const char *fmt, va_list);
131
+void av_vlog(void *avcl, int level, const char *fmt, va_list);
132 132
 int av_log_get_level(void);
133 133
 void av_log_set_level(int);
134 134
 void av_log_set_callback(void (*)(void*, int, const char*, va_list));