mirror of
https://github.com/TomHarte/CLK.git
synced 2025-11-23 21:17:42 +00:00
Merge pull request #1636 from TomHarte/BiquadAttribution
Record references for the SID and biquad filter.
This commit is contained in:
@@ -8,6 +8,12 @@
|
|||||||
|
|
||||||
#include "SID.hpp"
|
#include "SID.hpp"
|
||||||
|
|
||||||
|
// Sources used:
|
||||||
|
//
|
||||||
|
// (1) SID Article v0.2 at https://github.com/ImreOlajos/SID-Article
|
||||||
|
// (2) Technical SID Information/Software stuff at http://www.sidmusic.org/sid/sidtech2.html
|
||||||
|
// (3) SID 6581/8580 (Sound Interface Device) reference at https://oxyron.de/html/registers_sid.html
|
||||||
|
|
||||||
using namespace MOS::SID;
|
using namespace MOS::SID;
|
||||||
|
|
||||||
SID::SID(Concurrency::AsyncTaskQueue<false> &audio_queue) :
|
SID::SID(Concurrency::AsyncTaskQueue<false> &audio_queue) :
|
||||||
|
|||||||
@@ -22,7 +22,8 @@ namespace SignalProcessing {
|
|||||||
|
|
||||||
It is used quite often in real designs, hence an implementation of this filter specifically.
|
It is used quite often in real designs, hence an implementation of this filter specifically.
|
||||||
|
|
||||||
(And the below is largely textbook; I can't claim any great knowledge)
|
... and the below is largely textbook; I can't claim any great knowledge. I am especially indebted to
|
||||||
|
the W3C Group's audio EQ cookbook at https://www.w3.org/TR/audio-eq-cookbook/ .
|
||||||
*/
|
*/
|
||||||
class BiquadFilter {
|
class BiquadFilter {
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user