2014-05-18 11:52:39 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-08-25 02:31:57 -04:00
|
|
|
#include "dsp/samplesource.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
SampleSource::SampleSource()
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2015-08-18 19:45:06 -04:00
|
|
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
2015-08-14 03:02:10 -04:00
|
|
|
SampleSource::~SampleSource()
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
|
|
|
}
|
2015-08-18 19:45:06 -04:00
|
|
|
|
|
|
|
void SampleSource::handleInputMessages()
|
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
2015-08-30 17:22:18 -04:00
|
|
|
while ((message = m_inputMessageQueue.pop()) != 0)
|
2015-08-18 19:45:06 -04:00
|
|
|
{
|
|
|
|
if (handleMessage(*message))
|
|
|
|
{
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|