diff rtpproto.c @ 5775:7a123cc24a81 libavformat

Rename url_split to ff_url_split Since this function isn't in the public API, it should have an ff_ prefix.
author mstorsjo
date Mon, 08 Mar 2010 09:03:25 +0000
parents 7c7fe75728dd
children d34f985d6e8f
line wrap: on
line diff
--- a/rtpproto.c	Mon Mar 08 03:46:37 2010 +0000
+++ b/rtpproto.c	Mon Mar 08 09:03:25 2010 +0000
@@ -64,7 +64,7 @@
     char buf[1024];
     char path[1024];
 
-    url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
+    ff_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
               path, sizeof(path), uri);
 
     ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, port, "%s", path);
@@ -134,7 +134,7 @@
         return AVERROR(ENOMEM);
     h->priv_data = s;
 
-    url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
+    ff_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
               path, sizeof(path), uri);
     /* extract parameters */
     ttl = -1;