summaryrefslogtreecommitdiffstats
path: root/defaultopts.c
blob: b5917c53a7bf658b7e9d49dc8f2f1e6d5fed3b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <stddef.h>

#include "config.h"
#include "defaultopts.h"
#include "options.h"

void set_default_mplayer_options(struct MPOpts *opts)
{
    *opts = (const struct MPOpts){
        .audio_driver_list = NULL,
        .video_driver_list = NULL,
        .fixed_vo = 1,
        .monitor_pixel_aspect = 1.0,
        .vo_panscanrange = 1.0,
        .vo_gamma_gamma = 1000,
        .vo_gamma_brightness = 1000,
        .vo_gamma_contrast = 1000,
        .vo_gamma_saturation = 1000,
        .vo_gamma_hue = 1000,
        .osd_level = 1,
        .osd_duration = 1000,
        .loop_times = -1,
        .ordered_chapters = 1,
        .edition_id = -1,
        .user_correct_pts = -1,
        .key_fifo_size = 7,
        .doubleclick_time = 300,
        .audio_id = -1,
        .video_id = -1,
        .sub_id = -1,
        .playback_speed = 1.,
        .movie_aspect = -1.,
        .flip = -1,
        .vd_use_slices = 1,
        .lavc_param = {
            .workaround_bugs = 1, // autodetect
            .error_resilience = 2,
            .error_concealment = 3,
            .threads = 1,
        },
        .input = {
             .config_file = "input.conf",
             .ar_delay = 100,
             .ar_rate = 8,
             .use_joystick = 1,
             .use_lirc = 1,
             .use_lircc = 1,
#ifdef CONFIG_APPLE_REMOTE
             .use_ar = 1,
#else
             .use_ar = 0,
#endif
             .default_bindings = 1,
         }
    };
}

void set_default_mencoder_options(struct MPOpts *opts)
{
    set_default_mplayer_options(opts);
    opts->user_correct_pts = 0;
}