annotate vamp-client/qt/test.pro @ 186:52322dde68ea

Fix erroneous logic for handling step and block size in prior commit The earlier change had a logical misconception. If PluginStub is receiving the correct step and block size back from the configure call, the plugin on the server side must have already been successfully initialised, as the step and block size are only returned in a successful configure response. This means the test for a failed initialise and redo with the correct parameters must be done on the server side (in LoaderRequests) not the client. The client has a more complicated job, which is to notice that a *successful* configure had returned different framing parameters from those passed to the initialise call, and to pretend that it had actually failed until the host called again with the correct parameters. We definitely need tests for this!
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 06 Feb 2017 16:44:33 +0000
parents 7a113d07cd55
children c67a0a945b6b
rev   line source
cannam@150 1
cannam@150 2 TEMPLATE = app
cannam@150 3
cannam@150 4 CONFIG += qt stl c++11 exceptions console warn_on
cannam@150 5 QT -= xml network gui widgets
cannam@150 6
cannam@150 7 !win32 {
cannam@150 8 QMAKE_CXXFLAGS += -Werror
cannam@150 9 }
cannam@150 10
cannam@150 11 OBJECTS_DIR = ../o
cannam@150 12 MOC_DIR = ../o
cannam@150 13
cannam@150 14 VAMPSDK_DIR = ../../../vamp-plugin-sdk
cannam@150 15 PIPER_DIR = ../../../piper
cannam@150 16
cannam@150 17 QMAKE_CXXFLAGS = -I$$VAMPSDK_DIR -I.. -I../..
cannam@150 18
cannam@161 19 LIBS += -L/usr/local/lib -lcapnp -lkj -L$$VAMPSDK_DIR -lvamp-hostsdk
cannam@150 20
cannam@150 21 # Using the "console" CONFIG flag above should ensure this happens for
cannam@150 22 # normal Windows builds, but this may be necessary when cross-compiling
cannam@150 23 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console
cannam@150 24
cannam@150 25 macx*: CONFIG -= app_bundle
cannam@150 26
cannam@150 27 TARGET = test
cannam@150 28
cannam@150 29 SOURCES += \
cannam@150 30 test.cpp \
cannam@150 31 ../../vamp-capnp/piper-capnp.cpp
cannam@150 32
cannam@150 33 HEADERS += \
cannam@150 34 ProcessQtTransport.h \
cannam@150 35 AutoPlugin.h \
cannam@150 36 ../CapnpRRClient.h \
cannam@150 37 ../Loader.h \
cannam@150 38 ../PluginClient.h \
cannam@150 39 ../PluginStub.h \
cannam@150 40 ../SynchronousTransport.h
cannam@150 41
cannam@150 42