mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-08 17:15:16 -04:00
added graph display of instantly required bandwidth for VOIP, in preparation to chosing new video codec. GUI layout needs to be sorted.
This commit is contained in:
parent
d5c33f5631
commit
ec67ee0e00
6 changed files with 147 additions and 30 deletions
|
@ -35,10 +35,27 @@
|
|||
|
||||
#include "retroshare-gui/configpage.h"
|
||||
|
||||
#include "ui_AudioInputConfig.h"
|
||||
#include "SpeexProcessor.h"
|
||||
#include "VideoProcessor.h"
|
||||
#include "AudioStats.h"
|
||||
#include "gui/common/RSGraphWidget.h"
|
||||
|
||||
class voipGraphSource ;
|
||||
|
||||
class voipGraph: public RSGraphWidget
|
||||
{
|
||||
public:
|
||||
voipGraph(QWidget *parent) ;
|
||||
|
||||
voipGraphSource *voipSource() const { return _src ; }
|
||||
|
||||
void setVoipSource(voipGraphSource *gs) ;
|
||||
|
||||
private:
|
||||
voipGraphSource *_src ;
|
||||
};
|
||||
|
||||
#include "ui_AudioInputConfig.h"
|
||||
|
||||
class AudioInputConfig : public ConfigPage
|
||||
{
|
||||
|
@ -54,6 +71,7 @@ class AudioInputConfig : public ConfigPage
|
|||
QVideoInputDevice *videoInput ;
|
||||
bool loaded;
|
||||
|
||||
voipGraphSource *graph_source ;
|
||||
|
||||
protected:
|
||||
QTimer *qtTick;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue