create a libwebputils under src/utils

with bit_reader bit_writer and thread for now.

Change-Id: If961933fcfc43e60220913fe4d527230ba8f46bb
This commit is contained in:
Pascal Massimino
2011-09-07 09:26:35 +00:00
committed by James Zern
parent ee697d9fc9
commit b112e83647
16 changed files with 76 additions and 53 deletions

View File

@ -3,7 +3,6 @@ LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
src/dec/alpha.c \
src/dec/bits.c \
src/dec/dsp.c \
src/dec/frame.c \
src/dec/idec.c \
@ -14,7 +13,6 @@ LOCAL_SRC_FILES := \
src/dec/webp.c \
src/dec/io.c \
src/dec/buffer.c \
src/dec/thread.c \
src/dsp/yuv.c \
src/dsp/upsampling.c \
src/dsp/cpu.c \
@ -22,7 +20,6 @@ LOCAL_SRC_FILES := \
src/dsp/enc.c \
src/enc/alpha.c \
src/enc/analysis.c \
src/enc/bit_writer.c \
src/enc/config.c \
src/enc/dsp.c \
src/enc/filter.c \
@ -34,6 +31,9 @@ LOCAL_SRC_FILES := \
src/enc/syntax.c \
src/enc/tree.c \
src/enc/webpenc.c
src/utils/bit_reader.c \
src/utils/bit_writer.c \
src/utils/thread.c \
LOCAL_CFLAGS := -Wall -DANDROID -DHAVE_MALLOC_H -DHAVE_PTHREAD -DWEBP_USE_THREAD \
-finline-functions -frename-registers -ffast-math \