mirror of https://github.com/mpv-player/mpv
42 lines
882 B
C
42 lines
882 B
C
#ifndef MPLAYER_OPTIONS_H
|
|
#define MPLAYER_OPTIONS_H
|
|
|
|
typedef struct MPOpts {
|
|
char **video_driver_list;
|
|
char **audio_driver_list;
|
|
int fixed_vo;
|
|
int vo_ontop;
|
|
int vo_screenwidth;
|
|
int vo_screenheight;
|
|
int fullscreen;
|
|
int vo_dbpp;
|
|
int correct_pts;
|
|
int loop_times;
|
|
int user_correct_pts;
|
|
int audio_id;
|
|
int video_id;
|
|
int sub_id;
|
|
float playback_speed;
|
|
struct lavc_param {
|
|
int workaround_bugs;
|
|
int error_resilience;
|
|
int error_concealment;
|
|
int gray;
|
|
int vstats;
|
|
int idct_algo;
|
|
int debug;
|
|
int vismv;
|
|
int skip_top;
|
|
int skip_bottom;
|
|
int fast;
|
|
char *lowres_str;
|
|
char *skip_loop_filter_str;
|
|
char *skip_idct_str;
|
|
char *skip_frame_str;
|
|
int threads;
|
|
int bitexact;
|
|
} lavc_param;
|
|
} MPOpts;
|
|
|
|
#endif
|