summaryrefslogtreecommitdiffstats
path: root/cfg-mencoder.h
diff options
context:
space:
mode:
authorranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-30 21:33:53 +0000
committerranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-30 21:33:53 +0000
commitfeaead439363146b868b2df2981a6e9b8fbcfcc4 (patch)
tree80779d74b54b722a75104e0f5ee88a50ec246dfa /cfg-mencoder.h
parent4058e90588896d7ac1620fe7afc427e30b40463b (diff)
downloadmpv-feaead439363146b868b2df2981a6e9b8fbcfcc4.tar.bz2
mpv-feaead439363146b868b2df2981a6e9b8fbcfcc4.tar.xz
Allow user to disable writing of ODML index
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12364 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mencoder.h')
-rw-r--r--cfg-mencoder.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index b6209e8237..0e8f8a3ceb 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -161,6 +161,7 @@ m_option_t of_conf[]={
};
extern float avi_aspect_override; /* defined in libmpdemux/muxer_avi.c */
+extern int write_odml; /* defined in libmpdemux/muxer_avi.c */
m_option_t mencoder_opts[]={
/* name, pointer, type, flags, min, max */
@@ -210,6 +211,9 @@ m_option_t mencoder_opts[]={
{"encodedups", &encode_duplicates, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"noencodedups", &encode_duplicates, CONF_TYPE_FLAG, 0, 1, 0, NULL},
+ {"odml", &write_odml, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"noodml", &write_odml, CONF_TYPE_FLAG, 0, 1, 0, NULL},
+
// info header strings
{"info", info_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},