diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-28 22:23:58 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-28 22:23:58 +0000 |
commit | 0810a5846b22ec016bb1c8ee506aca127d629d62 (patch) | |
tree | 1247cc48b56f4198e3f7f3b576c57eb57f88f8ad /libswscale/swscale.h | |
parent | 499287e0a58939db4db0eac90a14968354ead8ed (diff) | |
download | ffmpeg-0810a5846b22ec016bb1c8ee506aca127d629d62.tar.gz |
Deprecate sws_getContext(), use sws_alloc_context() and
sws_init_context() instead.
Originally committed as revision 32401 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 87a1c4461b..3cc32026bc 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -44,6 +44,14 @@ #define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION) /** + * Those FF_API_* defines are not part of public API. + * They may change, break or disappear at any time. + */ +#ifndef FF_API_SWS_GETCONTEXT +#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 1) +#endif + +/** * Returns the LIBSWSCALE_VERSION_INT constant. */ unsigned swscale_version(void); @@ -164,6 +172,7 @@ int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFi */ void sws_freeContext(struct SwsContext *swsContext); +#if FF_API_SWS_GETCONTEXT /** * Allocates and returns a SwsContext. You need it to perform * scaling/conversion operations using sws_scale(). @@ -178,10 +187,12 @@ void sws_freeContext(struct SwsContext *swsContext); * @return a pointer to an allocated context, or NULL in case of error * @deprecated use sws_alloc_context() and sws_init_context() */ +attribute_deprecated struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int dstW, int dstH, enum PixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param); +#endif /** * Scales the image slice in srcSlice and puts the resulting scaled |