From 201d7a3097e25d3874d6041a92695f7b7423e312 Mon Sep 17 00:00:00 2001
From: Frank Bossen <fbossen@gmail.com>
Date: Thu, 18 Jan 2024 14:37:55 -0500
Subject: [PATCH] Remove unused configuration parameter isSdr

---
 source/App/EncoderApp/EncAppCfg.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/source/App/EncoderApp/EncAppCfg.cpp b/source/App/EncoderApp/EncAppCfg.cpp
index b94b405c0..3fb9f8eed 100644
--- a/source/App/EncoderApp/EncAppCfg.cpp
+++ b/source/App/EncoderApp/EncAppCfg.cpp
@@ -762,8 +762,6 @@ bool EncAppCfg::parseCfg( int argc, char* argv[] )
 #endif
   std::string frameRate;
 
-  bool sdr = false;
-
   int chromaSampleLocType;
   int chromaSampleLocTypeTopField;
   int chromaSampleLocTypeBottomField;
@@ -774,7 +772,6 @@ bool EncAppCfg::parseCfg( int argc, char* argv[] )
   ("help",                                            do_help,                                          false, "this help text")
   ("c",    po::parseConfigFile, "configuration file name")
   ("WarnUnknowParameter,w",                           warnUnknowParameter,                                  0, "warn for unknown configuration parameters instead of failing")
-  ("isSDR",                                           sdr,                                              false, "compatibility")
 #if ENABLE_SIMD_OPT
   ("SIMD",                                            ignore,                                      std::string(""), "SIMD extension to use (SCALAR, SSE41, SSE42, AVX, AVX2, AVX512), default: the highest supported extension\n")
 #endif
-- 
GitLab