From ea1497b58fb9fcf82fc340bf5b8eb3670cd23b5c Mon Sep 17 00:00:00 2001 From: BPanther Date: Sat, 2 Oct 2021 22:28:41 +0200 Subject: [PATCH] DMX_PIP_CHANNEL removed, DMX_VIDEO_CHANNEL does the same Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/79908aca2ffb2d6cdd4b4b575eac5c5103032e33 Author: BPanther Date: 2021-10-02 (Sat, 02 Oct 2021) --- src/neutrino.cpp | 2 +- src/zapit/src/zapit.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 85d3be57e..edf9b1e99 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -5350,7 +5350,7 @@ void CNeutrinoApp::StartAVInputPiP() { if (!pipDemux) { pipDemux = new cDemux(1); - pipDemux->Open(DMX_PIP_CHANNEL); + pipDemux->Open(DMX_VIDEO_CHANNEL); if (!pipDecoder) { pipDecoder = new cVideo(0, NULL, NULL, 1); } diff --git a/src/zapit/src/zapit.cpp b/src/zapit/src/zapit.cpp index c70840684..86f8b6543 100644 --- a/src/zapit/src/zapit.cpp +++ b/src/zapit/src/zapit.cpp @@ -771,7 +771,7 @@ bool CZapit::StartPip(const t_channel_id channel_id) INFO("[pip] vpid %X apid %X pcr %X", newchannel->getVideoPid(), newchannel->getAudioPid(), newchannel->getPcrPid()); if (!pipDemux) { pipDemux = new cDemux(dnum); - pipDemux->Open(DMX_PIP_CHANNEL); + pipDemux->Open(DMX_VIDEO_CHANNEL); if (!pipDecoder) { pipDecoder = new cVideo(0, NULL, NULL, 1); }