Remove deprecated code

This commit is contained in:
xia-chu
2024-03-22 20:35:11 +08:00
committed by 夏楚
parent cfac61e55b
commit e972ec5a22
5 changed files with 2 additions and 80 deletions

View File

@@ -294,8 +294,8 @@ void RtspUrl::setup(bool is_ssl, const string &url, const string &user, const st
splitUrl(ip, ip, port);
_url = std::move(url);
_user = strCoding::UrlDecode(std::move(user));
_passwd = strCoding::UrlDecode(std::move(passwd));
_user = strCoding::UrlDecodeComponent(user);
_passwd = strCoding::UrlDecodeComponent(passwd);
_host = std::move(ip);
_port = port;
_is_ssl = is_ssl;