# HG changeset patch # User stefano # Date 1234308127 0 # Node ID 423d3751bfd2845f8a8ddd4d3d5f1dfa6c500899 # Parent 3f597aacbb69c8d8b291d1ddf16c2101e4e7352a Add a @deprecated notice to swscale_get_ordered(). diff -r 3f597aacbb69 -r 423d3751bfd2 libswscale/swscale.h --- a/libswscale/swscale.h Tue Feb 10 15:34:44 2009 +0000 +++ b/libswscale/swscale.h Tue Feb 10 23:22:07 2009 +0000 @@ -119,6 +119,9 @@ int sws_scale(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]); #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 srcSliceH, uint8_t* dst[], int dstStride[]) attribute_deprecated; #endif