2016-01-12 21:54:09 +00:00
|
|
|
//
|
|
|
|
// Speaker.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 12/01/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Speaker_hpp
|
|
|
|
#define Speaker_hpp
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2016-01-14 02:03:43 +00:00
|
|
|
#include <stdio.h>
|
2016-01-18 19:50:19 +00:00
|
|
|
#include <time.h>
|
2016-01-13 03:19:56 +00:00
|
|
|
#include "../SignalProcessing/Stepper.hpp"
|
2016-03-16 01:34:00 +00:00
|
|
|
#include "../SignalProcessing/FIRFilter.hpp"
|
2016-01-12 21:54:09 +00:00
|
|
|
|
2016-01-14 02:03:43 +00:00
|
|
|
namespace Outputs {
|
2016-01-12 21:54:09 +00:00
|
|
|
|
2016-01-14 02:03:43 +00:00
|
|
|
class Speaker {
|
2016-01-12 21:54:09 +00:00
|
|
|
public:
|
2016-01-14 02:03:43 +00:00
|
|
|
class Delegate {
|
|
|
|
public:
|
2016-01-15 01:33:22 +00:00
|
|
|
virtual void speaker_did_complete_samples(Speaker *speaker, const int16_t *buffer, int buffer_size) = 0;
|
2016-01-14 02:03:43 +00:00
|
|
|
};
|
2016-01-12 21:54:09 +00:00
|
|
|
|
2016-06-01 01:23:44 +00:00
|
|
|
int get_ideal_clock_rate_in_range(int minimum, int maximum)
|
|
|
|
{
|
|
|
|
// return exactly the input rate if possible
|
|
|
|
if(_input_cycles_per_second >= minimum && _input_cycles_per_second <= maximum) return _input_cycles_per_second;
|
|
|
|
|
|
|
|
// if the input rate is lower, return the minimum
|
|
|
|
if(_input_cycles_per_second < minimum) return minimum;
|
|
|
|
|
|
|
|
// otherwise, return the maximum
|
|
|
|
return maximum;
|
|
|
|
}
|
|
|
|
|
2016-01-13 03:19:56 +00:00
|
|
|
void set_output_rate(int cycles_per_second, int buffer_size)
|
|
|
|
{
|
|
|
|
_output_cycles_per_second = cycles_per_second;
|
|
|
|
if(_buffer_size != buffer_size)
|
|
|
|
{
|
2016-03-16 01:34:00 +00:00
|
|
|
_buffer_in_progress = std::unique_ptr<int16_t>(new int16_t[buffer_size]);
|
2016-01-13 03:19:56 +00:00
|
|
|
_buffer_size = buffer_size;
|
|
|
|
}
|
|
|
|
set_needs_updated_filter_coefficients();
|
|
|
|
}
|
2016-01-12 21:54:09 +00:00
|
|
|
|
2016-04-18 00:45:57 +00:00
|
|
|
void set_output_quality(int number_of_taps)
|
|
|
|
{
|
|
|
|
_requested_number_of_taps = number_of_taps;
|
|
|
|
set_needs_updated_filter_coefficients();
|
|
|
|
}
|
2016-01-13 03:19:56 +00:00
|
|
|
|
|
|
|
void set_delegate(Delegate *delegate)
|
|
|
|
{
|
|
|
|
_delegate = delegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_input_rate(int cycles_per_second)
|
|
|
|
{
|
|
|
|
_input_cycles_per_second = cycles_per_second;
|
|
|
|
set_needs_updated_filter_coefficients();
|
|
|
|
}
|
|
|
|
|
2016-04-18 00:45:57 +00:00
|
|
|
Speaker() : _buffer_in_progress_pointer(0), _requested_number_of_taps(0) {}
|
2016-01-15 02:27:02 +00:00
|
|
|
|
2016-01-14 02:03:43 +00:00
|
|
|
protected:
|
2016-03-16 01:34:00 +00:00
|
|
|
std::unique_ptr<int16_t> _buffer_in_progress;
|
2016-01-13 03:19:56 +00:00
|
|
|
int _buffer_size;
|
|
|
|
int _buffer_in_progress_pointer;
|
2016-04-18 00:45:57 +00:00
|
|
|
int _number_of_taps, _requested_number_of_taps;
|
2016-01-13 03:19:56 +00:00
|
|
|
bool _coefficients_are_dirty;
|
|
|
|
Delegate *_delegate;
|
|
|
|
|
|
|
|
int _input_cycles_per_second, _output_cycles_per_second;
|
|
|
|
|
|
|
|
void set_needs_updated_filter_coefficients()
|
|
|
|
{
|
|
|
|
_coefficients_are_dirty = true;
|
|
|
|
}
|
2016-01-14 02:03:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class T> class Filter: public Speaker {
|
|
|
|
public:
|
2016-04-14 02:31:59 +00:00
|
|
|
void run_for_cycles(unsigned int input_cycles)
|
2016-01-14 02:03:43 +00:00
|
|
|
{
|
|
|
|
if(_coefficients_are_dirty) update_filter_coefficients();
|
|
|
|
|
2016-06-01 23:53:16 +00:00
|
|
|
// if input and output rates exactly match, just accumulate results and pass on
|
|
|
|
if(_input_cycles_per_second == _output_cycles_per_second)
|
2016-01-14 02:03:43 +00:00
|
|
|
{
|
2016-06-01 23:53:16 +00:00
|
|
|
while(input_cycles)
|
2016-01-14 03:02:39 +00:00
|
|
|
{
|
2016-06-01 23:53:16 +00:00
|
|
|
unsigned int cycles_to_read = (unsigned int)(_buffer_size - _buffer_in_progress_pointer);
|
|
|
|
if(cycles_to_read > input_cycles) cycles_to_read = input_cycles;
|
|
|
|
|
|
|
|
static_cast<T *>(this)->get_samples(cycles_to_read, &_buffer_in_progress.get()[_buffer_in_progress_pointer]);
|
|
|
|
_buffer_in_progress_pointer += cycles_to_read;
|
2016-03-16 03:37:35 +00:00
|
|
|
|
|
|
|
// announce to delegate if full
|
|
|
|
if(_buffer_in_progress_pointer == _buffer_size)
|
2016-01-14 03:02:39 +00:00
|
|
|
{
|
2016-03-16 03:37:35 +00:00
|
|
|
_buffer_in_progress_pointer = 0;
|
|
|
|
if(_delegate)
|
|
|
|
{
|
|
|
|
_delegate->speaker_did_complete_samples(this, _buffer_in_progress.get(), _buffer_size);
|
|
|
|
}
|
2016-01-14 03:02:39 +00:00
|
|
|
}
|
|
|
|
|
2016-06-01 23:53:16 +00:00
|
|
|
input_cycles -= cycles_to_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the output rate is less than the input rate, use the filter
|
|
|
|
if(_input_cycles_per_second > _output_cycles_per_second)
|
|
|
|
{
|
|
|
|
while(input_cycles)
|
|
|
|
{
|
|
|
|
unsigned int cycles_to_read = (unsigned int)std::min((int)input_cycles, _number_of_taps - _input_buffer_depth);
|
|
|
|
static_cast<T *>(this)->get_samples(cycles_to_read, &_input_buffer.get()[_input_buffer_depth]);
|
|
|
|
input_cycles -= cycles_to_read;
|
|
|
|
_input_buffer_depth += cycles_to_read;
|
|
|
|
|
|
|
|
if(_input_buffer_depth == _number_of_taps)
|
2016-03-17 00:38:17 +00:00
|
|
|
{
|
2016-06-01 23:53:16 +00:00
|
|
|
_buffer_in_progress.get()[_buffer_in_progress_pointer] = _filter->apply(_input_buffer.get());
|
|
|
|
_buffer_in_progress_pointer++;
|
|
|
|
|
|
|
|
// announce to delegate if full
|
|
|
|
if(_buffer_in_progress_pointer == _buffer_size)
|
|
|
|
{
|
|
|
|
_buffer_in_progress_pointer = 0;
|
|
|
|
if(_delegate)
|
|
|
|
{
|
|
|
|
_delegate->speaker_did_complete_samples(this, _buffer_in_progress.get(), _buffer_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the next loop around is going to reuse some of the samples just collected, use a memmove to
|
|
|
|
// preserve them in the correct locations (TODO: use a longer buffer to fix that) and don't skip
|
|
|
|
// anything. Otherwise skip as required to get to the next sample batch and don't expect to reuse.
|
|
|
|
uint64_t steps = _stepper->step();
|
|
|
|
if(steps < _number_of_taps)
|
|
|
|
{
|
|
|
|
int16_t *input_buffer = _input_buffer.get();
|
|
|
|
memmove(input_buffer, &input_buffer[steps], sizeof(int16_t) * ((size_t)_number_of_taps - (size_t)steps));
|
|
|
|
_input_buffer_depth -= steps;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(steps > _number_of_taps)
|
|
|
|
static_cast<T *>(this)->skip_samples((unsigned int)steps - (unsigned int)_number_of_taps);
|
|
|
|
_input_buffer_depth = 0;
|
|
|
|
}
|
2016-03-17 00:38:17 +00:00
|
|
|
}
|
2016-03-16 03:37:35 +00:00
|
|
|
}
|
2016-06-01 23:53:16 +00:00
|
|
|
|
|
|
|
return;
|
2016-01-14 02:03:43 +00:00
|
|
|
}
|
2016-06-01 23:53:16 +00:00
|
|
|
|
|
|
|
// TODO: input rate is less than output rate
|
2016-01-14 02:03:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-03-16 01:34:00 +00:00
|
|
|
std::unique_ptr<SignalProcessing::Stepper> _stepper;
|
|
|
|
std::unique_ptr<SignalProcessing::FIRFilter> _filter;
|
2016-03-16 03:37:35 +00:00
|
|
|
|
|
|
|
std::unique_ptr<int16_t> _input_buffer;
|
|
|
|
int _input_buffer_depth;
|
2016-01-13 03:19:56 +00:00
|
|
|
|
|
|
|
void update_filter_coefficients()
|
|
|
|
{
|
2016-04-18 00:45:57 +00:00
|
|
|
// make a guess at a good number of taps if this hasn't been provided explicitly
|
|
|
|
if(_requested_number_of_taps)
|
|
|
|
{
|
|
|
|
_number_of_taps = _requested_number_of_taps;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_number_of_taps = (_input_cycles_per_second + _output_cycles_per_second) / _output_cycles_per_second;
|
|
|
|
_number_of_taps *= 2;
|
|
|
|
_number_of_taps |= 1;
|
|
|
|
}
|
2016-04-18 00:43:20 +00:00
|
|
|
|
2016-01-13 03:19:56 +00:00
|
|
|
_coefficients_are_dirty = false;
|
|
|
|
_buffer_in_progress_pointer = 0;
|
|
|
|
|
2016-03-16 01:34:00 +00:00
|
|
|
_stepper = std::unique_ptr<SignalProcessing::Stepper>(new SignalProcessing::Stepper((uint64_t)_input_cycles_per_second, (uint64_t)_output_cycles_per_second));
|
|
|
|
_filter = std::unique_ptr<SignalProcessing::FIRFilter>(new SignalProcessing::FIRFilter((unsigned int)_number_of_taps, (unsigned int)_input_cycles_per_second, 0.0, (float)_output_cycles_per_second / 2.0f, SignalProcessing::FIRFilter::DefaultAttenuation));
|
2016-03-16 03:37:35 +00:00
|
|
|
|
|
|
|
_input_buffer = std::unique_ptr<int16_t>(new int16_t[_number_of_taps]);
|
|
|
|
_input_buffer_depth = 0;
|
2016-01-13 03:19:56 +00:00
|
|
|
}
|
2016-01-12 21:54:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Speaker_hpp */
|