X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile.in;h=53eb6ffc1611a404a632cc6b68a3c9bd0c5f98eb;hp=5cb7fa9b127b53fbc84af13efd0ec5c3bb1a604d;hb=80fc4a6e806e5638ae050c3020962137ca5fd76b;hpb=b757b4f1ca57c6dcabfe4ad696a2b887544d1a71 diff --git a/Makefile.in b/Makefile.in index 5cb7fa9..53eb6ff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 HDRS += $(INPUTS:=.h) HDRS += $(EFFECTS:=.h)