mirror of
https://github.com/webmproject/libwebp.git
synced 2025-01-07 11:08:22 +01:00
0f4f721b12
expose the predictor array as function pointers instead of each individual sub-function + merged Average2() into ClampedAddSubtractHalf directly + unified the signature as "VP8LProcessBlueAndRedFunc" no speed diff observed Change-Id: Ic3c45dff11884a8330a9ad38c2c8e82491c6e044
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
noinst_LTLIBRARIES = libwebpdsp.la
|
|
|
|
if BUILD_LIBWEBPDECODER
|
|
noinst_LTLIBRARIES += libwebpdspdecode.la
|
|
endif
|
|
|
|
common_HEADERS = ../webp/types.h
|
|
commondir = $(includedir)/webp
|
|
|
|
COMMON_SOURCES =
|
|
COMMON_SOURCES += cpu.c
|
|
COMMON_SOURCES += dec.c
|
|
COMMON_SOURCES += dec_clip_tables.c
|
|
COMMON_SOURCES += dec_mips32.c
|
|
COMMON_SOURCES += dec_neon.c
|
|
COMMON_SOURCES += dec_sse2.c
|
|
COMMON_SOURCES += dsp.h
|
|
COMMON_SOURCES += lossless.c
|
|
COMMON_SOURCES += lossless_sse2.c
|
|
COMMON_SOURCES += lossless.h
|
|
COMMON_SOURCES += upsampling.c
|
|
COMMON_SOURCES += upsampling_mips32.c
|
|
COMMON_SOURCES += upsampling_neon.c
|
|
COMMON_SOURCES += upsampling_sse2.c
|
|
COMMON_SOURCES += yuv.c
|
|
COMMON_SOURCES += yuv.h
|
|
|
|
ENC_SOURCES =
|
|
ENC_SOURCES += enc.c
|
|
ENC_SOURCES += enc_neon.c
|
|
ENC_SOURCES += enc_sse2.c
|
|
|
|
libwebpdsp_la_SOURCES = $(COMMON_SOURCES) $(ENC_SOURCES)
|
|
|
|
noinst_HEADERS =
|
|
noinst_HEADERS += ../dec/decode_vp8.h
|
|
noinst_HEADERS += ../webp/decode.h
|
|
|
|
libwebpdsp_la_LDFLAGS = -lm
|
|
libwebpdsp_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE) $(USE_SWAP_16BIT_CSP)
|
|
|
|
if BUILD_LIBWEBPDECODER
|
|
libwebpdspdecode_la_SOURCES = $(COMMON_SOURCES)
|
|
|
|
libwebpdspdecode_la_LDFLAGS = $(libwebpdsp_la_LDFLAGS)
|
|
libwebpdspdecode_la_CPPFLAGS = $(libwebpdsp_la_CPPFLAGS)
|
|
endif
|