Disable automatic playlist parsing properly
[mplayer.git] / options.h
blob3665383a469c7651ebbb39b77d629e705b827a36
1 #ifndef MPLAYER_OPTIONS_H
2 #define MPLAYER_OPTIONS_H
4 typedef struct MPOpts {
5 char **video_driver_list;
6 char **audio_driver_list;
7 int fixed_vo;
8 int vo_ontop;
9 int screen_size_x;
10 int screen_size_y;
11 int vo_screenwidth;
12 int vo_screenheight;
13 int vidmode;
14 int fullscreen;
15 int vo_dbpp;
17 // ranges -100 - 100, 1000 if the vo default should be used
18 int vo_gamma_gamma;
19 int vo_gamma_brightness;
20 int vo_gamma_contrast;
21 int vo_gamma_saturation;
22 int vo_gamma_hue;
24 int loop_times;
25 int correct_pts;
26 int user_correct_pts;
27 int audio_id;
28 int video_id;
29 int sub_id;
30 float playback_speed;
31 struct m_obj_settings *vf_settings;
32 int softzoom;
33 float movie_aspect;
34 float screen_size_xy;
35 int flip;
36 int vd_use_slices;
37 struct lavc_param {
38 int workaround_bugs;
39 int error_resilience;
40 int error_concealment;
41 int gray;
42 int vstats;
43 int idct_algo;
44 int debug;
45 int vismv;
46 int skip_top;
47 int skip_bottom;
48 int fast;
49 char *lowres_str;
50 char *skip_loop_filter_str;
51 char *skip_idct_str;
52 char *skip_frame_str;
53 int threads;
54 int bitexact;
55 } lavc_param;
56 } MPOpts;
58 #endif