mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-12 04:44:25 +00:00
Add a @deprecated notice to swscale_get_ordered().
Originally committed as revision 28521 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
0e633e2b01
commit
1eeded3992
@ -119,6 +119,9 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat
|
|||||||
int sws_scale(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
|
int sws_scale(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
|
||||||
int srcSliceH, uint8_t* dst[], int dstStride[]);
|
int srcSliceH, uint8_t* dst[], int dstStride[]);
|
||||||
#if LIBSWSCALE_VERSION_MAJOR < 1
|
#if LIBSWSCALE_VERSION_MAJOR < 1
|
||||||
|
/**
|
||||||
|
* @deprecated Use sws_scale() instead.
|
||||||
|
*/
|
||||||
int sws_scale_ordered(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
|
int sws_scale_ordered(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
|
||||||
int srcSliceH, uint8_t* dst[], int dstStride[]) attribute_deprecated;
|
int srcSliceH, uint8_t* dst[], int dstStride[]) attribute_deprecated;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user