mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
swscale: postpone sws_getContext removal until next major bump.
The replacement isn't ready yet.
This commit is contained in:
parent
0ba832231d
commit
0464ee9af2
@ -48,7 +48,7 @@
|
|||||||
* They may change, break or disappear at any time.
|
* They may change, break or disappear at any time.
|
||||||
*/
|
*/
|
||||||
#ifndef FF_API_SWS_GETCONTEXT
|
#ifndef FF_API_SWS_GETCONTEXT
|
||||||
#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 1)
|
#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 2)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -185,9 +185,9 @@ void sws_freeContext(struct SwsContext *swsContext);
|
|||||||
* @param dstFormat the destination image format
|
* @param dstFormat the destination image format
|
||||||
* @param flags specify which algorithm and options to use for rescaling
|
* @param flags specify which algorithm and options to use for rescaling
|
||||||
* @return a pointer to an allocated context, or NULL in case of error
|
* @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,
|
struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat,
|
||||||
int dstW, int dstH, enum PixelFormat dstFormat,
|
int dstW, int dstH, enum PixelFormat dstFormat,
|
||||||
int flags, SwsFilter *srcFilter,
|
int flags, SwsFilter *srcFilter,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user