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
This commit is contained in:
Måns Rullgård
2010-06-27 14:16:46 +00:00
parent 350120d269
commit f3bfe388b5
13 changed files with 66 additions and 39 deletions

View File

@ -581,7 +581,7 @@ static int mms_open(URLContext *h, const char *uri, int flags)
return AVERROR(ENOMEM);
// only for MMS over TCP, so set proto = NULL
ff_url_split(NULL, 0, NULL, 0,
av_url_split(NULL, 0, NULL, 0,
mms->host, sizeof(mms->host), &port, mms->path,
sizeof(mms->path), uri);