From 6d6d6370b2ef4c70e8ffda658458a71ade10af7c Mon Sep 17 00:00:00 2001 From: maazl Date: Mon, 28 Dec 2020 16:47:43 +0100 Subject: [PATCH] Fix for #65 RTSP streams not disconnected on error --- tuner.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tuner.c b/tuner.c index 89a3623..219a556 100644 --- a/tuner.c +++ b/tuner.c @@ -120,12 +120,15 @@ void cSatipTuner::Action(void) break; case tsSet: debug4("%s: tsSet [device %d]", __PRETTY_FUNCTION__, deviceIdM); + // some devices require TEARDOWN before new PLAY command Disconnect(); if (Connect()) { tuning.Set(eTuningTimeoutMs); RequestState(tsTuned, smInternal); UpdatePids(true); } + else + Disconnect(); break; case tsTuned: debug4("%s: tsTuned [device %d]", __PRETTY_FUNCTION__, deviceIdM);