From: Jaroslav Kysela Date: Sun, 22 Oct 2017 17:16:36 +0000 (+0200) Subject: SAT>IP client: fix for the previous patch (wrong offset for UDP packets), issue ... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f843530a15afef717cf327605dcb646b36c8e64;p=thirdparty%2Ftvheadend.git SAT>IP client: fix for the previous patch (wrong offset for UDP packets), issue #4621 --- diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index 6dcec39e2..21dfa9841 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -2047,7 +2047,7 @@ new_tune: } for (i = 0, unc = 0; i < tc; i++) { - if (satip_frontend_rtp_decode(lfe, &seq, &unc, iovec[i].iov_base + 4, iovec[i].iov_len - 4) == 0) + if (satip_frontend_rtp_decode(lfe, &seq, &unc, iovec[i].iov_base, iovec[i].iov_len) == 0) continue; } pthread_mutex_lock(&lfe->sf_dvr_lock);