2017-02-23 02:18:56 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 F4HKW //
|
|
|
|
// for F4EXB / SDRAngel //
|
|
|
|
// //
|
|
|
|
// 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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2017-02-23 02:18:56 -05:00
|
|
|
// //
|
|
|
|
// 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 "atvdemodgui.h"
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "atvdemod.h"
|
2017-02-23 02:18:56 -05:00
|
|
|
#include "atvdemodplugin.h"
|
2019-08-11 05:35:53 -04:00
|
|
|
#include "atvdemodwebapiadapter.h"
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor =
|
|
|
|
{
|
2019-12-15 19:03:47 -05:00
|
|
|
ATVDemod::m_channelId,
|
2022-05-14 07:16:33 -04:00
|
|
|
QStringLiteral("ATV Demodulator"),
|
|
|
|
QStringLiteral("7.0.0"),
|
|
|
|
QStringLiteral("(c) F4HKW for F4EXB / SDRAngel"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2017-02-23 02:18:56 -05:00
|
|
|
true,
|
2022-05-14 07:16:33 -04:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2017-02-23 02:18:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
ATVDemodPlugin::ATVDemodPlugin(QObject* ptrParent) :
|
|
|
|
QObject(ptrParent),
|
|
|
|
m_ptrPluginAPI(NULL)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& ATVDemodPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_ptrPluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ATVDemodPlugin::initPlugin(PluginAPI* ptrPluginAPI)
|
|
|
|
{
|
|
|
|
m_ptrPluginAPI = ptrPluginAPI;
|
|
|
|
|
|
|
|
// register ATV demodulator
|
2017-11-22 19:19:32 -05:00
|
|
|
m_ptrPluginAPI->registerRxChannel(ATVDemod::m_channelIdURI, ATVDemod::m_channelId, this);
|
2017-02-23 02:18:56 -05:00
|
|
|
}
|
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
void ATVDemodPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
|
2017-02-23 02:18:56 -05:00
|
|
|
{
|
2020-10-01 16:52:27 -04:00
|
|
|
if (bs || cs)
|
|
|
|
{
|
|
|
|
ATVDemod *instance = new ATVDemod(deviceAPI);
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
if (bs) {
|
|
|
|
*bs = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs) {
|
|
|
|
*cs = instance;
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
|
|
|
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* ATVDemodPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2020-10-01 16:52:27 -04:00
|
|
|
return ATVDemodGUI::create(m_ptrPluginAPI, deviceUISet, rxChannel);
|
2017-12-17 17:15:42 -05:00
|
|
|
}
|
|
|
|
|
2019-08-11 05:35:53 -04:00
|
|
|
ChannelWebAPIAdapter* ATVDemodPlugin::createChannelWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new ATVDemodWebAPIAdapter();
|
|
|
|
}
|