2008-03-31 03:19:29 +00:00
|
|
|
#ifndef MPLAYER_OPTIONS_H
|
|
|
|
#define MPLAYER_OPTIONS_H
|
|
|
|
|
|
|
|
typedef struct MPOpts {
|
2008-04-01 14:35:10 +00:00
|
|
|
char **video_driver_list;
|
|
|
|
char **audio_driver_list;
|
2008-03-31 03:19:29 +00:00
|
|
|
int fixed_vo;
|
2008-04-19 04:45:16 +00:00
|
|
|
int vo_ontop;
|
2008-04-24 04:23:15 +00:00
|
|
|
int screen_size_x;
|
|
|
|
int screen_size_y;
|
2008-04-20 23:18:28 +00:00
|
|
|
int vo_screenwidth;
|
|
|
|
int vo_screenheight;
|
2009-03-20 13:22:15 +00:00
|
|
|
int force_window_position;
|
2008-05-01 08:14:29 +00:00
|
|
|
float force_monitor_aspect;
|
|
|
|
float monitor_pixel_aspect;
|
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-05-01 08:14:29 +00:00
|
|
|
float vo_panscanrange;
|
2008-04-25 04:12:05 +00:00
|
|
|
|
|
|
|
// ranges -100 - 100, 1000 if the vo default should be used
|
|
|
|
int vo_gamma_gamma;
|
|
|
|
int vo_gamma_brightness;
|
|
|
|
int vo_gamma_contrast;
|
|
|
|
int vo_gamma_saturation;
|
|
|
|
int vo_gamma_hue;
|
|
|
|
|
2009-03-29 23:06:58 +00:00
|
|
|
int osd_level;
|
|
|
|
int osd_duration;
|
2008-04-21 02:18:40 +00:00
|
|
|
int loop_times;
|
2009-04-07 23:37:27 +00:00
|
|
|
int ordered_chapters;
|
2010-04-24 17:09:31 +00:00
|
|
|
int chapterrange[2];
|
2009-12-01 12:28:34 +00:00
|
|
|
int edition_id;
|
2008-04-25 10:30:44 +00:00
|
|
|
int correct_pts;
|
2008-04-16 04:11:12 +00:00
|
|
|
int user_correct_pts;
|
2009-11-21 18:53:10 +00:00
|
|
|
int user_pts_assoc_mode;
|
2008-04-29 12:44:03 +00:00
|
|
|
int key_fifo_size;
|
|
|
|
int doubleclick_time;
|
2008-04-23 04:01:31 +00:00
|
|
|
int audio_id;
|
|
|
|
int video_id;
|
2008-04-23 04:41:17 +00:00
|
|
|
int sub_id;
|
2008-04-21 03:55:23 +00:00
|
|
|
float playback_speed;
|
2008-04-25 10:58:12 +00:00
|
|
|
struct m_obj_settings *vf_settings;
|
2008-04-24 04:14:05 +00:00
|
|
|
int softzoom;
|
2008-04-24 04:36:43 +00:00
|
|
|
float movie_aspect;
|
2008-04-24 04:28:20 +00:00
|
|
|
float screen_size_xy;
|
2008-04-24 04:14:05 +00:00
|
|
|
int flip;
|
2008-04-24 05:20:59 +00:00
|
|
|
int vd_use_slices;
|
2009-12-02 15:36:59 +00:00
|
|
|
int ass_enabled;
|
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;
|
2008-05-15 18:19:35 +00:00
|
|
|
char *avopt;
|
2008-04-24 00:59:21 +00:00
|
|
|
} lavc_param;
|
2010-04-23 19:08:18 +00:00
|
|
|
|
|
|
|
struct lavfdopts {
|
|
|
|
unsigned int probesize;
|
|
|
|
unsigned int analyzeduration;
|
|
|
|
char *format;
|
|
|
|
char *cryptokey;
|
|
|
|
char *avopt;
|
|
|
|
} lavfdopts;
|
|
|
|
|
2008-04-30 15:57:02 +00:00
|
|
|
struct input_conf {
|
|
|
|
char *config_file;
|
|
|
|
unsigned int ar_delay;
|
|
|
|
unsigned int ar_rate;
|
|
|
|
char *js_dev;
|
2008-06-04 05:10:48 +00:00
|
|
|
char *ar_dev;
|
2008-04-30 15:57:02 +00:00
|
|
|
char *in_file;
|
|
|
|
int use_joystick;
|
|
|
|
int use_lirc;
|
|
|
|
int use_lircc;
|
|
|
|
int use_ar; // apple remote
|
2009-03-31 23:26:34 +00:00
|
|
|
int default_bindings;
|
2008-04-30 15:57:02 +00:00
|
|
|
} input;
|
2008-03-31 03:19:29 +00:00
|
|
|
} MPOpts;
|
|
|
|
|
|
|
|
#endif
|