From c3553e5bcc23550a6b956f9fa83265c1e7dbf6ef Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Thu, 1 Jul 2021 09:56:55 +0200 Subject: [PATCH] src/zapit/src/scansdt.cpp add 0x0A (AAC-LC) to Radio Service Type Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/297fc8196a8649fb8f08ebdabe8e2cdca0bb6e2d Author: Jacek Jendrzej Date: 2021-07-01 (Thu, 01 Jul 2021) --- src/zapit/src/scansdt.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/zapit/src/scansdt.cpp b/src/zapit/src/scansdt.cpp index 45d965a49..4efb46a09 100644 --- a/src/zapit/src/scansdt.cpp +++ b/src/zapit/src/scansdt.cpp @@ -354,7 +354,11 @@ uint8_t CSdt::FixServiceType(uint8_t type) (type==0xc5) || (type==0xc6) || (type == 0x11) || (type == 0x16) || (type == 0x19) || (type == 0x1f) || (type == 0x82) || (type == 0x87) || (type == 0xd3)) - return 1; + return ST_DIGITAL_TELEVISION_SERVICE; + + if(type == 0x0A) + return ST_DIGITAL_RADIO_SOUND_SERVICE; + return type; }