1
0
mirror of https://github.com/JvanKatwijk/dab-cmdline synced 2025-10-05 23:52:50 +02:00
Files
SDR-DAB_dab-cmdline/library/includes/ofdm/fic-handler.h
2025-06-22 19:12:39 +02:00

83 lines
2.2 KiB
C++

#
/*
* Copyright (C) 2013 .. 2017
* 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; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#
/*
* FIC data
*/
#pragma once
#include <stdio.h>
#include <stdint.h>
#include <vector>
#include "viterbi-spiral.h"
#include "fib-decoder.h"
#include <mutex>
#include <string>
#include "dab-api.h"
#include "dab-params.h"
class ficHandler: public viterbiSpiral {
//class ficHandler: public viterbiHandler {
public:
ficHandler (API_struct *,
void *);
~ficHandler ();
void process_ficBlock (std::vector<int16_t>, int16_t);
void clearEnsemble ();
bool syncReached ();
int16_t get_ficRatio ();
int get_SId (int);
std::string get_serviceName (uint32_t /* SId */);
uint8_t serviceType (int);
void audioData (int, audiodata &);
void packetData (int, packetdata &);
int getServiceComp (const std::string &);
int32_t get_CIFcount ();
void reset ();
uint8_t get_ecc ();
uint32_t get_EId ();
std::string get_ensembleName ();
private:
fibDecoder fibHandler;
fib_quality_t fib_qualityHandler;
dabParams params;
void *userData;
void process_ficInput (int16_t);
uint8_t bitBuffer_out [768];
int16_t ofdm_input [2304];
bool punctureTable [4 * 768 + 24];
int16_t index;
int16_t BitsperBlock;
int16_t ficno;
int16_t ficBlocks;
int16_t ficMissed;
int16_t ficRatio;
mutex fibProtector;
uint8_t PRBS [768];
uint8_t shiftRegister [9];
void show_ficCRC (bool);
};