mirror of https://github.com/mpv-player/mpv
defaultopts.c: Minor simplification
This happens to avoid a compiler bug in the current GCC development branch.
This commit is contained in:
parent
0e8c38c19b
commit
d9066294f9
|
@ -31,13 +31,13 @@ void set_default_mplayer_options(struct MPOpts *opts)
|
||||||
.movie_aspect = -1.,
|
.movie_aspect = -1.,
|
||||||
.flip = -1,
|
.flip = -1,
|
||||||
.vd_use_slices = 1,
|
.vd_use_slices = 1,
|
||||||
.lavc_param = (struct lavc_param){
|
.lavc_param = {
|
||||||
.workaround_bugs = 1, // autodetect
|
.workaround_bugs = 1, // autodetect
|
||||||
.error_resilience = 2,
|
.error_resilience = 2,
|
||||||
.error_concealment = 3,
|
.error_concealment = 3,
|
||||||
.threads = 1,
|
.threads = 1,
|
||||||
},
|
},
|
||||||
.input = (struct input_conf){
|
.input = {
|
||||||
.config_file = "input.conf",
|
.config_file = "input.conf",
|
||||||
.ar_delay = 100,
|
.ar_delay = 100,
|
||||||
.ar_rate = 8,
|
.ar_rate = 8,
|
||||||
|
|
Loading…
Reference in New Issue