]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
SAT>IP Client: do not show 12345678 error
authorJaroslav Kysela <perex@perex.cz>
Wed, 25 Mar 2015 13:34:57 +0000 (14:34 +0100)
committerJaroslav Kysela <perex@perex.cz>
Wed, 25 Mar 2015 13:37:29 +0000 (14:37 +0100)
src/input/mpegts/satip/satip_frontend.c

index 124520f2c2f36a6b09339cbf77e3868afe80193d..f658e59bda7b35902174b513958452fa29e7b6e8 100644 (file)
@@ -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;
   }