Originally committed as revision 23972 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -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)); |