SCT_MASK(SCT_CA)
#define ESF_MASK_OTHER \
- SCT_MASK(SCT_MPEGTS)
+ SCT_MASK(SCT_MPEGTS|SCT_HBBTV)
extern uint32_t esfilterclsmask[];
audio_version = 2; /* Assume Layer 2 */
break;
+ case 0x05:
+ hts_stream_type = SCT_HBBTV;
+ break;
+
case 0x06:
/* 0x06 is Chinese Cable TV AC-3 audio track */
/* but mark it so only when no more descriptors exist */
{ "VORBIS", SCT_VORBIS },
{ "HEVC", SCT_HEVC },
{ "VP9", SCT_VP9 },
+ { "HBBTV", SCT_HBBTV },
};
/**
SCT_VORBIS,
SCT_HEVC,
SCT_VP9,
- SCT_LAST = SCT_VP9
+ SCT_HBBTV,
+ SCT_LAST = SCT_HBBTV
} streaming_component_type_t;
#define SCT_MASK(t) (1 << (t))