blob: ae12838c352c282be945eee069c20b41f00cab4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MP_AV_LOG_H
#define MP_AV_LOG_H
#include <stdbool.h>
struct mpv_global;
struct mp_log;
void init_libav(struct mpv_global *global);
void uninit_libav(struct mpv_global *global);
void check_library_versions(struct mp_log *log, int v);
#endif
|