mirror of
https://github.com/mpv-player/mpv
synced 2025-02-02 05:01:56 +00:00
11 lines
173 B
C
11 lines
173 B
C
#ifndef MPLAYER_OPTIONS_H
|
|
#define MPLAYER_OPTIONS_H
|
|
|
|
typedef struct MPOpts {
|
|
char **video_driver_list;
|
|
char **audio_driver_list;
|
|
int fixed_vo;
|
|
} MPOpts;
|
|
|
|
#endif
|