diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-27 14:16:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-27 14:16:46 +0000 |
commit | f3bfe388b5ba1767ce982c8304dfe9ef0f38a454 (patch) | |
tree | 8cef06f9ff5ba5e6cd681ea5b3e6b3922a0858e2 /libavformat/sdp.c | |
parent | 350120d269033f4cc206850b3c81f797ed2cb9c6 (diff) | |
download | ffmpeg-f3bfe388b5ba1767ce982c8304dfe9ef0f38a454.tar.gz |
Make ff_url_split() public
ff_url_split() is retained as an alias, as it was used by ffserver,
to avoid breaking ABI compatibility with it.
Originally committed as revision 23822 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r-- | libavformat/sdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 10f43c35fa..b34b944e59 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -109,7 +109,7 @@ static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) const char *p; char proto[32]; - ff_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); + av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); *ttl = 0; |