demux_mkv: fix verbose output of chapter numbering
[mplayer/glamo.git] / options.h
blob22bbff3915c1735e1a8b455f748e34e19c511dd9
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 force_window_position;
14 float force_monitor_aspect;
15 float monitor_pixel_aspect;
16 int vidmode;
17 int fullscreen;
18 int vo_dbpp;
19 float vo_panscanrange;
21 // ranges -100 - 100, 1000 if the vo default should be used
22 int vo_gamma_gamma;
23 int vo_gamma_brightness;
24 int vo_gamma_contrast;
25 int vo_gamma_saturation;
26 int vo_gamma_hue;
28 int osd_level;
29 int osd_duration;
30 int loop_times;
31 int ordered_chapters;
32 int chapterrange[2];
33 int edition_id;
34 int correct_pts;
35 int user_correct_pts;
36 int user_pts_assoc_mode;
37 int key_fifo_size;
38 int doubleclick_time;
39 int audio_id;
40 int video_id;
41 int sub_id;
42 float playback_speed;
43 struct m_obj_settings *vf_settings;
44 int softzoom;
45 float movie_aspect;
46 float screen_size_xy;
47 int flip;
48 int vd_use_slices;
49 int ass_enabled;
50 struct lavc_param {
51 int workaround_bugs;
52 int error_resilience;
53 int error_concealment;
54 int gray;
55 int vstats;
56 int idct_algo;
57 int debug;
58 int vismv;
59 int skip_top;
60 int skip_bottom;
61 int fast;
62 char *lowres_str;
63 char *skip_loop_filter_str;
64 char *skip_idct_str;
65 char *skip_frame_str;
66 int threads;
67 int bitexact;
68 char *avopt;
69 } lavc_param;
71 struct lavfdopts {
72 unsigned int probesize;
73 unsigned int analyzeduration;
74 char *format;
75 char *cryptokey;
76 char *avopt;
77 } lavfdopts;
79 struct input_conf {
80 char *config_file;
81 unsigned int ar_delay;
82 unsigned int ar_rate;
83 char *js_dev;
84 char *ar_dev;
85 char *in_file;
86 int use_joystick;
87 int use_lirc;
88 int use_lircc;
89 int use_ar; // apple remote
90 int default_bindings;
91 } input;
92 } MPOpts;
94 #endif