summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authorcorey <corey@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-02-20 09:36:10 +0000
committercorey <corey@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-02-20 09:36:10 +0000
commit6f446f41b599af7b4630d6e3ca0bc7285d7c8a62 (patch)
tree06724f51ed9368c59f78b092579b3afc755e9b2a /cfg-common.h
parent362b6d13dd77b1f8d61e5436b96fa0ea51eb27ca (diff)
downloadmpv-6f446f41b599af7b4630d6e3ca0bc7285d7c8a62.tar.bz2
mpv-6f446f41b599af7b4630d6e3ca0bc7285d7c8a62.tar.xz
New option: -ignore-start
Makes mplayer and mencoder ignore dwStart in AVI files. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17655 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 599b5aabb5..ad78a98ba8 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -150,6 +150,10 @@
// set a-v distance
{"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -100.0, 100.0, NULL},
+ // ignore header-specified delay (dwStart)
+ {"ignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"noignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 1, 0, NULL},
+
#ifdef USE_LIBA52
{"a52drc", &a52_drc_level, CONF_TYPE_FLOAT, CONF_RANGE, 0, 1, NULL},
#endif