Revision 07c37ca7
libavutil/log.h | ||
---|---|---|
101 | 101 |
* @see av_vlog |
102 | 102 |
*/ |
103 | 103 |
#ifdef __GNUC__ |
104 |
extern void av_log(void*, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
|
|
104 |
void av_log(void*, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4))); |
|
105 | 105 |
#else |
106 |
extern void av_log(void*, int level, const char *fmt, ...);
|
|
106 |
void av_log(void*, int level, const char *fmt, ...); |
|
107 | 107 |
#endif |
108 | 108 |
|
109 |
extern void av_vlog(void*, int level, const char *fmt, va_list);
|
|
110 |
extern int av_log_get_level(void);
|
|
111 |
extern void av_log_set_level(int);
|
|
112 |
extern void av_log_set_callback(void (*)(void*, int, const char*, va_list));
|
|
113 |
extern void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl);
|
|
109 |
void av_vlog(void*, int level, const char *fmt, va_list); |
|
110 |
int av_log_get_level(void); |
|
111 |
void av_log_set_level(int); |
|
112 |
void av_log_set_callback(void (*)(void*, int, const char*, va_list)); |
|
113 |
void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl); |
|
114 | 114 |
|
115 | 115 |
#endif /* FFMPEG_LOG_H */ |
Also available in: Unified diff