Files

copied
Last update 6 years 1 month by Olivier Gillet
Filescloudsdsp
..
fx
pvoc
audio_buffer.h
correlator.cc
correlator.h
frame.h
grain.h
granular_processor.cc
granular_processor.h
granular_sample_player.h
looping_sample_player.h
mu_law.cc
mu_law.h
parameters.h
sample_rate_converter.h
window.h
wsola_sample_player.h
correlator.h
// Copyright 2014 Olivier Gillet. // // Author: Olivier Gillet (ol.gillet@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // // See http://creativecommons.org/licenses/MIT/ for more information. // // ----------------------------------------------------------------------------- // // Search for stretch/shift splicing points by maximizing correlation. // Correlation is computed by XOR-ing the bit sign of samples - this allows // 32 samples to be matched in one single XOR operation. #ifndef CLOUDS_DSP_CORRELATOR_H_ #define CLOUDS_DSP_CORRELATOR_H_ #include "stmlib/stmlib.h" namespace clouds { class Correlator { public: Correlator() { } ~Correlator() { } void Init(uint32_t* source, uint32_t* destination); void StartSearch(int32_t size, int32_t offset, int32_t increment); inline int32_t best_match() const { return offset_ + (best_match_ * (increment_ >> 4) >> 12); } inline void EvaluateSomeCandidates() { size_t num_candidates = (size_ >> 2) + 16; while (num_candidates) { EvaluateNextCandidate(); --num_candidates; } } void EvaluateNextCandidate(); inline uint32_t* source() { return source_; } inline uint32_t* destination() { return destination_; } inline int32_t candidate() { return candidate_; } inline bool done() { return done_; } private: uint32_t* source_; uint32_t* destination_; int32_t offset_; int32_t increment_; int32_t size_; int32_t candidate_; uint32_t best_score_; int32_t best_match_; int32_t trace_; bool done_; DISALLOW_COPY_AND_ASSIGN(Correlator); }; } // namespace clouds #endif // CLOUDS_DSP_CORRELATOR_H_
Report a bug