From a7c8b4e7b4bcda09f13f147a2eed3bce7f9f93df Mon Sep 17 00:00:00 2001 From: TangoCash Date: Sun, 7 Feb 2021 19:01:53 +0100 Subject: [PATCH] fix false positiv for DTSHD audio Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/d799d79681ea93b6c31e356c1f0b15f8db42ab6b Author: TangoCash Date: 2021-02-07 (Sun, 07 Feb 2021) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/zapit/src/scanpmt.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/zapit/src/scanpmt.cpp b/src/zapit/src/scanpmt.cpp index 0901d5498..b7e06f152 100644 --- a/src/zapit/src/scanpmt.cpp +++ b/src/zapit/src/scanpmt.cpp @@ -314,10 +314,15 @@ bool CPmt::ParseEsInfo(ElementaryStreamInfo *esinfo, CZapitChannel * const chann audio_type = CZapitAudioChannel::DTS; audio = true; 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: audio_type = CZapitAudioChannel::DTSHD; audio = true; break; +#endif case STREAM_TYPE_AUDIO_LPCM: audio_type = CZapitAudioChannel::LPCM; audio = true;