summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-04-21 13:31:00 +0200
committerJan Ekström <jeebjp@gmail.com>2018-04-29 02:21:32 +0300
commitc6b92884658f37f7ea9b55a595ddd252c57202c0 (patch)
treee72b3a2a2798f4d027ea00ab6e5c677c370c2231 /player
parentc767451796704ba1d3cd497cd0f1b983edf041dd (diff)
downloadmpv-c6b92884658f37f7ea9b55a595ddd252c57202c0.tar.bz2
mpv-c6b92884658f37f7ea9b55a595ddd252c57202c0.tar.xz
video: remove internal stereo_out flag
Also rename stereo3d to stereo_in. The only real change is that the vo_gpu OSD code now uses the actual stereo 3D mode, instead of the --video-steroe-mode value. (Why does this vo_gpu code even exist?)
Diffstat (limited to 'player')
-rw-r--r--player/command.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/player/command.c b/player/command.c
index 7a144e597b..64990e6532 100644
--- a/player/command.c
+++ b/player/command.c
@@ -2627,9 +2627,7 @@ static int property_imgparams(struct mp_image_params p, int action, void *arg)
{"chroma-location",
SUB_PROP_STR(m_opt_choice_str(mp_chroma_names, p.chroma_location))},
{"stereo-in",
- SUB_PROP_STR(m_opt_choice_str(mp_stereo3d_names, p.stereo_in))},
- {"stereo-out",
- SUB_PROP_STR(m_opt_choice_str(mp_stereo3d_names, p.stereo_out))},
+ SUB_PROP_STR(m_opt_choice_str(mp_stereo3d_names, p.stereo3d))},
{"rotate", SUB_PROP_INT(p.rotate)},
{0}
};