comparison Makefile @ 185:3eb00e5c76c4

Pull step & block size out into framing struct, return in config Update the C++ code to separate out the framing parameters (step and block size) from the configuration structure into their own structure, as in the latest schema, and to return the accepted framing params in the configuration response. This also implies that the plugin stub (which adapts Piper API back to Vamp) makes a note of the returned values, making them available via its own getPreferredStep/BlockSize so that the host can retry the initialise call in the case where it failed for having the wrong values first time.
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 03 Feb 2017 16:23:21 +0000
parents bf8e3e7dd7de
children 70b0f1f9e039
comparison
equal deleted inserted replaced
184:150cfa0c71e1 185:3eb00e5c76c4
22 c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS) 22 c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS)
23 23
24 bin/piper-vamp-simple-server: o/simple-server.o o/json11.o o/piper.capnp.o 24 bin/piper-vamp-simple-server: o/simple-server.o o/json11.o o/piper.capnp.o
25 c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS) 25 c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS)
26 26
27 o/piper.capnp.o: vamp-capnp/piper.capnp.c++ vamp-capnp/piper.capnp.h 27 o/piper.capnp.o: vamp-capnp/piper.capnp.c++
28 c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@ 28 c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@
29
30 vamp-capnp/piper.capnp.h: vamp-capnp/piper.capnp.c++
31
32 vamp-capnp/piper.capnp.c++: $(PIPER_DIR)/capnp/piper.capnp
33 capnpc --src-prefix=$(PIPER_DIR)/capnp -oc++:vamp-capnp $<
29 34
30 o/json11.o: ext/json11/json11.cpp 35 o/json11.o: ext/json11/json11.cpp
31 c++ $(CXXFLAGS) -c $< -o $@ 36 c++ $(CXXFLAGS) -c $< -o $@
32 37
33 o/convert.o: vamp-server/convert.cpp vamp-capnp/piper.capnp.h vamp-capnp/VampnProto.h vamp-json/VampJson.h 38 o/convert.o: vamp-server/convert.cpp vamp-capnp/piper.capnp.h vamp-capnp/VampnProto.h vamp-json/VampJson.h