comparison log.h @ 494:4b4a3fb11c25 libavutil

remove useless extern keyword. patch by Stefano Sabatini: stefano sabatini-lala poste it
author benoit
date Fri, 11 Apr 2008 14:18:33 +0000
parents 0ce74d34d02e
children 67ea650d4590
comparison
equal deleted inserted replaced
493:97dd9756349c 494:4b4a3fb11c25
99 * @param fmt The format string (printf-compatible) that specifies how 99 * @param fmt The format string (printf-compatible) that specifies how
100 * subsequent arguments are converted to output. 100 * subsequent arguments are converted to output.
101 * @see av_vlog 101 * @see av_vlog
102 */ 102 */
103 #ifdef __GNUC__ 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 #else 105 #else
106 extern void av_log(void*, int level, const char *fmt, ...); 106 void av_log(void*, int level, const char *fmt, ...);
107 #endif 107 #endif
108 108
109 extern void av_vlog(void*, int level, const char *fmt, va_list); 109 void av_vlog(void*, int level, const char *fmt, va_list);
110 extern int av_log_get_level(void); 110 int av_log_get_level(void);
111 extern void av_log_set_level(int); 111 void av_log_set_level(int);
112 extern void av_log_set_callback(void (*)(void*, int, const char*, va_list)); 112 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); 113 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl);
114 114
115 #endif /* FFMPEG_LOG_H */ 115 #endif /* FFMPEG_LOG_H */