From 3caab473238da29cd3e34f4f3ad095b7d4fc8f91 Mon Sep 17 00:00:00 2001 From: lucabe Date: Fri, 12 Jan 2007 15:45:47 +0000 Subject: deprecate sws_scale_ordered(), as it now is a duplicate of sws_scale() git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21888 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/swscale.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libswscale/swscale.h') 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); -- cgit v1.2.3