mirror of https://github.com/mpv-player/mpv
test/test_utils: add mp_msg_set_max_level stub
Needed since the previous commit.
This commit is contained in:
parent
385031ae2d
commit
b08822b8ce
|
@ -105,6 +105,7 @@ const char *mp_help_text;
|
|||
void mp_msg(struct mp_log *log, int lev, const char *format, ...) {};
|
||||
int mp_msg_find_level(const char *s) {return 0;};
|
||||
int mp_msg_level(struct mp_log *log) {return 0;};
|
||||
void mp_msg_set_max_level(struct mp_log *log, int lev) {};
|
||||
void mp_write_console_ansi(void) {};
|
||||
void mp_set_avdict(AVDictionary **dict, char **kv) {};
|
||||
struct mp_log *mp_log_new(void *talloc_ctx, struct mp_log *parent,
|
||||
|
|
|
@ -51,6 +51,7 @@ void mp_msg(struct mp_log *log, int lev, const char *format, ...)
|
|||
PRINTF_ATTRIBUTE(3, 4);
|
||||
int mp_msg_find_level(const char *s);
|
||||
int mp_msg_level(struct mp_log *log);
|
||||
void mp_msg_set_max_level(struct mp_log *log, int lev);
|
||||
void mp_write_console_ansi(void);
|
||||
typedef struct AVDictionary AVDictionary;
|
||||
void mp_set_avdict(AVDictionary **dict, char **kv);
|
||||
|
|
Loading…
Reference in New Issue