From 1eeded3992e828db16be4691daf271e668ca79f1 Mon Sep 17 00:00:00 2001
From: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Date: Tue, 10 Feb 2009 23:22:07 +0000
Subject: [PATCH] Add a @deprecated notice to swscale_get_ordered().

Originally committed as revision 28521 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
---
 libswscale/swscale.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index a1764d8d755..53e4489fdfa 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -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 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
-- 
GitLab