Commit b47bc1af authored by Jean-Paul Saman's avatar Jean-Paul Saman

dvbinfo: Fixes CID #17246

Remove duplicated check for descriptor tags in GetDescriptorName()
parent 31c0ac5c
......@@ -946,10 +946,6 @@ static char const* GetDescriptorName(uint8_t tag)
/*19-26*/ return "Defined in ISO/IEC 13818-6";
} else if (tag >= 0x2d && tag <= 0x3f) {
/*45-63*/ return "ITU-T Rec. H.222.0 | ISO/IEC 13818-1 Reserved";
} else if (tag >= 0x40 && tag <= 0x51) {
/*64-81*/ return "User Private";
} else if (tag >= 0x53 && tag <= 0x55) {
/*83-84*/ return "User Private";
} else
/*87-255*/ return "User Private";
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment