From 2f2cde95bce634f26e43cdcb94cae7b27e378544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gl=C3=B6ckner?= Date: Mon, 9 May 2016 10:48:44 +0200 Subject: Initial Refactoring on PowerList --- src/powerlist.cc | 9 ++++++--- src/powerlist.h | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/powerlist.cc b/src/powerlist.cc index b502d03..bd8f447 100644 --- a/src/powerlist.cc +++ b/src/powerlist.cc @@ -48,7 +48,9 @@ unsigned int const MIN_SAMPLE_SET_SIZE = 26u; // Enable to calculate power on old samples without power attribute //#define AUTO_CALCULATE_POWER -unsigned int const LOAD_SIZE = 500u; +unsigned int const SIZE = 500u; + +float const THRES = 1.f; PowerList::PowerList(Random& rand) : rand(rand) @@ -82,7 +84,7 @@ Channel* PowerList::getMasterChannel() Channel* c = pair.first; AudioFile* af = pair.second; - af->load(LOAD_SIZE); + af->load(SIZE); float silence{0.f}; std::size_t silence_length{4u}; @@ -176,7 +178,8 @@ void PowerList::finalise() DEBUG(powerlist, "Calculating power\n"); float power{0.f}; - for(auto s = 0u; s < LOAD_SIZE && s < master->size; ++s) + + for(auto s = 0u; s < SIZE && s < master->size; ++s) { power += master->data[s] * master->data[s]; } diff --git a/src/powerlist.h b/src/powerlist.h index ff360b4..f194fb0 100644 --- a/src/powerlist.h +++ b/src/powerlist.h @@ -49,7 +49,7 @@ private: }; Random& rand; - + std::vector samples; float power_max; float power_min; -- cgit v1.2.3