diff options
author | David Conrad <lessen42@gmail.com> | 2010-02-05 16:09:03 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-02-05 16:09:03 +0000 |
commit | 3f3dc76cb1fbf9b14536b993a6f435e8ab806585 (patch) | |
tree | 8e0512f224d5032bfa1a7b1b823da9cf4f89a3dd /libswscale/swscale.h | |
parent | bf8ae197b618be06e0fb74d17fbf5010c0be63d8 (diff) | |
download | ffmpeg-3f3dc76cb1fbf9b14536b993a6f435e8ab806585.tar.gz |
Add function to translate SWS_CS_* to coefficient array
Originally committed as revision 30513 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 9e14262d30..ba198aaf2f 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -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 |