summaryrefslogtreecommitdiff
path: root/libavformat/udp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-03-08 09:03:25 +0000
committerMartin Storsjö <martin@martin.st>2010-03-08 09:03:25 +0000
commitc5c6e67c28e0e30b681cff55e8d85bb963d8640e (patch)
treed76a2596d799248e9e6cc7f3157b2f662424724b /libavformat/udp.c
parentda5bcafe3b728f255ad068fc406622515b435082 (diff)
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
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 1b09457a46..3037a04fa0 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -265,7 +265,7 @@ int udp_set_remote_url(URLContext *h, const char *uri)
char hostname[256];
int port;
- url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
+ ff_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
/* set the destination address */
s->dest_addr_len = udp_set_url(&s->dest_addr, hostname, port);
@@ -346,9 +346,9 @@ static int udp_open(URLContext *h, const char *uri, int flags)
}
/* fill the dest addr */
- url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
+ ff_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
- /* XXX: fix url_split */
+ /* XXX: fix ff_url_split */
if (hostname[0] == '\0' || hostname[0] == '?') {
/* only accepts null hostname if input */
if (flags & URL_WRONLY)