From 54215310a09e15f1448670b54d5aa39bee6a2c08 Mon Sep 17 00:00:00 2001
From: jcdr428 <jessiedeer@hotmail.com>
Date: Mon, 4 Apr 2022 20:52:21 +0000
Subject: [PATCH] insertSEI and contSPS are not default

The insertSEI (or forceSEI) option is broken. Until fixed, the option should not be on by default for H264/MVC.
---
 tsMuxerGUI/tsmuxerwindow.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tsMuxerGUI/tsmuxerwindow.cpp b/tsMuxerGUI/tsmuxerwindow.cpp
index 2205df6..9ea587e 100644
--- a/tsMuxerGUI/tsmuxerwindow.cpp
+++ b/tsMuxerGUI/tsmuxerwindow.cpp
@@ -545,7 +545,8 @@ void TsMuxerWindow::onTsMuxerCodecInfoReceived()
             }
             codecInfo->descr = "Can't detect codec";
             codecInfo->displayName = procStdOutput[i].mid(QString("Stream type: ").length());
-            if (codecInfo->displayName != "H.264" && codecInfo->displayName != "MVC")
+            // TODO: fix insertSEI option. Until then ,  the option is not default for H264/MVC
+            // if (codecInfo->displayName != "H.264" && codecInfo->displayName != "MVC")
             {
                 codecInfo->addSEIMethod = 0;
                 codecInfo->addSPS = false;