# HG changeset patch # User stefano # Date 1262891267 0 # Node ID bd9db1814611bdb1fba6016e462fb31be81ee185 # Parent faadefe4a66e2f099faa4e168599f472a2baa72e Implement sws_isSupportedInput() and sws_isSupportedOutput(). diff -r faadefe4a66e -r bd9db1814611 libswscale/swscale.c --- a/libswscale/swscale.c Thu Jan 07 11:12:58 2010 +0000 +++ b/libswscale/swscale.c Thu Jan 07 19:07:47 2010 +0000 @@ -157,6 +157,12 @@ || (x)==PIX_FMT_YUV422P16BE \ || (x)==PIX_FMT_YUV444P16BE \ ) + +int sws_isSupportedInput(enum PixelFormat pix_fmt) +{ + return isSupportedIn(pix_fmt); +} + #define isSupportedOut(x) ( \ (x)==PIX_FMT_YUV420P \ || (x)==PIX_FMT_YUVA420P \ @@ -181,6 +187,12 @@ || (x)==PIX_FMT_YUV422P16BE \ || (x)==PIX_FMT_YUV444P16BE \ ) + +int sws_isSupportedOutput(enum PixelFormat pix_fmt) +{ + return isSupportedOut(pix_fmt); +} + #define isPacked(x) ( \ (x)==PIX_FMT_PAL8 \ || (x)==PIX_FMT_YUYV422 \ diff -r faadefe4a66e -r bd9db1814611 libswscale/swscale.h --- a/libswscale/swscale.h Thu Jan 07 11:12:58 2010 +0000 +++ b/libswscale/swscale.h Thu Jan 07 19:07:47 2010 +0000 @@ -30,8 +30,8 @@ #include "libavutil/avutil.h" #define LIBSWSCALE_VERSION_MAJOR 0 -#define LIBSWSCALE_VERSION_MINOR 7 -#define LIBSWSCALE_VERSION_MICRO 2 +#define LIBSWSCALE_VERSION_MINOR 8 +#define LIBSWSCALE_VERSION_MICRO 0 #define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \ LIBSWSCALE_VERSION_MINOR, \ @@ -123,6 +123,18 @@ struct SwsContext; /** + * Returns a positive value if pix_fmt is a supported input format, 0 + * otherwise. + */ +int sws_isSupportedInput(enum PixelFormat pix_fmt); + +/** + * Returns a positive value if pix_fmt is a supported output format, 0 + * otherwise. + */ +int sws_isSupportedOutput(enum PixelFormat pix_fmt); + +/** * Frees the swscaler context swsContext. * If swsContext is NULL, then does nothing. */