diff options
author | Luca Abeni <lucabe72@email.it> | 2007-01-12 15:45:47 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2007-01-12 15:45:47 +0000 |
commit | d28ef27031367a91ba89ebf9aa4e2610932ca745 (patch) | |
tree | 05e8806d3e1fd373f710a4e862859be2d7222cfb /libswscale | |
parent | 703b56fb5d120b172225642a37efb55f0b04658e (diff) | |
download | ffmpeg-d28ef27031367a91ba89ebf9aa4e2610932ca745.tar.gz |
deprecate sws_scale_ordered(), as it now is a duplicate of sws_scale()
Originally committed as revision 21888 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 06088b8e49..27d1aa3efa 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -27,6 +27,8 @@ * external api for the swscale stuff */ +#include "avutil.h" + #ifdef __cplusplus extern "C" { #endif @@ -109,7 +111,7 @@ struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, i int sws_scale(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]); int sws_scale_ordered(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, - int srcSliceH, uint8_t* dst[], int dstStride[]); + int srcSliceH, uint8_t* dst[], int dstStride[]) attribute_deprecated; int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation); |