X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Flibmpcodecs%2Fmp_msg.h;h=250bfb275234311a77694605ad23b89bb90e6e3e;hb=de42d2a347991a53a2814e52d21d65ddbacf7119;hp=7b6405b883d84d3aa29eefce270f7bd7fef39c2f;hpb=0f65d56080114c59d8c6d3aa3a5f7b7e24966fc1;p=ffmpeg diff --git a/libavfilter/libmpcodecs/mp_msg.h b/libavfilter/libmpcodecs/mp_msg.h index 7b6405b883d..250bfb27523 100644 --- a/libavfilter/libmpcodecs/mp_msg.h +++ b/libavfilter/libmpcodecs/mp_msg.h @@ -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 */