From 9ad9dfab8fa34d26dc6ebedc77eb59cd3e511279 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sun, 21 Aug 2022 17:16:20 +0200 Subject: [PATCH] KaxSemantic: mark OldStereoMode as supported It exists in Matroska v1 and v2 but we don't allow writing it as it's deprecated. --- src/KaxSemantic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KaxSemantic.cpp b/src/KaxSemantic.cpp index c0e8cba..b9d3975 100644 --- a/src/KaxSemantic.cpp +++ b/src/KaxSemantic.cpp @@ -323,7 +323,7 @@ DEFINE_SEMANTIC_ITEM(true, true, KaxVideoFlagInterlaced) DEFINE_SEMANTIC_ITEM(true, true, KaxVideoFieldOrder) DEFINE_SEMANTIC_ITEM(true, true, KaxVideoStereoMode) DEFINE_SEMANTIC_ITEM(true, true, KaxVideoAlphaMode) -DEFINE_SEMANTIC_ITEM(false, true, KaxOldStereoMode) // not supported +DEFINE_SEMANTIC_ITEM(false, true, KaxOldStereoMode) DEFINE_SEMANTIC_ITEM(true, true, KaxVideoPixelWidth) DEFINE_SEMANTIC_ITEM(true, true, KaxVideoPixelHeight) DEFINE_SEMANTIC_ITEM(true, true, KaxVideoPixelCropBottom) -- 2.50.1