summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-30 22:25:40 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-30 22:25:40 +0000
commit735e934c58ddd831c5e94feac52ba87e7541cfc8 (patch)
tree8edc075a99c39258a87573d7854760466f3fe1f0 /cfg-common.h
parenteae1896f51ebd0617528e8d3fdd737e38298c777 (diff)
downloadmpv-735e934c58ddd831c5e94feac52ba87e7541cfc8.tar.bz2
mpv-735e934c58ddd831c5e94feac52ba87e7541cfc8.tar.xz
added lavfdopts to pass options to libavformat
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19604 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 ad69e5cb1d..bab29b4fda 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -239,6 +239,9 @@
#ifdef USE_LIBAVCODEC
{"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
#endif
+#if defined(USE_LIBAVFORMAT) || defined(USE_LIBAVFORMAT_SO)
+ {"lavfdopts", lavfdopts_conf, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL},
+#endif
#if defined(HAVE_XVID3) || defined(HAVE_XVID4)
{"xvidopts", xvid_dec_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
#endif
@@ -471,6 +474,10 @@ m_option_t pvropts_conf[]={
extern m_config_t dvbin_opts_conf[];
#endif
+#if defined(USE_LIBAVFORMAT) || defined(USE_LIBAVFORMAT_SO)
+extern m_option_t lavfdopts_conf[];
+#endif
+
#ifdef USE_FRIBIDI
extern char *fribidi_charset;
extern int flip_hebrew;