mirror of
https://github.com/JvanKatwijk/dab-cmdline
synced 2025-10-05 23:52:50 +02:00
77 lines
1.9 KiB
C++
77 lines
1.9 KiB
C++
#
|
|
/*
|
|
* Copyright (C) 2013 .. 2017
|
|
* updated 2023
|
|
*
|
|
* Jan van Katwijk (J.vanKatwijk@gmail.com)
|
|
* Lazy Chair Computing
|
|
*
|
|
* This file is part of the DAB-library
|
|
*
|
|
* DAB-library 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.
|
|
*
|
|
* DAB-library 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 DAB-library-J; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#
|
|
/*
|
|
* MSC data
|
|
*/
|
|
#
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <thread>
|
|
#include <vector>
|
|
#include <mutex>
|
|
#include <atomic>
|
|
#include "dab-constants.h"
|
|
#include "dab-api.h"
|
|
#include "dab-params.h"
|
|
#include "freq-interleaver.h"
|
|
|
|
class virtualBackend;
|
|
|
|
using namespace std;
|
|
class mscHandler {
|
|
public:
|
|
mscHandler (API_struct *,
|
|
void *);
|
|
~mscHandler ();
|
|
void process_mscBlock (std::vector<int16_t> &, int16_t);
|
|
void set_audioChannel (audiodata &);
|
|
void set_dataChannel (packetdata &);
|
|
void reset ();
|
|
void stop ();
|
|
void start ();
|
|
private:
|
|
API_struct *p;
|
|
dabParams params;
|
|
audioOut_t soundOut;
|
|
dataOut_t dataOut;
|
|
bytesOut_t bytesOut;
|
|
programQuality_t programQuality;
|
|
motdata_t motdata_Handler;
|
|
void *userData;
|
|
std::atomic<bool> running;
|
|
std::mutex locker;
|
|
std::vector<complex<float> > phaseReference;
|
|
std::vector<virtualBackend *>theBackends;
|
|
int16_t cifCount;
|
|
std::atomic<bool> work_to_do;
|
|
int16_t BitsperBlock;
|
|
int16_t numberofblocksperCIF;
|
|
};
|
|
|
|
|