[FFmpeg-cvslog] swscale: postpone sws_getContext removal until next major bump.
Anton Khirnov
git at videolan.org
Thu Apr 7 03:43:45 CEST 2011
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Apr 6 14:46:31 2011 +0200| [0464ee9af2a3c17d78642f203cfeeb5d66c70bf2] | committer: Anton Khirnov
swscale: postpone sws_getContext removal until next major bump.
The replacement isn't ready yet.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0464ee9af2a3c17d78642f203cfeeb5d66c70bf2
---
libswscale/swscale.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index ebdad30..aae1a6c 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -48,7 +48,7 @@
* They may change, break or disappear at any time.
*/
#ifndef FF_API_SWS_GETCONTEXT
-#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 1)
+#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 2)
#endif
/**
@@ -185,9 +185,9 @@ void sws_freeContext(struct SwsContext *swsContext);
* @param dstFormat the destination image format
* @param flags specify which algorithm and options to use for rescaling
* @return a pointer to an allocated context, or NULL in case of error
- * @deprecated use sws_alloc_context() and sws_init_context()
+ * @note this function is to be removed after a saner alternative is
+ * written
*/
-attribute_deprecated
struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat,
int dstW, int dstH, enum PixelFormat dstFormat,
int flags, SwsFilter *srcFilter,
More information about the ffmpeg-cvslog
mailing list