| 
									
										
										
										
											2017-02-23 08:18:56 +01: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 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-02-23 08:18:56 +01: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 14:23:49 +01:00
										 |  |  | #include "atvdemod.h"
 | 
					
						
							| 
									
										
										
										
											2017-02-23 08:18:56 +01:00
										 |  |  | #include "atvdemodplugin.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor = | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	QString("ATV Demodulator"), | 
					
						
							| 
									
										
										
										
											2018-11-22 00:41:28 +01:00
										 |  |  | 	QString("4.3.0"), | 
					
						
							| 
									
										
										
										
											2017-02-23 08:18:56 +01:00
										 |  |  |     QString("(c) F4HKW for F4EXB / SDRAngel"), | 
					
						
							|  |  |  | 	QString("https://github.com/f4exb/sdrangel"), | 
					
						
							|  |  |  | 	true, | 
					
						
							|  |  |  | 	QString("https://github.com/f4exb/sdrangel") | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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-23 01:19:32 +01:00
										 |  |  |     m_ptrPluginAPI->registerRxChannel(ATVDemod::m_channelIdURI, ATVDemod::m_channelId, this); | 
					
						
							| 
									
										
										
										
											2017-02-23 08:18:56 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-23 10:32:02 +01:00
										 |  |  | PluginInstanceGUI* ATVDemodPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) | 
					
						
							| 
									
										
										
										
											2017-02-23 08:18:56 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-23 10:32:02 +01:00
										 |  |  |     return ATVDemodGUI::create(m_ptrPluginAPI, deviceUISet, rxChannel); | 
					
						
							| 
									
										
										
										
											2017-02-23 08:18:56 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-08 14:23:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | BasebandSampleSink* ATVDemodPlugin::createRxChannelBS(DeviceAPI *deviceAPI) | 
					
						
							| 
									
										
										
										
											2017-11-08 14:23:49 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-23 09:54:42 +01:00
										 |  |  |     return new ATVDemod(deviceAPI); | 
					
						
							| 
									
										
										
										
											2017-11-08 14:23:49 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | ChannelSinkAPI* ATVDemodPlugin::createRxChannelCS(DeviceAPI *deviceAPI) | 
					
						
							| 
									
										
										
										
											2017-12-17 23:15:42 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-23 05:56:40 +01:00
										 |  |  |     return new ATVDemod(deviceAPI); | 
					
						
							| 
									
										
										
										
											2017-12-17 23:15:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 |