From 0ca0629da65ee31461efe28a37237300b252e514 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sat, 18 May 2024 10:08:27 -0700 Subject: [PATCH] added missing codecs to Dump --- Controller.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Controller.cpp b/Controller.cpp index d598d7d..07ebff1 100644 --- a/Controller.cpp +++ b/Controller.cpp @@ -676,6 +676,14 @@ void CController::Dump(const std::shared_ptr p, const std::st line << "**"; else if (ECodecType::c2_3200 == in) line << '*'; + if (p->P25IsSet()) + line << " P25"; + if (ECodecType::p25 == in) + line << "*"; + if (p->USRPIsSet()) + line << " USRP"; + if (ECodecType::usrp == in) + line << "*"; if (p->IsSecond()) line << " IsSecond"; if (p->IsLast())