Skip to content

Commit

Permalink
Print Freesat callsign descriptor when found in SDT/SDTo
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdewaal committed Oct 9, 2019
1 parent 9a5858a commit 10d726d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/mpeg/dvbtables.cpp
Expand Up @@ -135,7 +135,8 @@ QString ServiceDescriptionTable::toString(void) const
// Descriptors 0x80 to 0xFE are user defined, see
// Final draft ETSI EN 300 468 v1.13.1 (2012-04)
// Table 12: "Possible location of descriptors", page 33)
if(MPEGDescriptor(desc[j]).DescriptorTag() < 0x80)
if (MPEGDescriptor(desc[j]).DescriptorTag() < 0x80 ||
MPEGDescriptor(desc[j]).DescriptorTag() == PrivateDescriptorID::freesat_callsign)
{
str.append(QString(" %1\n")
.arg(MPEGDescriptor(desc[j]).toString()));
Expand Down

0 comments on commit 10d726d

Please sign in to comment.