src/zapit/src/scansdt.cpp add 0x0A (AAC-LC) to Radio Service Type

Origin commit data
------------------
Commit: 297fc8196a
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2021-07-01 (Thu, 01 Jul 2021)
This commit is contained in:
Jacek Jendrzej
2021-07-01 09:56:55 +02:00
committed by vanhofen
parent d075829b2d
commit c3553e5bcc

View File

@@ -354,7 +354,11 @@ uint8_t CSdt::FixServiceType(uint8_t type)
(type==0xc5) || (type==0xc6) || (type == 0x11) || (type==0xc5) || (type==0xc6) || (type == 0x11) ||
(type == 0x16) || (type == 0x19) || (type == 0x1f) || (type == 0x16) || (type == 0x19) || (type == 0x1f) ||
(type == 0x82) || (type == 0x87) || (type == 0xd3)) (type == 0x82) || (type == 0x87) || (type == 0xd3))
return 1; return ST_DIGITAL_TELEVISION_SERVICE;
if(type == 0x0A)
return ST_DIGITAL_RADIO_SOUND_SERVICE;
return type; return type;
} }