summaryrefslogtreecommitdiffstats
path: root/cfg-mencoder.h
diff options
context:
space:
mode:
authorranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-03-24 15:16:36 +0000
committerranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-03-24 15:16:36 +0000
commit7068c1b8867834b9917dfd171d599340ff3e38b8 (patch)
treef12f7bfae637be33c0808e0fc22122faecab22f5 /cfg-mencoder.h
parent2a3030f5f4f4160f989dcc7d85dc4e33d90ab542 (diff)
downloadmpv-7068c1b8867834b9917dfd171d599340ff3e38b8.tar.bz2
mpv-7068c1b8867834b9917dfd171d599340ff3e38b8.tar.xz
Use aspect from encoder for AVI vprp header
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12062 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mencoder.h')
-rw-r--r--cfg-mencoder.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index ebc58435a1..a2f6ce2f0f 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -160,6 +160,8 @@ m_option_t of_conf[]={
{NULL, NULL, 0, 0, 0, 0, NULL}
};
+extern float avi_aspect_override; /* defined in libmpdemux/muxer_avi.c */
+
m_option_t mencoder_opts[]={
/* name, pointer, type, flags, min, max */
@@ -192,6 +194,9 @@ m_option_t mencoder_opts[]={
// override FOURCC in output file
{"ffourcc", &force_fourcc, CONF_TYPE_STRING, 0, 4, 4, NULL},
+ // override avi aspect autodetection
+ {"force-avi-aspect", &avi_aspect_override, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL},
+
{"pass", "The -pass option is obsolete. Use -lavcopts vpass=n or -divx4opts pass=n!\nRTFM!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{"passlogfile", &passtmpfile, CONF_TYPE_STRING, 0, 0, 0, NULL},