From: Jaroslav Kysela Date: Wed, 3 Oct 2018 16:16:30 +0000 (+0200) Subject: satip client: fix the satip_frontend_rtsp_flags() function X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bef96c5d25f890a7c79ce035f2a05e99042f4f82;p=thirdparty%2Ftvheadend.git satip client: fix the satip_frontend_rtsp_flags() function --- diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index aa7fd1c32..ae812aaad 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -103,7 +103,7 @@ udp_rtp_packet_append( satip_frontend_t *lfe, uint8_t *p, int len, uint16_t seq static int satip_frontend_rtsp_flags( satip_frontend_t *lfe ) { - int rtsp_flags = lfe->sf_device->sd_tcp_mode ? RTP_INTERLEAVED : 0; + int rtsp_flags = lfe->sf_device->sd_tcp_mode ? SATIP_SETUP_TCP : 0; if (lfe->sf_transport_mode != RTP_SERVER_DEFAULT) rtsp_flags = lfe->sf_transport_mode == RTP_INTERLEAVED ? SATIP_SETUP_TCP : 0; return rtsp_flags;