2008-04-01 14:35:10 +00:00
|
|
|
#include <stddef.h>
|
2008-06-04 05:10:48 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
2008-03-31 03:19:29 +00:00
|
|
|
#include "defaultopts.h"
|
|
|
|
#include "options.h"
|
|
|
|
|
|
|
|
void set_default_mplayer_options(struct MPOpts *opts)
|
|
|
|
{
|
|
|
|
*opts = (const struct MPOpts){
|
2008-04-01 14:35:10 +00:00
|
|
|
.audio_driver_list = NULL,
|
|
|
|
.video_driver_list = NULL,
|
2009-03-30 02:06:17 +00:00
|
|
|
.fixed_vo = 1,
|
2008-05-01 08:14:29 +00:00
|
|
|
.monitor_pixel_aspect = 1.0,
|
|
|
|
.vo_panscanrange = 1.0,
|
2008-04-25 04:12:05 +00:00
|
|
|
.vo_gamma_gamma = 1000,
|
|
|
|
.vo_gamma_brightness = 1000,
|
|
|
|
.vo_gamma_contrast = 1000,
|
|
|
|
.vo_gamma_saturation = 1000,
|
|
|
|
.vo_gamma_hue = 1000,
|
2009-03-29 23:06:58 +00:00
|
|
|
.osd_level = 1,
|
|
|
|
.osd_duration = 1000,
|
2008-04-21 02:18:40 +00:00
|
|
|
.loop_times = -1,
|
2009-04-07 23:37:27 +00:00
|
|
|
.ordered_chapters = 1,
|
2008-04-16 04:11:12 +00:00
|
|
|
.user_correct_pts = -1,
|
2008-04-29 12:44:03 +00:00
|
|
|
.key_fifo_size = 7,
|
|
|
|
.doubleclick_time = 300,
|
2008-04-23 04:01:31 +00:00
|
|
|
.audio_id = -1,
|
|
|
|
.video_id = -1,
|
2008-04-23 04:41:17 +00:00
|
|
|
.sub_id = -2,
|
2008-04-21 03:55:23 +00:00
|
|
|
.playback_speed = 1.,
|
2008-04-24 04:36:43 +00:00
|
|
|
.movie_aspect = -1.,
|
2008-04-24 04:14:05 +00:00
|
|
|
.flip = -1,
|
2008-04-24 05:20:59 +00:00
|
|
|
.vd_use_slices = 1,
|
2009-04-09 01:18:39 +00:00
|
|
|
.lavc_param = {
|
2008-04-24 00:59:21 +00:00
|
|
|
.workaround_bugs = 1, // autodetect
|
|
|
|
.error_resilience = 2,
|
|
|
|
.error_concealment = 3,
|
|
|
|
.threads = 1,
|
|
|
|
},
|
2009-04-09 01:18:39 +00:00
|
|
|
.input = {
|
2008-04-30 15:57:02 +00:00
|
|
|
.config_file = "input.conf",
|
|
|
|
.ar_delay = 100,
|
|
|
|
.ar_rate = 8,
|
|
|
|
.use_joystick = 1,
|
|
|
|
.use_lirc = 1,
|
|
|
|
.use_lircc = 1,
|
2009-02-16 21:16:11 +00:00
|
|
|
#ifdef CONFIG_APPLE_REMOTE
|
2008-04-30 15:57:02 +00:00
|
|
|
.use_ar = 1,
|
2008-06-04 05:10:48 +00:00
|
|
|
#else
|
|
|
|
.use_ar = 0,
|
|
|
|
#endif
|
2009-03-31 23:26:34 +00:00
|
|
|
.default_bindings = 1,
|
2008-04-30 15:57:02 +00:00
|
|
|
}
|
2008-03-31 03:19:29 +00:00
|
|
|
};
|
|
|
|
}
|
2008-04-16 04:11:12 +00:00
|
|
|
|
|
|
|
void set_default_mencoder_options(struct MPOpts *opts)
|
|
|
|
{
|
|
|
|
set_default_mplayer_options(opts);
|
|
|
|
opts->user_correct_pts = 0;
|
|
|
|
}
|