1
0
mirror of https://github.com/JvanKatwijk/qt-dab.git synced 2025-10-06 08:12:40 +02:00
Files
SDR-DAB_Qt-DAB/src/backend/backend-driver.cpp

77 lines
2.7 KiB
C++
Raw Normal View History

2018-09-24 19:38:07 +02:00
#
/*
* Copyright (C) 2014 .. 2017
* Jan van Katwijk (J.vanKatwijk@gmail.com)
* Lazy Chair Computing
*
* This file is part of the Qt-DAB program
2020-05-11 16:09:46 +02:00
*
2018-09-24 19:38:07 +02:00
* Qt-DAB 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; either version 2 of the License, or
* (at your option) any later version.
*
* Qt-DAB 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with Qt-DAB; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "backend-driver.h"
#include "mp2processor.h"
#include "mp4processor.h"
#include "data-processor.h"
//
2020-11-02 20:39:30 +01:00
// Driver program for the selected backend. Embodying that in a
2018-09-24 19:38:07 +02:00
// separate class makes the "Backend" class simpler.
backendDriver::backendDriver (RadioInterface *mr,
descriptorType *d,
2023-09-23 11:50:09 +02:00
bool backgroundFlag,
2018-09-24 19:38:07 +02:00
RingBuffer<int16_t> *audioBuffer,
RingBuffer<uint8_t> *dataBuffer,
2022-03-12 15:09:46 +01:00
RingBuffer<uint8_t> *frameBuffer,
FILE *dump) {
2018-09-24 19:38:07 +02:00
if (d -> type == AUDIO_SERVICE) {
if (((audiodata *)d) -> ASCTy != 077) {
2021-10-08 16:30:49 +02:00
theProcessor = new mp2Processor (mr,
d -> bitRate,
2023-09-23 11:50:09 +02:00
audioBuffer,
backgroundFlag);
2018-09-24 19:38:07 +02:00
}
else
if (((audiodata *)d) -> ASCTy == 077) {
2021-10-08 16:30:49 +02:00
theProcessor = new mp4Processor (mr,
2021-10-08 11:45:53 +02:00
d -> bitRate,
audioBuffer,
frameBuffer,
2023-09-23 11:50:09 +02:00
backgroundFlag,
2022-03-12 15:09:46 +01:00
dump);
2018-09-24 19:38:07 +02:00
}
2023-10-24 14:36:30 +02:00
else
theProcessor = new frameProcessor (); // should not happen
2018-09-24 19:38:07 +02:00
}
else
if (d -> type == PACKET_SERVICE)
2021-10-08 16:30:49 +02:00
theProcessor = new dataProcessor (mr,
(packetdata *)d,
2023-09-23 11:50:09 +02:00
dataBuffer,
backgroundFlag);
2021-06-11 14:20:51 +02:00
else
2021-10-08 16:30:49 +02:00
theProcessor = new frameProcessor (); // should not happen
2018-09-24 19:38:07 +02:00
}
2019-07-08 23:30:45 +02:00
backendDriver::~backendDriver() {
2021-10-08 16:30:49 +02:00
delete theProcessor;
2018-09-24 19:38:07 +02:00
}
2023-05-14 20:38:29 +02:00
//
2023-05-21 20:03:29 +02:00
void backendDriver::addtoFrame (std::vector<uint8_t> theData) {
2018-09-24 19:38:07 +02:00
theProcessor -> addtoFrame (theData);
}