defaultopts.c: Minor simplification

This happens to avoid a compiler bug in the current GCC development
branch.
This commit is contained in:
Uoti Urpala 2009-04-09 04:18:39 +03:00
parent 0e8c38c19b
commit d9066294f9
1 changed files with 2 additions and 2 deletions

View File

@ -31,13 +31,13 @@ void set_default_mplayer_options(struct MPOpts *opts)
.movie_aspect = -1.,
.flip = -1,
.vd_use_slices = 1,
.lavc_param = (struct lavc_param){
.lavc_param = {
.workaround_bugs = 1, // autodetect
.error_resilience = 2,
.error_concealment = 3,
.threads = 1,
},
.input = (struct input_conf){
.input = {
.config_file = "input.conf",
.ar_delay = 100,
.ar_rate = 8,