# HG changeset patch # User Chris Cannam # Date 1473689868 -3600 # Node ID fa2edfabf829b25e36c3c11b73f9a0a8c633ea54 # Parent 6fe9f501050548b16b3bb039b3d431bcf0f1ae77 Backed out changeset cc333241cc8c diff -r 6fe9f5010505 -r fa2edfabf829 json/VampJson.h --- a/json/VampJson.h Mon Sep 12 15:17:35 2016 +0100 +++ b/json/VampJson.h Mon Sep 12 15:17:48 2016 +0100 @@ -49,8 +49,6 @@ #include "bits/PluginHandleMapper.h" #include "bits/RequestResponseType.h" -#include - namespace vampipe { /** @@ -319,35 +317,22 @@ static std::string fromFloatBuffer(const float *buffer, size_t nfloats) { - static std::chrono::nanoseconds total; - auto t0 = std::chrono::high_resolution_clock::now(); // must use char pointers, otherwise the converter will only // encode every 4th byte (as it will count up in float* steps) const char *start = reinterpret_cast(buffer); const char *end = reinterpret_cast(buffer + nfloats); std::string encoded; - encoded.reserve(16 * nfloats / 3); bn::encode_b64(start, end, back_inserter(encoded)); - auto t1 = std::chrono::high_resolution_clock::now(); - total += std::chrono::duration_cast(t1 - t0); -// std::cout << "encode: " << total.count()/1000000 << std::endl; return encoded; } static std::vector toFloatBuffer(std::string encoded) { - static std::chrono::nanoseconds total; - auto t0 = std::chrono::high_resolution_clock::now(); std::string decoded; - decoded.reserve(3 * encoded.size() / 4); bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded)); const float *buffer = reinterpret_cast(decoded.c_str()); size_t n = decoded.size() / sizeof(float); - std::vector result(buffer, buffer + n); - auto t1 = std::chrono::high_resolution_clock::now(); - total += std::chrono::duration_cast(t1 - t0); -// std::cout << "decode: " << total.count()/1000000 << std::endl; - return result; + return std::vector(buffer, buffer + n); } static json11::Json @@ -883,9 +868,6 @@ const PluginHandleMapper &mapper, BufferSerialisation &serialisation) { - static std::chrono::nanoseconds total; - auto t0 = std::chrono::high_resolution_clock::now(); - std::string err; if (!j.has_shape({ @@ -927,10 +909,6 @@ } } - auto t1 = std::chrono::high_resolution_clock::now(); - total += std::chrono::duration_cast(t1 - t0); -// std::cout << "parse: " << total.count()/1000000 << std::endl; - return r; }