mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
d057e7a142
We don't support this anymore. This tries to exit in a controlled way after command line options are applied in order to honor logging options and, in case of libmpv, not to kill the host. Not sure if it would be better to just vomit text to stderr and call abort().
12 lines
248 B
C
12 lines
248 B
C
#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);
|
|
bool print_libav_versions(struct mp_log *log, int v);
|
|
#endif
|