2014-11-29 13:09:35 -05: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "fcdthread.h"
|
|
|
|
#include "dsp/samplefifo.h"
|
|
|
|
|
|
|
|
FCDThread::FCDThread(SampleFifo* sampleFifo, QObject* parent) :
|
|
|
|
QThread(parent),
|
2014-12-02 11:57:42 -05:00
|
|
|
fcd_handle(NULL),
|
2014-11-29 13:09:35 -05:00
|
|
|
m_running(false),
|
|
|
|
m_convertBuffer(BLOCKSIZE),
|
|
|
|
m_sampleFifo(sampleFifo)
|
|
|
|
{
|
|
|
|
start();
|
|
|
|
}
|
|
|
|
|
|
|
|
FCDThread::~FCDThread()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCDThread::stopWork()
|
|
|
|
{
|
|
|
|
m_running = false;
|
|
|
|
wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCDThread::run()
|
|
|
|
{
|
2014-11-30 16:59:06 -05:00
|
|
|
if ( !OpenSource("hw:CARD=V20") )
|
2014-11-29 13:09:35 -05:00
|
|
|
return;
|
2014-12-01 11:56:27 -05:00
|
|
|
// TODO: fallback to original fcd
|
2014-11-29 13:09:35 -05:00
|
|
|
|
2014-12-02 10:39:37 -05:00
|
|
|
m_running = true;
|
2014-11-29 13:09:35 -05:00
|
|
|
while(m_running) {
|
2014-12-01 11:56:27 -05:00
|
|
|
if ( work(BLOCKSIZE) < 0)
|
|
|
|
break;
|
2014-11-29 13:09:35 -05:00
|
|
|
}
|
|
|
|
CloseSource();
|
|
|
|
}
|
|
|
|
|