mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
72 lines
2.7 KiB
C++
72 lines
2.7 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2018 F4HKW //
|
|
// for F4EXB / SDRAngel //
|
|
// using LeanSDR Framework (C) 2016 F4DAV //
|
|
// //
|
|
// 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 <QtPlugin>
|
|
#include <QAction>
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "datvdemodgui.h"
|
|
#include "datvdemodplugin.h"
|
|
|
|
const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
|
|
{
|
|
QString("DATV Demodulator"),
|
|
QString("3.2.0"),
|
|
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
true,
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
};
|
|
|
|
DATVDemodPlugin::DATVDemodPlugin(QObject* ptrParent) :
|
|
QObject(ptrParent),
|
|
m_ptrPluginAPI(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
const PluginDescriptor& DATVDemodPlugin::getPluginDescriptor() const
|
|
{
|
|
return m_ptrPluginDescriptor;
|
|
|
|
}
|
|
|
|
void DATVDemodPlugin::initPlugin(PluginAPI* ptrPluginAPI)
|
|
{
|
|
m_ptrPluginAPI = ptrPluginAPI;
|
|
|
|
// register DATV demodulator
|
|
m_ptrPluginAPI->registerRxChannel(DATVDemod::m_channelIdURI, DATVDemod::m_channelId, this);
|
|
}
|
|
|
|
PluginInstanceGUI* DATVDemodPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
|
{
|
|
return DATVDemodGUI::create(m_ptrPluginAPI, deviceUISet, rxChannel);
|
|
}
|
|
|
|
BasebandSampleSink* DATVDemodPlugin::createRxChannelBS(DeviceSourceAPI *deviceAPI)
|
|
{
|
|
return new DATVDemod(deviceAPI);
|
|
}
|
|
|
|
ChannelSinkAPI* DATVDemodPlugin::createRxChannelCS(DeviceSourceAPI *deviceAPI)
|
|
{
|
|
return new DATVDemod(deviceAPI);
|
|
}
|