DMX_PIP_CHANNEL removed, DMX_VIDEO_CHANNEL does the same

This commit is contained in:
BPanther
2021-10-02 22:28:41 +02:00
committed by Thilo Graf
parent 79a63aef0a
commit 609d6c4a7c
2 changed files with 2 additions and 2 deletions

View File

@@ -5283,7 +5283,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);
}

View File

@@ -774,7 +774,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);
}