Commit 0b0d556a authored by Jean-Paul Saman's avatar Jean-Paul Saman

dvbinfo: libdvbpsi.c: split if condition in GetDescriptorName()

parent 25587a2e
...@@ -946,11 +946,11 @@ static char const* GetDescriptorName(uint8_t tag) ...@@ -946,11 +946,11 @@ static char const* GetDescriptorName(uint8_t tag)
/*19-26*/ return "Defined in ISO/IEC 13818-6"; /*19-26*/ return "Defined in ISO/IEC 13818-6";
} else if (tag >= 0x2d && tag <= 0x3f) { } else if (tag >= 0x2d && tag <= 0x3f) {
/*45-63*/ return "ITU-T Rec. H.222.0 | ISO/IEC 13818-1 Reserved"; /*45-63*/ return "ITU-T Rec. H.222.0 | ISO/IEC 13818-1 Reserved";
} else if ((tag >= 0x40 && tag <= 0x51) || } else if (tag >= 0x40 && tag <= 0x51) {
(tag >= 0x53 && tag <= 0x55)) { /*64-81*/ return "User Private";
/*64-81 and 83-84*/ return "User Private"; } else if (tag >= 0x53 && tag <= 0x55) {
} /*83-84*/ return "User Private";
else } else
/*87-255*/ return "User Private"; /*87-255*/ return "User Private";
break; 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