1
0
mirror of https://github.com/JvanKatwijk/qt-dab.git synced 2025-10-06 00:02:40 +02:00
Files
SDR-DAB_Qt-DAB/includes/output/rtp-streamer.h
2023-10-24 14:36:30 +02:00

63 lines
1.8 KiB
C++
Executable File

#
/*
* Copyright (C) 2011 .. 2023
* Jan van Katwijk (J.vanKatwijk@gmail.com)
* Lazy Chair Computing
*
* This file is part of Qt-DAB
*
* 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
*/
#pragma once
#include <dab-constants.h>
#include <QString>
#include <ringbuffer.h>
#include "rtpsession.h"
#include "rtpsessionparams.h"
#include "rtpudpv4transmitter.h"
#include "rtpipv4address.h"
#include "rtptimeutilities.h"
#include "rtppacket.h"
#include "audio-base.h"
using namespace jrtplib;
class rtpStreamer : public AudioBase {
Q_OBJECT
public:
rtpStreamer (QString name, int32_t port,
RingBuffer<int16_t> *);
~rtpStreamer (void);
void audioOutput (float *, int);
private:
QString theName;
int32_t thePort;
RingBuffer<float> *theBuffer;
RingBuffer<float> *inBuffer;
RTPSession session;
RTPSessionParams sessionparams;
RTPUDPv4TransmissionParams transparams;
void sendBuffer (uint8_t *, int16_t);
float left [481];
float right [481];
uint8_t buffer [1024];
int16_t fillP;
int16_t convIndex;
int mapTable_int [481];
float mapTable_float [481];
};