[SCM] libav/experimental: add FF_API_URL_SPLIT define to disable the deprecated ff_url_split() function

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:17:42 UTC 2013


The following commit has been merged in the experimental branch:
commit 88e44314ea0bbd7b8cec7fe8a3fcab68751ff3ba
Author: Aurelien Jacobs <aurel at gnuage.org>
Date:   Fri Oct 15 12:54:12 2010 +0000

    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

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index d121b59..655488c 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -60,6 +60,9 @@
 #ifndef FF_API_UDP_GET_FILE
 #define FF_API_UDP_GET_FILE       (LIBAVFORMAT_VERSION_MAJOR < 53)
 #endif
+#ifndef FF_API_URL_SPLIT
+#define FF_API_URL_SPLIT          (LIBAVFORMAT_VERSION_MAJOR < 53)
+#endif
 
 /**
  * I return the LIBAVFORMAT_VERSION_INT constant.  You got
diff --git a/libavformat/internal.h b/libavformat/internal.h
index decc26f..d723f09 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -101,7 +101,7 @@ int ff_probe_input_buffer(ByteIOContext **pb, AVInputFormat **fmt,
                           const char *filename, void *logctx,
                           unsigned int offset, unsigned int max_probe_size);
 
-#if LIBAVFORMAT_VERSION_MAJOR < 53
+#if FF_API_URL_SPLIT
 /**
  * @deprecated use av_url_split() instead
  */
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 4060ca9..ebcb7d7 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,

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list