fix false positiv for DTSHD audio

Origin commit data
------------------
Branch: ni/coolstream
Commit: d799d79681
Author: TangoCash <eric@loxat.de>
Date: 2021-02-07 (Sun, 07 Feb 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2021-02-07 19:01:53 +01:00
committed by vanhofen
parent 5a6136130b
commit a7c8b4e7b4

View File

@@ -314,10 +314,15 @@ bool CPmt::ParseEsInfo(ElementaryStreamInfo *esinfo, CZapitChannel * const chann
audio_type = CZapitAudioChannel::DTS; audio_type = CZapitAudioChannel::DTS;
audio = true; audio = true;
break; break;
// STREAM_TYPE_AUDIO_DTSHD: SCTE-35[5] digital program insertion cue message
// or DTS 8 channel lossless audio in a packetized stream
// disabled until furhther detection
#if 0
case STREAM_TYPE_AUDIO_DTSHD: case STREAM_TYPE_AUDIO_DTSHD:
audio_type = CZapitAudioChannel::DTSHD; audio_type = CZapitAudioChannel::DTSHD;
audio = true; audio = true;
break; break;
#endif
case STREAM_TYPE_AUDIO_LPCM: case STREAM_TYPE_AUDIO_LPCM:
audio_type = CZapitAudioChannel::LPCM; audio_type = CZapitAudioChannel::LPCM;
audio = true; audio = true;