2018-09-24 19:38:07 +02:00
|
|
|
#
|
|
|
|
/*
|
2025-06-10 18:42:18 +02:00
|
|
|
* Copyright (C) 2014 .. 2025
|
2018-09-24 19:38:07 +02:00
|
|
|
* 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"
|
2024-11-02 09:05:53 +01:00
|
|
|
#include "logger.h"
|
2018-09-24 19:38:07 +02:00
|
|
|
//
|
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,
|
2024-11-02 09:05:53 +01:00
|
|
|
logger *theLogger,
|
2018-09-24 19:38:07 +02:00
|
|
|
descriptorType *d,
|
2023-09-23 11:50:09 +02:00
|
|
|
bool backgroundFlag,
|
2023-11-05 14:11:28 +01:00
|
|
|
RingBuffer<std::complex<int16_t>> *audioBuffer,
|
2018-09-24 19:38:07 +02:00
|
|
|
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) {
|
2024-11-02 09:05:53 +01:00
|
|
|
theLogger -> log (logger::LOG_SERVICE_STARTS,
|
|
|
|
"MP2 service ", d -> bitRate);
|
2025-05-27 18:50:45 +02:00
|
|
|
theProcessor. reset (new mp2Processor (mr,
|
2021-10-08 16:30:49 +02:00
|
|
|
d -> bitRate,
|
2023-09-23 11:50:09 +02:00
|
|
|
audioBuffer,
|
2025-05-27 18:50:45 +02:00
|
|
|
backgroundFlag));
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
if (((audiodata *)d) -> ASCTy == 077) {
|
2024-11-02 09:05:53 +01:00
|
|
|
theLogger -> log (logger::LOG_SERVICE_STARTS,
|
|
|
|
"MP4 service ", d -> bitRate);
|
2025-05-27 18:50:45 +02:00
|
|
|
theProcessor. reset (new mp4Processor (mr,
|
2021-10-08 11:45:53 +02:00
|
|
|
d -> bitRate,
|
|
|
|
audioBuffer,
|
|
|
|
frameBuffer,
|
2023-09-23 11:50:09 +02:00
|
|
|
backgroundFlag,
|
2025-05-27 18:50:45 +02:00
|
|
|
dump));
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
2023-10-24 14:36:30 +02:00
|
|
|
else
|
2025-05-27 18:50:45 +02:00
|
|
|
theProcessor. reset (new frameProcessor ()); // should not happen
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
else
|
2024-03-25 14:35:22 +01:00
|
|
|
if (d -> type == PACKET_SERVICE) {
|
2025-05-27 18:50:45 +02:00
|
|
|
theProcessor. reset (new dataProcessor (mr,
|
2021-10-08 16:30:49 +02:00
|
|
|
(packetdata *)d,
|
2023-09-23 11:50:09 +02:00
|
|
|
dataBuffer,
|
2025-05-27 18:50:45 +02:00
|
|
|
backgroundFlag));
|
2024-03-25 14:35:22 +01:00
|
|
|
}
|
2021-06-11 14:20:51 +02:00
|
|
|
else
|
2025-05-27 18:50:45 +02:00
|
|
|
theProcessor. reset (new frameProcessor ()); // should not happen
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-08 23:30:45 +02:00
|
|
|
backendDriver::~backendDriver() {
|
2025-05-27 18:50:45 +02:00
|
|
|
// delete theProcessor;
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:38:29 +02:00
|
|
|
//
|
2025-01-15 21:45:37 +01:00
|
|
|
void backendDriver::addtoFrame (const std::vector<uint8_t> &theData) {
|
2018-09-24 19:38:07 +02:00
|
|
|
theProcessor -> addtoFrame (theData);
|
|
|
|
}
|
|
|
|
|