summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-31 14:41:21 +0200
committerwm4 <wm4@nowhere>2014-08-31 14:48:58 +0200
commitfd4045965e8926ef994028fffdf7e928038e4714 (patch)
treef0b6c64907e501fea9b6b468d9ef66fc645e4f27
parent8432eaefa07f3696f5d9825bf7d4e32d9b1c5308 (diff)
downloadmpv-fd4045965e8926ef994028fffdf7e928038e4714.tar.bz2
mpv-fd4045965e8926ef994028fffdf7e928038e4714.tar.xz
video: adjust some Matroska 3D formats
There is no proper and exact spec (Matroska tradition), so we probably have to rely on guessing for this. Also see issue #1045.
-rw-r--r--video/csputils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/csputils.c b/video/csputils.c
index f5121b76ec..d8062a5e94 100644
--- a/video/csputils.c
+++ b/video/csputils.c
@@ -86,8 +86,8 @@ const char *const mp_chroma_names[MP_CHROMA_COUNT] = {
const char *const mp_stereo3d_names[MP_STEREO3D_COUNT] = {
E(0, "mono", "mono"), // unsupported by vf_stereo3d
E(1, "sbs2l", "side_by_side_left"),
- E(2, "abr", "top_bottom_right"),
- E(3, "abl", "top_bottom_left"),
+ E(2, "ab2r", "top_bottom_right"),
+ E(3, "ab2l", "top_bottom_left"),
E(4, "checkr", "checkboard_right"), // unsupported by vf_stereo3d
E(5, "checkl", "checkboard_left"), // unsupported by vf_stereo3d
E(6, "irr", "row_interleaved_right"),