Skip to content

Commit c3f41cb

Browse files
committedSep 30, 2010
Initial commit
Change-Id: I4712afb3912625e7aaccfa5160dcf78ee252f159
0 parents  commit c3f41cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+46185
-0
lines changed
 

‎AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Main stuff:
2+
- Pascal Massimino (pascal.massimino@gmail.com)
3+

‎Android.mk

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
LOCAL_PATH:= $(call my-dir)
2+
3+
include $(CLEAR_VARS)
4+
LOCAL_SRC_FILES := \
5+
src/bits.c \
6+
src/dsp.c \
7+
src/frame.c \
8+
src/quant.c \
9+
src/tree.c \
10+
src/vp8.c \
11+
src/webp.c \
12+
src/yuv.c
13+
14+
LOCAL_CFLAGS := -Wall -DANDROID -DHAVE_MALLOC_H -DHAVE_PTHREAD \
15+
-finline-functions -frename-registers -ffast-math \
16+
-s -fomit-frame-pointer -std=gnu99
17+
18+
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
19+
20+
LOCAL_MODULE:= webp-decode
21+
22+
include $(BUILD_STATIC_LIBRARY)

0 commit comments

Comments
 (0)
Please sign in to comment.