options: move -name and -title to option struct
[mplayer/greg.git] / defaultopts.c
blob225b06746ee63e7ae8650592dec9993bd5f9355b
1 #include <stddef.h>
3 #include "config.h"
4 #include "defaultopts.h"
5 #include "options.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,
12 .fixed_vo = 1,
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,
19 .vo_gamma_hue = 1000,
20 .osd_level = 1,
21 .osd_duration = 1000,
22 .stream_dump_name = "stream.dump",
23 .loop_times = -1,
24 .ordered_chapters = 1,
25 .chapterrange = {-1, -1},
26 .edition_id = -1,
27 .user_correct_pts = -1,
28 .key_fifo_size = 7,
29 .doubleclick_time = 300,
30 .audio_id = -1,
31 .video_id = -1,
32 .sub_id = -1,
33 .audio_output_channels = 2,
34 .audio_output_format = -1, // AF_FORMAT_UNKNOWN
35 .playback_speed = 1.,
36 .drc_level = 1.,
37 .movie_aspect = -1.,
38 .flip = -1,
39 .vd_use_slices = 1,
40 .lavc_param = {
41 .workaround_bugs = 1, // autodetect
42 .error_resilience = 2,
43 .error_concealment = 3,
44 .threads = 1,
46 .input = {
47 .config_file = "input.conf",
48 .ar_delay = 100,
49 .ar_rate = 8,
50 .use_joystick = 1,
51 .use_lirc = 1,
52 .use_lircc = 1,
53 #ifdef CONFIG_APPLE_REMOTE
54 .use_ar = 1,
55 #else
56 .use_ar = 0,
57 #endif
58 .default_bindings = 1,
63 void set_default_mencoder_options(struct MPOpts *opts)
65 set_default_mplayer_options(opts);
66 opts->user_correct_pts = 0;