4 #include "defaultopts.h"
7 void set_default_mplayer_options(struct MPOpts
*opts
)
9 *opts
= (const struct MPOpts
){
10 .audio_driver_list
= NULL
,
11 .video_driver_list
= NULL
,
13 .monitor_pixel_aspect
= 1.0,
14 .vo_panscanrange
= 1.0,
15 .vo_gamma_gamma
= 1000,
16 .vo_gamma_brightness
= 1000,
17 .vo_gamma_contrast
= 1000,
18 .vo_gamma_saturation
= 1000,
23 .ordered_chapters
= 1,
24 .chapterrange
= {-1, -1},
26 .user_correct_pts
= -1,
28 .doubleclick_time
= 300,
38 .workaround_bugs
= 1, // autodetect
39 .error_resilience
= 2,
40 .error_concealment
= 3,
44 .config_file
= "input.conf",
50 #ifdef CONFIG_APPLE_REMOTE
55 .default_bindings
= 1,
60 void set_default_mencoder_options(struct MPOpts
*opts
)
62 set_default_mplayer_options(opts
);
63 opts
->user_correct_pts
= 0;