summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-02 12:48:55 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-02 12:48:55 +0000
commit3efbc894b064d36cd71875e00c906c3db089cd57 (patch)
tree492c44c43293ddc82a95dca2c6e5a754399dcc55 /cfg-common.h
parent0d2099109393238bee9aede156657197fc4b062c (diff)
downloadmpv-3efbc894b064d36cd71875e00c906c3db089cd57.tar.bz2
mpv-3efbc894b064d36cd71875e00c906c3db089cd57.tar.xz
workaround bugs & error resilience ffmpeg decoder options
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6266 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 6d6148323b..5a28a65c45 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -125,6 +125,9 @@
{"flip", &flip, CONF_TYPE_FLAG, 0, -1, 1, NULL},
{"noflip", &flip, CONF_TYPE_FLAG, 0, -1, 0, NULL},
+#ifdef USE_LIBAVCODEC
+ {"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
+#endif
// ------------------------- subtitles options --------------------
#ifdef USE_SUB
@@ -236,4 +239,8 @@ struct config mfopts_conf[]={
extern char** vo_plugin_args;
+#ifdef USE_LIBAVCODEC
+extern struct config lavc_decode_opts_conf[];
+#endif
+
#endif