2015-12-19 07:24:35 +00:00
|
|
|
bin_PROGRAMS = kvazaar
|
|
|
|
lib_LTLIBRARIES = libkvazaar.la
|
|
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
extras/getopt.c \
|
|
|
|
extras/getopt.h
|
|
|
|
|
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
nodist_pkgconfig_DATA = kvazaar.pc
|
|
|
|
|
|
|
|
|
|
|
|
include_HEADERS = \
|
2016-01-19 18:15:31 +00:00
|
|
|
kvazaar.h
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
extras/x86inc.asm
|
|
|
|
|
2016-01-20 08:59:15 +00:00
|
|
|
noinst_LTLIBRARIES = \
|
|
|
|
libaltivec.la \
|
|
|
|
libavx2.la \
|
|
|
|
libsse2.la \
|
|
|
|
libsse41.la
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
kvazaar_SOURCES = \
|
|
|
|
encmain.c \
|
|
|
|
cli.h \
|
|
|
|
cli.c \
|
|
|
|
yuv_io.c \
|
|
|
|
yuv_io.h
|
|
|
|
kvazaar_LDADD = libkvazaar.la $(LIBS)
|
|
|
|
|
2016-03-09 12:44:48 +00:00
|
|
|
kvazaar_CPPFLAGS = -DKVZ_VERSION="`$(srcdir)/../tools/version.sh`"
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
libkvazaar_la_SOURCES = \
|
|
|
|
bitstream.c \
|
|
|
|
bitstream.h \
|
|
|
|
cabac.c \
|
|
|
|
cabac.h \
|
|
|
|
checkpoint.c \
|
|
|
|
checkpoint.h \
|
2016-01-25 10:08:27 +00:00
|
|
|
cfg.c \
|
|
|
|
cfg.h \
|
2015-12-19 07:24:35 +00:00
|
|
|
context.c \
|
|
|
|
context.h \
|
|
|
|
cu.c \
|
|
|
|
cu.h \
|
|
|
|
encoder.c \
|
|
|
|
encoder.h \
|
|
|
|
encoderstate.c \
|
|
|
|
encoderstate.h \
|
|
|
|
encoder_state-bitstream.c \
|
|
|
|
encoder_state-bitstream.h \
|
|
|
|
encoder_state-ctors_dtors.c \
|
|
|
|
encoder_state-ctors_dtors.h \
|
|
|
|
encoder_state-geometry.c \
|
|
|
|
encoder_state-geometry.h \
|
|
|
|
filter.c \
|
|
|
|
filter.h \
|
|
|
|
global.h \
|
|
|
|
image.c \
|
|
|
|
image.h \
|
|
|
|
imagelist.c \
|
|
|
|
imagelist.h \
|
|
|
|
input_frame_buffer.c \
|
|
|
|
input_frame_buffer.h \
|
|
|
|
inter.c \
|
|
|
|
inter.h \
|
|
|
|
intra.c \
|
|
|
|
intra.h \
|
|
|
|
kvazaar.c \
|
|
|
|
kvazaar_internal.h \
|
2016-03-09 14:55:26 +00:00
|
|
|
kvz_math.h \
|
2015-12-19 07:24:35 +00:00
|
|
|
nal.c \
|
|
|
|
nal.h \
|
|
|
|
rate_control.c \
|
|
|
|
rate_control.h \
|
|
|
|
rdo.c \
|
|
|
|
rdo.h \
|
|
|
|
sao.c \
|
|
|
|
sao.h \
|
|
|
|
scalinglist.c \
|
|
|
|
scalinglist.h \
|
|
|
|
search.c \
|
|
|
|
search.h \
|
|
|
|
search_inter.c \
|
|
|
|
search_inter.h \
|
|
|
|
search_intra.c \
|
|
|
|
search_intra.h \
|
|
|
|
tables.c \
|
|
|
|
tables.h \
|
|
|
|
threadqueue.c \
|
|
|
|
threadqueue.h \
|
|
|
|
threads.h \
|
|
|
|
transform.c \
|
|
|
|
transform.h \
|
|
|
|
videoframe.c \
|
|
|
|
videoframe.h \
|
|
|
|
strategies/generic/dct-generic.c \
|
|
|
|
strategies/generic/dct-generic.h \
|
|
|
|
strategies/generic/intra-generic.c \
|
|
|
|
strategies/generic/intra-generic.h \
|
|
|
|
strategies/generic/ipol-generic.c \
|
|
|
|
strategies/generic/ipol-generic.h \
|
|
|
|
strategies/generic/nal-generic.c \
|
|
|
|
strategies/generic/nal-generic.h \
|
|
|
|
strategies/generic/picture-generic.c \
|
|
|
|
strategies/generic/picture-generic.h \
|
|
|
|
strategies/generic/quant-generic.c \
|
|
|
|
strategies/generic/quant-generic.h \
|
2016-02-24 14:53:07 +00:00
|
|
|
strategies/generic/sao-generic.c \
|
|
|
|
strategies/generic/sao-generic.h \
|
2015-12-19 07:24:35 +00:00
|
|
|
strategies/strategies-common.h \
|
|
|
|
strategies/strategies-dct.c \
|
|
|
|
strategies/strategies-dct.h \
|
|
|
|
strategies/strategies-intra.c \
|
|
|
|
strategies/strategies-intra.h \
|
|
|
|
strategies/strategies-ipol.c \
|
|
|
|
strategies/strategies-ipol.h \
|
|
|
|
strategies/strategies-nal.c \
|
|
|
|
strategies/strategies-nal.h \
|
|
|
|
strategies/strategies-picture.c \
|
|
|
|
strategies/strategies-picture.h \
|
|
|
|
strategies/strategies-quant.c \
|
|
|
|
strategies/strategies-quant.h \
|
2016-02-24 14:53:07 +00:00
|
|
|
strategies/strategies-sao.c \
|
|
|
|
strategies/strategies-sao.h \
|
2015-12-19 07:24:35 +00:00
|
|
|
strategies/x86_asm/picture-x86-asm.c \
|
|
|
|
strategies/x86_asm/picture-x86-asm.h \
|
|
|
|
strategyselector.c \
|
2016-03-17 16:12:43 +00:00
|
|
|
strategyselector.h \
|
|
|
|
extras/libmd5.c \
|
|
|
|
extras/libmd5.h
|
2015-12-19 07:24:35 +00:00
|
|
|
|
2016-03-17 14:20:57 +00:00
|
|
|
libkvazaar_la_CFLAGS =
|
|
|
|
|
2016-01-20 08:59:15 +00:00
|
|
|
libkvazaar_la_LIBADD = \
|
|
|
|
libaltivec.la \
|
|
|
|
libavx2.la \
|
|
|
|
libsse2.la \
|
|
|
|
libsse41.la
|
|
|
|
|
|
|
|
libkvazaar_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-number $(KVZ_API_VERSION)
|
|
|
|
|
|
|
|
|
|
|
|
libaltivec_la_SOURCES = \
|
|
|
|
strategies/altivec/picture-altivec.c \
|
|
|
|
strategies/altivec/picture-altivec.h
|
|
|
|
|
|
|
|
libavx2_la_SOURCES = \
|
2015-12-19 07:24:35 +00:00
|
|
|
strategies/avx2/dct-avx2.c \
|
|
|
|
strategies/avx2/dct-avx2.h \
|
|
|
|
strategies/avx2/intra-avx2.c \
|
|
|
|
strategies/avx2/intra-avx2.h \
|
|
|
|
strategies/avx2/ipol-avx2.c \
|
|
|
|
strategies/avx2/ipol-avx2.h \
|
|
|
|
strategies/avx2/picture-avx2.c \
|
|
|
|
strategies/avx2/picture-avx2.h \
|
|
|
|
strategies/avx2/quant-avx2.c \
|
2016-02-24 15:02:50 +00:00
|
|
|
strategies/avx2/quant-avx2.h \
|
|
|
|
strategies/avx2/sao-avx2.c \
|
|
|
|
strategies/avx2/sao-avx2.h
|
|
|
|
|
2015-12-19 07:24:35 +00:00
|
|
|
|
2016-01-20 08:59:15 +00:00
|
|
|
libsse2_la_SOURCES = \
|
|
|
|
strategies/sse2/picture-sse2.c \
|
|
|
|
strategies/sse2/picture-sse2.h
|
2015-12-19 07:24:35 +00:00
|
|
|
|
2016-01-20 08:59:15 +00:00
|
|
|
libsse41_la_SOURCES = \
|
|
|
|
strategies/sse41/picture-sse41.c \
|
|
|
|
strategies/sse41/picture-sse41.h
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
if HAVE_PPC
|
2016-01-20 08:59:15 +00:00
|
|
|
libaltivec_la_CFLAGS = -maltivec
|
|
|
|
endif
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
if HAVE_X86
|
2016-01-20 16:19:05 +00:00
|
|
|
|
|
|
|
if HAVE_AVX2
|
2016-01-20 08:59:15 +00:00
|
|
|
libavx2_la_CFLAGS = -mavx2
|
2016-01-20 16:19:05 +00:00
|
|
|
endif
|
|
|
|
if HAVE_SSE4_1
|
2016-01-20 08:59:15 +00:00
|
|
|
libsse41_la_CFLAGS = -msse4.1
|
2016-01-20 16:19:05 +00:00
|
|
|
endif
|
|
|
|
if HAVE_SSE2
|
|
|
|
libsse2_la_CFLAGS = -msse2
|
|
|
|
endif
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
if ENABLE_ASM
|
2016-01-20 08:59:15 +00:00
|
|
|
noinst_LTLIBRARIES += libasm.la
|
|
|
|
libkvazaar_la_LIBADD += libasm.la
|
|
|
|
libasm_la_SOURCES = \
|
2015-12-19 07:24:35 +00:00
|
|
|
strategies/x86_asm/picture-x86-asm-sad.asm \
|
|
|
|
strategies/x86_asm/picture-x86-asm-sad.h \
|
|
|
|
strategies/x86_asm/picture-x86-asm-satd.asm \
|
|
|
|
strategies/x86_asm/picture-x86-asm-satd.h
|
2016-03-17 14:20:57 +00:00
|
|
|
libkvazaar_la_CFLAGS += -DKVZ_COMPILE_ASM
|
2015-12-19 07:24:35 +00:00
|
|
|
|
|
|
|
strategies/x86_asm/picture-x86-asm-sad.lo: strategies/x86_asm/picture-x86-asm-sad.asm
|
|
|
|
strategies/x86_asm/picture-x86-asm-satd.lo: strategies/x86_asm/picture-x86-asm-satd.asm
|
|
|
|
endif #ENABLE_ASM
|
|
|
|
endif #HAVE_X86
|
|
|
|
|
|
|
|
|
|
|
|
yasm_verbose = $(yasm_verbose_@AM_V@)
|
|
|
|
yasm_verbose_ = $(yasm_verbose_@AM_DEFAULT_V@)
|
|
|
|
yasm_verbose_0 = @echo " YASM " $@;
|
|
|
|
|
|
|
|
.asm.lo:
|
2016-06-06 12:42:26 +00:00
|
|
|
$(yasm_verbose)$(LIBTOOL) --mode=compile --tag=CC $(YASM) -I$(srcdir)/extras $(ASFLAGS) $< -o $@ -prefer-non-pic 1>/dev/null
|
2015-12-19 07:24:35 +00:00
|
|
|
|