Skip to content
Snippets Groups Projects
Commit e79abd22 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #9782: initialize dcblockers vars in constructor

parent 77da187a
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,9 @@
#include "dcblocker.h"
DcBlocker::DcBlocker() : y_(0), x_(0), xm1_(0), ym1_(0)
{}
void DcBlocker::reset()
{
y_ = 0;
......
......@@ -35,6 +35,7 @@
class DcBlocker {
public:
DcBlocker();
void reset();
void process(SFLDataFormat *out, SFLDataFormat *in, int samples);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment