diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 12:40:25 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-19 18:28:38 +0200 |
commit | 5048e36c994663f7f4977efc48c3eec601654e5a (patch) | |
tree | d8344342dcc4e0433cfb5525e4a7b578fc73cdd4 /libavformat/utils.c | |
parent | c4efa7c22960588ff5163a1cfe026b48b8f6ec41 (diff) | |
download | ffmpeg-5048e36c994663f7f4977efc48c3eec601654e5a.tar.gz |
lavf: remove FF_API_URL_SPLIT cruft
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 80700d4b2b..91e0ddca2d 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3517,24 +3517,6 @@ void av_pkt_dump_log2(void *avcl, int level, AVPacket *pkt, int dump_payload, pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base); } -#if FF_API_URL_SPLIT -attribute_deprecated -void ff_url_split(char *proto, int proto_size, - char *authorization, int authorization_size, - char *hostname, int hostname_size, - int *port_ptr, - char *path, int path_size, - const char *url) -{ - av_url_split(proto, proto_size, - authorization, authorization_size, - hostname, hostname_size, - port_ptr, - path, path_size, - url); -} -#endif - void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, |