mpv/options.h

47 lines
977 B
C
Raw Normal View History

#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 screen_size_x;
int screen_size_y;
int vo_screenwidth;
int vo_screenheight;
2008-04-24 04:01:53 +00:00
int vidmode;
2008-04-24 03:58:16 +00:00
int fullscreen;
2008-04-20 21:37:12 +00:00
int vo_dbpp;
2008-04-16 04:11:12 +00:00
int correct_pts;
2008-04-21 02:18:40 +00:00
int loop_times;
2008-04-16 04:11:12 +00:00
int user_correct_pts;
int audio_id;
int video_id;
int sub_id;
2008-04-21 03:55:23 +00:00
float playback_speed;
int softzoom;
int flip;
2008-04-24 00:59:21 +00:00
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