]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/libmpcodecs/mp_msg.h
lavfi/mp: add ff_ prefix to exported symbols
[ffmpeg] / libavfilter / libmpcodecs / mp_msg.h
index 7b6405b883d84d3aa29eefce270f7bd7fef39c2f..250bfb275234311a77694605ad23b89bb90e6e3e 100644 (file)
@@ -129,36 +129,36 @@ extern int verbose;
 #define MSGT_MAX 64
 
 
-extern char *mp_msg_charset;
-extern int mp_msg_color;
-extern int mp_msg_module;
+extern char *ff_mp_msg_charset;
+extern int ff_mp_msg_color;
+extern int ff_mp_msg_module;
 
-extern int mp_msg_levels[MSGT_MAX];
-extern int mp_msg_level_all;
+extern int ff_mp_msg_levels[MSGT_MAX];
+extern int ff_mp_msg_level_all;
 
 
-void mp_msg_init(void);
-int mp_msg_test(int mod, int lev);
+void ff_mp_msg_init(void);
+int ff_mp_msg_test(int mod, int lev);
 
 #include "config.h"
 
-void mp_msg_va(int mod, int lev, const char *format, va_list va);
+void ff_mp_msg_va(int mod, int lev, const char *format, va_list va);
 #ifdef __GNUC__
-void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
+void ff_mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
 #   ifdef MP_DEBUG
-#      define mp_dbg(mod,lev, args... ) mp_msg(mod, lev, ## args )
+#      define mp_dbg(mod,lev, args... ) ff_mp_msg(mod, lev, ## args )
 #   else
 #      define mp_dbg(mod,lev, args... ) /* only useful for developers */
 #   endif
 #else // not GNU C
-void mp_msg(int mod, int lev, const char *format, ... );
+void ff_mp_msg(int mod, int lev, const char *format, ... );
 #   ifdef MP_DEBUG
-#      define mp_dbg(mod,lev, ... ) mp_msg(mod, lev, __VA_ARGS__)
+#      define mp_dbg(mod,lev, ... ) ff_mp_msg(mod, lev, __VA_ARGS__)
 #   else
 #      define mp_dbg(mod,lev, ... ) /* only useful for developers */
 #   endif
 #endif /* __GNUC__ */
 
-const char* filename_recode(const char* filename);
+const char* ff_filename_recode(const char* filename);
 
 #endif /* MPLAYER_MP_MSG_H */