2021-02-17 Fred Gleason <fredg@paravelsystems.com>

* Removed the Q3SocketDevice dependency for metering data 'RDCae'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-02-17 09:46:03 -05:00
parent 15f1636a62
commit c5c903ede7
3 changed files with 19 additions and 24 deletions

View File

@@ -2,7 +2,7 @@
//
// Connection to the Rivendell Core Audio Engine
//
// (C) Copyright 2002-2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -23,9 +23,9 @@
#include <q3socketdevice.h>
#include <qlabel.h>
#include <qobject.h>
#include <qlist.h>
#include <QList>
#include <QObject>
#include <QUdpSocket>
#include <rd.h>
#include <rdcmd_cache.h>
@@ -112,7 +112,7 @@ class RDCae : public QObject
bool input_status[RD_MAX_CARDS][RD_MAX_PORTS];
int cae_handle[RD_MAX_CARDS][RD_MAX_STREAMS];
unsigned cae_pos[RD_MAX_CARDS][RD_MAX_STREAMS];
Q3SocketDevice *cae_meter_socket;
QUdpSocket *cae_meter_socket;
short cae_input_levels[RD_MAX_CARDS][RD_MAX_PORTS][2];
short cae_output_levels[RD_MAX_CARDS][RD_MAX_PORTS][2];
short cae_stream_output_levels[RD_MAX_CARDS][RD_MAX_PORTS][2];