1URL: http://review.webmproject.org/gitweb?p=libwebp.git 2Version: 43/1443/1 3License: Google BSD like 4 5Local modifications: 6- Rewrite Android.mk to remove duplicate definitions and set module name 7 in a consistent way with other external libraries 8- Move public headers from src/webp to include/webp, so path to headers 9 may be appended into CFLAGS without risk for other private headers 10 (e.g. bits.h) to leak into 11- Sync-patch with libwebp ver 0.1.2 12- Removed Build files necessary for building via autoconf/automake tools 13 These files are not required to build via Android.mk 14 - Makefile.am Makefile.vc Makefile.in 15 - config.h.in configure config.guess config.sub configure.ac 16 - autogen.sh install-sh missing depcomp ltmain.sh aclocal.m4 17- Added WebP Encoder (ver 0.1.2) as well 18 - Removed some more unused Makefile.am & Makefile.in 19 - Added Android.mk to encoder & decoder code levels. 20- Synced the WebP Code (Encoder/Decoder) with the head change#Ia53f845b 21 - Added three color-spaces viz ARGB_8888, RGBA_4444, RGB_565 22 supported by Android. 23- Fixed the Endian'ness bug for Color-Configs (RGB_565 & ARGB_4444). 24 The fix is similar to jpeglib handling for JCS_RGB_565 & JCS_RGBA_8888 25 color configs. Added the code under "ANDROID_WEBP_RGB" flag. 26- Sync-patch with libwebp ver 0.2.0 (head change#I3da2063b). 27 28The Android.mk file creates WebP Decoder and Encoder static libraries which 29can be added to any application by Adding to LOCAL_STATIC_LIBRARIES 30libwebp-decode libwebp-encode: 31 32 LOCAL_STATIC_LIBRARIES += libwebp-decode libwebp-encode 33 34