diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 16:10:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | 62eaaeacb5ac083d9a96e95ec7df12113cd3ca81 (patch) | |
tree | 8772497d42fbd2c746a22b382cb05afaf9d71ea5 /libavformat/rtsp.c | |
parent | 5652bb94719c0bb0c58f73e44531af9977493223 (diff) | |
download | ffmpeg-62eaaeacb5ac083d9a96e95ec7df12113cd3ca81.tar.gz |
avio: make url_connect internal.
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 9d988a7923..0f7b11edcc 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1411,7 +1411,7 @@ redirect: ff_http_set_headers(rt->rtsp_hd, headers); /* complete the connection */ - if (url_connect(rt->rtsp_hd)) { + if (ffurl_connect(rt->rtsp_hd)) { err = AVERROR(EIO); goto fail; } @@ -1453,7 +1453,7 @@ redirect: ff_http_init_auth_state(rt->rtsp_hd_out, rt->rtsp_hd); /* complete the connection */ - if (url_connect(rt->rtsp_hd_out)) { + if (ffurl_connect(rt->rtsp_hd_out)) { err = AVERROR(EIO); goto fail; } |