From: Steve Lhomme Date: Sun, 21 Aug 2022 15:16:20 +0000 (+0200) Subject: KaxSemantic: mark OldStereoMode as supported X-Git-Tag: release-1.7.0~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ad9dfab8fa34d26dc6ebedc77eb59cd3e511279;p=libmatroska KaxSemantic: mark OldStereoMode as supported It exists in Matroska v1 and v2 but we don't allow writing it as it's deprecated. --- 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)