summaryrefslogtreecommitdiffstats
path: root/video/csputils.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-07-10 18:04:34 +0200
committerwm4 <wm4@nowhere>2015-07-10 18:04:34 +0200
commit59b64ceb7934b8c70c662a939364c41a3b0ad1fe (patch)
tree60a23c521d3396f79f8b82a23d6e1f4c67db5187 /video/csputils.c
parent140273cdec83fe6d67e78a3a8d04003ba835376b (diff)
downloadmpv-59b64ceb7934b8c70c662a939364c41a3b0ad1fe.tar.bz2
mpv-59b64ceb7934b8c70c662a939364c41a3b0ad1fe.tar.xz
video: add a way to disable automatic stereo conversion
Fixes #2111.
Diffstat (limited to 'video/csputils.c')
-rw-r--r--video/csputils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/csputils.c b/video/csputils.c
index 238c4daf4e..ede6cd136f 100644
--- a/video/csputils.c
+++ b/video/csputils.c
@@ -104,6 +104,7 @@ const struct m_opt_choice_alternatives mp_chroma_names[] = {
// The numeric index matches the Matroska StereoMode value. If you add entries
// that don't match Matroska, make sure demux_mkv.c rejects them properly.
const struct m_opt_choice_alternatives mp_stereo3d_names[] = {
+ {"no", -1}, // disable/invalid
{"mono", 0},
{"sbs2l", 1}, // "side_by_side_left"
{"ab2r", 2}, // "top_bottom_right"