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,
|
|
|
|
RingBuffer<int16_t> *audioBuffer,
|
|
|
|
RingBuffer<uint8_t> *dataBuffer,
|
2020-04-12 19:08:56 +02:00
|
|
|
RingBuffer<uint8_t> *frameBuffer) {
|
2018-09-24 19:38:07 +02:00
|
|
|
if (d -> type == AUDIO_SERVICE) {
|
|
|
|
if (((audiodata *)d) -> ASCTy != 077) {
|
|
|
|
theProcessor = new mp2Processor (mr,
|
|
|
|
d -> bitRate,
|
|
|
|
audioBuffer,
|
2020-04-12 19:08:56 +02:00
|
|
|
frameBuffer);
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
if (((audiodata *)d) -> ASCTy == 077) {
|
|
|
|
theProcessor = new mp4Processor (mr,
|
|
|
|
d -> bitRate,
|
|
|
|
audioBuffer,
|
2020-05-20 18:03:41 +02:00
|
|
|
frameBuffer,
|
2020-05-22 18:15:43 +02:00
|
|
|
d -> procMode);
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (d -> type == PACKET_SERVICE)
|
|
|
|
theProcessor = new dataProcessor (mr,
|
|
|
|
(packetdata *)d,
|
2020-04-12 19:08:56 +02:00
|
|
|
dataBuffer);
|
2018-09-24 19:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-08 23:30:45 +02:00
|
|
|
backendDriver::~backendDriver() {
|
2018-09-24 19:38:07 +02:00
|
|
|
delete theProcessor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void backendDriver::addtoFrame (std::vector<uint8_t> theData) {
|
|
|
|
theProcessor -> addtoFrame (theData);
|
|
|
|
}
|
|
|
|
|