changeset 28486:423d3751bfd2

Add a @deprecated notice to swscale_get_ordered().
author stefano
date Tue, 10 Feb 2009 23:22:07 +0000
parents 3f597aacbb69
children 4f35dc205d88
files libswscale/swscale.h
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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