diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-12-18 19:29:59 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-12-19 08:34:46 +0100 |
commit | 8a9cde4999a665fe4de69662ad4b5acddb7fd333 (patch) | |
tree | 5108bbd318c02eff933aa73393f5f43a08bf6990 | |
parent | 3925dff2e6d353d52f4d4cbb2866a9989f7f3ec4 (diff) |
csputils: update MP_STEREO3D_COUNT
This actually alows to playback alternating videos with mpv.
Tested with actual file found in wild remuxed to mkv and changed props
with following command:
mkvpropedit /tmp/o.mkv --edit track:1 -s stereo-mode=13
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | video/csputils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/csputils.h b/video/csputils.h index 39346746c5..639011c588 100644 --- a/video/csputils.h +++ b/video/csputils.h @@ -106,7 +106,7 @@ enum mp_stereo3d_mode { MP_STEREO3D_AB2L = 3, MP_STEREO3D_SBS2R = 11, /* no explicit enum entries for most valid values */ - MP_STEREO3D_COUNT = 13, // 12 is last valid mode + MP_STEREO3D_COUNT = 15, // 14 is last valid mode }; extern const struct m_opt_choice_alternatives mp_stereo3d_names[]; |