Mercurial > libavformat.hg
comparison sdp.c @ 6182:4fc5e0e4e1cd libavformat
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.
author | mru |
---|---|
date | Sun, 27 Jun 2010 14:16:46 +0000 |
parents | 16ca32d9c5f0 |
children | 93c7a56fa912 |
comparison
equal
deleted
inserted
replaced
6181:cb49c916b7f4 | 6182:4fc5e0e4e1cd |
---|---|
107 { | 107 { |
108 int port; | 108 int port; |
109 const char *p; | 109 const char *p; |
110 char proto[32]; | 110 char proto[32]; |
111 | 111 |
112 ff_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); | 112 av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); |
113 | 113 |
114 *ttl = 0; | 114 *ttl = 0; |
115 | 115 |
116 if (strcmp(proto, "rtp")) { | 116 if (strcmp(proto, "rtp")) { |
117 /* The url isn't for the actual rtp sessions, | 117 /* The url isn't for the actual rtp sessions, |