sdrangel/plugins/channelrx/demodbfm/bfmplugin.cpp

97 lines
3.1 KiB
C++
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2015-2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
// Copyright (C) 2019 Davide Gerhard <rainbow@irh.it> //
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
// //
// 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. //
// //
// 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/>. //
///////////////////////////////////////////////////////////////////////////////////
2017-01-08 14:11:01 -05:00
#include "bfmplugin.h"
#include <QtPlugin>
#include "plugin/pluginapi.h"
2018-05-28 05:52:24 -04:00
#ifndef SERVER_MODE
2017-01-08 14:11:01 -05:00
#include "bfmdemodgui.h"
2018-05-28 05:52:24 -04:00
#endif
#include "bfmdemod.h"
#include "bfmdemodwebapiadapter.h"
#include "bfmplugin.h"
const PluginDescriptor BFMPlugin::m_pluginDescriptor = {
BFMDemod::m_channelId,
2020-11-21 09:38:04 -05:00
QStringLiteral("Broadcast FM Demodulator"),
2023-12-31 13:16:27 -05:00
QStringLiteral("7.17.3"),
2020-11-21 09:38:04 -05:00
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
2020-11-21 09:38:04 -05:00
QStringLiteral("https://github.com/f4exb/sdrangel")
};
BFMPlugin::BFMPlugin(QObject* parent) :
2017-05-05 04:40:45 -04:00
QObject(parent),
m_pluginAPI(0)
{
}
const PluginDescriptor& BFMPlugin::getPluginDescriptor() const
{
return m_pluginDescriptor;
}
void BFMPlugin::initPlugin(PluginAPI* pluginAPI)
{
m_pluginAPI = pluginAPI;
// register BFM demodulator
m_pluginAPI->registerRxChannel(BFMDemod::m_channelIdURI, BFMDemod::m_channelId, this);
}
void BFMPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
{
if (bs || cs)
{
BFMDemod *instance = new BFMDemod(deviceAPI);
if (bs) {
*bs = instance;
}
if (cs) {
*cs = instance;
}
}
}
2018-05-28 05:52:24 -04:00
#ifdef SERVER_MODE
ChannelGUI* BFMPlugin::createRxChannelGUI(
DeviceUISet *deviceUISet,
BasebandSampleSink *rxChannel) const
2018-05-28 05:52:24 -04:00
{
2020-11-14 05:13:32 -05:00
(void) deviceUISet;
(void) rxChannel;
return nullptr;
2018-05-28 05:52:24 -04:00
}
#else
ChannelGUI* BFMPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
{
return BFMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
}
2018-05-28 05:52:24 -04:00
#endif
ChannelWebAPIAdapter* BFMPlugin::createChannelWebAPIAdapter() const
{
return new BFMDemodWebAPIAdapter();
}