diff cfg-mencoder.h @ 12363:5dac21977312

Allow user to disable writing of ODML index
author ranma
date Fri, 30 Apr 2004 21:33:53 +0000
parents ba3b91392d92
children 574b1ed2f9a3
line wrap: on
line diff
--- a/cfg-mencoder.h	Fri Apr 30 20:36:48 2004 +0000
+++ b/cfg-mencoder.h	Fri Apr 30 21:33:53 2004 +0000
@@ -161,6 +161,7 @@
 };
 
 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 @@
 	{"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},