diff options
Diffstat (limited to 'media/libwebp/webp/config.h')
-rw-r--r-- | media/libwebp/webp/config.h | 37 |
1 files changed, 21 insertions, 16 deletions
diff --git a/media/libwebp/webp/config.h b/media/libwebp/webp/config.h index dd31c3cfaa..3496bc2c49 100644 --- a/media/libwebp/webp/config.h +++ b/media/libwebp/webp/config.h @@ -13,6 +13,9 @@ /* Set to 1 if __builtin_bswap64 is available */ #define HAVE_BUILTIN_BSWAP64 1 +/* Define to 1 if you have the <cpu-features.h> header file. */ +/* #undef HAVE_CPU_FEATURES_H */ + /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 @@ -20,14 +23,11 @@ /* #undef HAVE_GLUT_GLUT_H */ /* Define to 1 if you have the <GL/glut.h> header file. */ -/* #undef HAVE_GL_GLUT_H */ +#define HAVE_GL_GLUT_H 1 /* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 -/* Define to 1 if you have the <memory.h> header file. */ -#define HAVE_MEMORY_H 1 - /* Define to 1 if you have the <OpenGL/glut.h> header file. */ /* #undef HAVE_OPENGL_GLUT_H */ @@ -40,6 +40,9 @@ /* Define to 1 if you have the <stdint.h> header file. */ #define HAVE_STDINT_H 1 +/* Define to 1 if you have the <stdio.h> header file. */ +#define HAVE_STDIO_H 1 + /* Define to 1 if you have the <stdlib.h> header file. */ #define HAVE_STDLIB_H 1 @@ -77,38 +80,34 @@ #define PACKAGE_NAME "libwebp" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libwebp 0.5.1" +#define PACKAGE_STRING "libwebp 1.2.2" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "libwebp" /* Define to the home page for this package. */ -#define PACKAGE_URL "http://developers.google.com/speed/webp" +#define PACKAGE_URL "https://developers.google.com/speed/webp" /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.5.1" +#define PACKAGE_VERSION "1.2.2" /* Define to necessary symbol if this constant uses a non-standard name on your system. */ /* #undef PTHREAD_CREATE_JOINABLE */ -/* Define to 1 if you have the ANSI C header files. */ +/* Define to 1 if all of the C90 standard headers exist (not just the ones + required in a freestanding environment). This macro is provided for + backward compatibility; new code need not use it. */ #define STDC_HEADERS 1 /* Version number of package */ -#define VERSION "0.5.1" - -/* Enable experimental code */ -/* #undef WEBP_EXPERIMENTAL_FEATURES */ - -/* Set to 1 if AVX2 is supported */ -#define WEBP_HAVE_AVX2 1 +#define VERSION "1.2.2" /* Set to 1 if GIF library is installed */ #define WEBP_HAVE_GIF 1 /* Set to 1 if OpenGL is supported */ -/* #undef WEBP_HAVE_GL */ +#define WEBP_HAVE_GL 1 /* Set to 1 if JPEG library is installed */ #define WEBP_HAVE_JPEG 1 @@ -122,6 +121,9 @@ /* Set to 1 if PNG library is installed */ #define WEBP_HAVE_PNG 1 +/* Set to 1 if SDL library is installed */ +#define WEBP_HAVE_SDL 1 + /* Set to 1 if SSE2 is supported */ #define WEBP_HAVE_SSE2 1 @@ -131,6 +133,9 @@ /* Set to 1 if TIFF library is installed */ #define WEBP_HAVE_TIFF 1 +/* Enable near lossless encoding */ +#define WEBP_NEAR_LOSSLESS 1 + /* Undefine this to disable thread support. */ #define WEBP_USE_THREAD 1 |