- zapit: try to fix cst audio; not testet

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-02-14 23:25:31 +01:00
committed by Thilo Graf
parent dcb47afeff
commit 8e65fb4552

View File

@@ -99,6 +99,19 @@ class CZapitAudioChannel
std::string description;
unsigned char componentTag;
#if HAVE_CST_HARDWARE
enum ZapitAudioChannelType {
MPEG = 0,
AC3 = 1,
AAC = 2,
AACPLUS = 3,
DTS = 4,
LPCM = 6,
DTSHD = 0x10,
EAC3 = 0x22,
UNKNOWN
};
#else
enum ZapitAudioChannelType {
MPEG = 1,
AC3 = 0,
@@ -110,6 +123,7 @@ class CZapitAudioChannel
EAC3 = 0x22,
UNKNOWN
};
#endif
ZapitAudioChannelType audioChannelType;
};