diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-10-15 12:54:12 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-10-15 12:54:12 +0000 |
commit | 88e44314ea0bbd7b8cec7fe8a3fcab68751ff3ba (patch) | |
tree | b25cf235e21f3f7cbcf89886dfb84fcca9e7e806 /libavformat/utils.c | |
parent | 8ef30ac1f309fcf87c4df92e71c890f48cc199bb (diff) | |
download | ffmpeg-88e44314ea0bbd7b8cec7fe8a3fcab68751ff3ba.tar.gz |
add FF_API_URL_SPLIT define to disable the deprecated ff_url_split() function
Originally committed as revision 25482 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 4060ca9ed8..ebcb7d7e45 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3526,7 +3526,7 @@ void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt, int dump_payload) pkt_dump_internal(avcl, NULL, level, pkt, dump_payload); } -#if LIBAVFORMAT_VERSION_MAJOR < 53 +#if FF_API_URL_SPLIT attribute_deprecated void ff_url_split(char *proto, int proto_size, char *authorization, int authorization_size, |