mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-26 01:56:34 +08:00
Rename url_split to ff_url_split
Since this function isn't in the public API, it should have an ff_ prefix. Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -2805,7 +2805,7 @@ static void rtsp_cmd_describe(HTTPContext *c, const char *url)
|
||||
struct sockaddr_in my_addr;
|
||||
|
||||
/* find which url is asked */
|
||||
url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
|
||||
ff_url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
|
||||
path = path1;
|
||||
if (*path == '/')
|
||||
path++;
|
||||
@ -2880,7 +2880,7 @@ static void rtsp_cmd_setup(HTTPContext *c, const char *url,
|
||||
RTSPActionServerSetup setup;
|
||||
|
||||
/* find which url is asked */
|
||||
url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
|
||||
ff_url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
|
||||
path = path1;
|
||||
if (*path == '/')
|
||||
path++;
|
||||
@ -3022,7 +3022,7 @@ static HTTPContext *find_rtp_session_with_url(const char *url,
|
||||
return NULL;
|
||||
|
||||
/* find which url is asked */
|
||||
url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
|
||||
ff_url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
|
||||
path = path1;
|
||||
if (*path == '/')
|
||||
path++;
|
||||
|
Reference in New Issue
Block a user