From baab7707a2c985b8b3fe33efdf8acc69b7ec9103 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Wed, 25 Mar 2015 14:34:57 +0100 Subject: [PATCH] SAT>IP Client: do not show 12345678 error --- src/input/mpegts/satip/satip_frontend.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index 124520f2..f658e59b 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -1282,7 +1282,10 @@ new_tune: rtsp_flags); pthread_mutex_unlock(&lfe->sf_dvr_lock); if (r < 0) { - tvherror("satip", "%s - failed to tune (%i)", buf, r); + if (r != -12345678) + tvherror("satip", "%s - failed to tune (%i)", buf, r); + else + tvhtrace("satip", "%s - mux changed in the middle", buf); satip_frontend_tuning_error(lfe, tr); goto done; }