mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	- remove __attribute__((unused)) not supported on MSVC - remove __attribute((unused)) not supported on MSVC - add symbol exports to RemoteDataReadQueue and RemoteDataQueue - add export symbols to sdrsrv
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <QtPlugin>
 | 
						|
#include "plugin/pluginapi.h"
 | 
						|
 | 
						|
#ifndef SERVER_MODE
 | 
						|
#include "amdemodgui.h"
 | 
						|
#endif
 | 
						|
#include "amdemod.h"
 | 
						|
#include "amdemodplugin.h"
 | 
						|
 | 
						|
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
 | 
						|
	QString("AM Demodulator"),
 | 
						|
	QString("4.5.2"),
 | 
						|
	QString("(c) Edouard Griffiths, F4EXB"),
 | 
						|
	QString("https://github.com/f4exb/sdrangel"),
 | 
						|
	true,
 | 
						|
	QString("https://github.com/f4exb/sdrangel")
 | 
						|
};
 | 
						|
 | 
						|
AMDemodPlugin::AMDemodPlugin(QObject* parent) :
 | 
						|
	QObject(parent),
 | 
						|
	m_pluginAPI(0)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
const PluginDescriptor& AMDemodPlugin::getPluginDescriptor() const
 | 
						|
{
 | 
						|
	return m_pluginDescriptor;
 | 
						|
}
 | 
						|
 | 
						|
void AMDemodPlugin::initPlugin(PluginAPI* pluginAPI)
 | 
						|
{
 | 
						|
	m_pluginAPI = pluginAPI;
 | 
						|
 | 
						|
	// register AM demodulator
 | 
						|
	m_pluginAPI->registerRxChannel(AMDemod::m_channelIdURI, AMDemod::m_channelId, this);
 | 
						|
}
 | 
						|
 | 
						|
#ifdef SERVER_MODE
 | 
						|
PluginInstanceGUI* AMDemodPlugin::createRxChannelGUI(
 | 
						|
        DeviceUISet *deviceUISet,
 | 
						|
        BasebandSampleSink *rxChannel)
 | 
						|
{
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
#else
 | 
						|
PluginInstanceGUI* AMDemodPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
 | 
						|
{
 | 
						|
	return AMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
BasebandSampleSink* AMDemodPlugin::createRxChannelBS(DeviceAPI *deviceAPI)
 | 
						|
{
 | 
						|
    return new AMDemod(deviceAPI);
 | 
						|
}
 | 
						|
 | 
						|
ChannelAPI* AMDemodPlugin::createRxChannelCS(DeviceAPI *deviceAPI)
 | 
						|
{
 | 
						|
    return new AMDemod(deviceAPI);
 | 
						|
}
 | 
						|
 |