X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile.in;h=a08005acdbe5c37620e617ab97832fd54ad25645;hp=21f415a5d0924f7e7a0a39a9b54e3b7a8c9a5742;hb=6f1efa8348a90a393187c12d70fd10d81bbd2c99;hpb=c5285a66dd15495df93d5709dd09d4977f428835 diff --git a/Makefile.in b/Makefile.in index 21f415a..a08005a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -6,8 +6,8 @@ GTEST_DIR ?= /usr/src/gtest # strive towards having a rock-stable ABI, but at least the soversion will increase # whenever it breaks, so that you will not have silent failures, and distribution package # management can run its course. -movit_ltversion = 2:2:0 -movit_version = 1.1.2 +movit_ltversion = 2:3:0 +movit_version = 1.1.3 prefix = @prefix@ exec_prefix = @exec_prefix@ @@ -47,6 +47,7 @@ DEMO_OBJS=demo.o # Inputs. TESTED_INPUTS = flat_input TESTED_INPUTS += ycbcr_input +TESTED_INPUTS += ycbcr_422interleaved_input INPUTS = $(TESTED_INPUTS) $(UNTESTED_INPUTS) @@ -75,6 +76,7 @@ TESTED_EFFECTS += slice_effect TESTED_EFFECTS += complex_modulate_effect TESTED_EFFECTS += luma_mix_effect TESTED_EFFECTS += fft_convolution_effect +TESTED_EFFECTS += ycbcr_conversion_effect UNTESTED_EFFECTS = sandbox_effect UNTESTED_EFFECTS += mirror_effect @@ -87,7 +89,7 @@ EFFECTS = $(TESTED_EFFECTS) $(UNTESTED_EFFECTS) # Unit tests. TESTS=effect_chain_test fp16_test $(TESTED_INPUTS:=_test) $(TESTED_EFFECTS:=_test) -LIB_OBJS=effect_util.o util.o widgets.o effect.o effect_chain.o init.o resource_pool.o fp16.o $(INPUTS:=.o) $(EFFECTS:=.o) +LIB_OBJS=effect_util.o util.o widgets.o effect.o effect_chain.o init.o resource_pool.o fp16.o ycbcr.o $(INPUTS:=.o) $(EFFECTS:=.o) # Default target: all: libmovit.la $(TESTS) @@ -159,7 +161,7 @@ coverage: @exit 1 endif -HDRS = effect_chain.h effect_util.h effect.h input.h image_format.h init.h util.h defs.h resource_pool.h fp16.h +HDRS = effect_chain.h effect_util.h effect.h input.h image_format.h init.h util.h defs.h resource_pool.h fp16.h ycbcr.h version.h HDRS += $(INPUTS:=.h) HDRS += $(EFFECTS:=.h)