[FFmpeg-devel] [PATCH] 'UDP' protocol (in upper case) in SDP m= section was parsed correctly

2019-01-30 Thread Yannick Poirier
--- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index ceb770a3a4..4899e4e790 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -480,7 +480,7 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState

[FFmpeg-devel] [PATCH] libavformat/rtsp: Fix rtsps, do not force tcp transport

2016-01-25 Thread Yannick Poirier
rtsp over ssl is not working. tls does not implement prot->url_get_file_handle so ffurl_get_file_handle() fails. struct sockaddr_storage peer is initialized but not used, remove it. rtsps lower transport was set to TCP. Transport could be UDP. It permits to use RTSPS + SRTP. --- libavformat/r