Add function to translate SWS_CS_* to coefficient array
authorDavid Conrad <lessen42@gmail.com>
Fri, 5 Feb 2010 16:09:03 +0000 (16:09 +0000)
committerDavid Conrad <lessen42@gmail.com>
Fri, 5 Feb 2010 16:09:03 +0000 (16:09 +0000)
Originally committed as revision 30513 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale.h
libswscale/yuv2rgb.c

index 9e14262d30f4311ef7fbc419cf1515a57b292d0b..ba198aaf2fc1979a27e540dbe1cd9ee8ae46e248 100644 (file)
@@ -30,7 +30,7 @@
 #include "libavutil/avutil.h"
 
 #define LIBSWSCALE_VERSION_MAJOR 0
-#define LIBSWSCALE_VERSION_MINOR 9
+#define LIBSWSCALE_VERSION_MINOR 10
 #define LIBSWSCALE_VERSION_MICRO 0
 
 #define LIBSWSCALE_VERSION_INT  AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
@@ -103,6 +103,12 @@ const char *swscale_license(void);
 #define SWS_CS_SMPTE240M      7
 #define SWS_CS_DEFAULT        5
 
+/**
+ * Returns a pointer to yuv<->rgb coefficients for the given colorspace
+ * suitable for sws_setColorspaceDetails()
+ * @colorspace one of SWS_CS_*  If invalid, SWS_CS_DEFAULT is used.
+ */
+const int * sws_getCoefficients(int colorspace);
 
 
 // when used for filters they must have an odd number of elements
index 3c7bb3fd9f02583cde359e22450298fe3fa9a377..a019bf76fddc3d6b8cbbd8a9802672a29bcb2800 100644 (file)
@@ -49,6 +49,13 @@ const int32_t ff_yuv2rgb_coeffs[8][4] = {
     {117579, 136230, 16907, 35559}  /* SMPTE 240M (1987) */
 };
 
+const int * sws_getCoefficients(int colorspace)
+{
+    if (colorspace > 7 || colorspace < 0)
+        colorspace = SWS_CS_DEFAULT;
+    return ff_yuv2rgb_coeffs[colorspace];
+}
+
 #define LOADCHROMA(i)                               \
     U = pu[i];                                      \
     V = pv[i];                                      \