From: Moritz Bunkus Date: Mon, 22 Jun 2020 08:20:11 +0000 (+0200) Subject: KaxSemantic.cpp: add missing function implementations for KaxChapterTranslate* X-Git-Tag: release-1.6.0~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b21e0d395d9f0e94e94008a5d685cead6fa45cac;p=libmatroska KaxSemantic.cpp: add missing function implementations for KaxChapterTranslate* --- diff --git a/src/KaxSemantic.cpp b/src/KaxSemantic.cpp index 3cefb11..dc962ea 100644 --- a/src/KaxSemantic.cpp +++ b/src/KaxSemantic.cpp @@ -851,4 +851,14 @@ filepos_t KaxFileUsedEndTime::RenderData(IOCallback & /* output */, bool /* bFor return 0; } +filepos_t KaxChapterTranslateEditionUID::RenderData(IOCallback & /* output */, bool /* bForceRender */, bool /* bSaveDefault */) { + assert(false); // no you are not allowed to use this element ! + return 0; +} + +filepos_t KaxChapterTranslateCodec::RenderData(IOCallback & /* output */, bool /* bForceRender */, bool /* bSaveDefault */) { + assert(false); // no you are not allowed to use this element ! + return 0; +} + END_LIBMATROSKA_NAMESPACE