summaryrefslogtreecommitdiffstats
path: root/defaultopts.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-24 03:59:21 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-25 03:31:57 +0300
commit3fa6f2d3e1814783db8cc5574136b89facd78ebc (patch)
tree87eb0bed22a238da615101b08df063dd2bc8ddf3 /defaultopts.c
parent15b34d1fd86f252bf811594bbc265a3f977e4775 (diff)
downloadmpv-3fa6f2d3e1814783db8cc5574136b89facd78ebc.tar.bz2
mpv-3fa6f2d3e1814783db8cc5574136b89facd78ebc.tar.xz
Move -lavdopts to options struct
Diffstat (limited to 'defaultopts.c')
-rw-r--r--defaultopts.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/defaultopts.c b/defaultopts.c
index 08e954db39..d55d9706d5 100644
--- a/defaultopts.c
+++ b/defaultopts.c
@@ -14,6 +14,12 @@ void set_default_mplayer_options(struct MPOpts *opts)
.video_id = -1,
.sub_id = -2,
.playback_speed = 1.,
+ .lavc_param = (struct lavc_param){
+ .workaround_bugs = 1, // autodetect
+ .error_resilience = 2,
+ .error_concealment = 3,
+ .threads = 1,
+ },
};
}