From 8612c771fcb7321a2d6e0ba79f6f3cf26ee7f70c Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 19 Jan 2011 18:00:22 +0200 Subject: cleanup: some random minor code simplification and cleanup --- defaultopts.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'defaultopts.c') diff --git a/defaultopts.c b/defaultopts.c index abdd5e16f3..f42b6618b1 100644 --- a/defaultopts.c +++ b/defaultopts.c @@ -60,8 +60,6 @@ void set_default_mplayer_options(struct MPOpts *opts) .use_lircc = 1, #ifdef CONFIG_APPLE_REMOTE .use_ar = 1, -#else - .use_ar = 0, #endif .default_bindings = 1, } -- cgit v1.2.3 From ebd2058d033416274f2e4b40f5ad907d86f8aad5 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 26 Jan 2011 05:50:23 +0200 Subject: subtitles: options: enable -ass by default There are still some problems with -ass. For example some other subtitle options won't work the same way or at all with it enabled, and inserting the video filter for VOs that lack native rendering support won't work with different colorspaces. However I think that the benefit from styling support outweights those disadvantages, and also that the "discoverability" of features is better this way; it will be easier for people who encounter problems to find -noass than for people who see no styling to find out that they could add it with -ass. Enable -ass by default. Also fix other outdated information in the manpage entries for -ass and -fontconfig. --- defaultopts.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'defaultopts.c') diff --git a/defaultopts.c b/defaultopts.c index f42b6618b1..8f855e47ac 100644 --- a/defaultopts.c +++ b/defaultopts.c @@ -46,6 +46,10 @@ void set_default_mplayer_options(struct MPOpts *opts) .movie_aspect = -1., .flip = -1, .vd_use_slices = 1, +#ifdef CONFIG_ASS + .ass_enabled = 1, +#endif + .lavc_param = { .workaround_bugs = 1, // autodetect .error_resilience = 2, -- cgit v1.2.3