From bef96c5d25f890a7c79ce035f2a05e99042f4f82 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Wed, 3 Oct 2018 18:16:30 +0200 Subject: [PATCH] satip client: fix the satip_frontend_rtsp_flags() function --- src/input/mpegts/satip/satip_frontend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2