mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-05 23:45:00 -04:00
DATV Mod: Add UDP buffer utiliziation in GUI on Windows
This commit is contained in:
@@ -52,6 +52,7 @@ MESSAGE_CLASS_DEFINITION(DATVMod::MsgConfigureTsFileName, Message)
|
||||
MESSAGE_CLASS_DEFINITION(DATVMod::MsgConfigureTsFileSourceSeek, Message)
|
||||
MESSAGE_CLASS_DEFINITION(DATVMod::MsgConfigureTsFileSourceStreamTiming, Message)
|
||||
MESSAGE_CLASS_DEFINITION(DATVMod::MsgGetUDPBitrate, Message)
|
||||
MESSAGE_CLASS_DEFINITION(DATVMod::MsgGetUDPBufferUtilization, Message)
|
||||
|
||||
const char* const DATVMod::m_channelIdURI = "sdrangel.channeltx.moddatv";
|
||||
const char* const DATVMod::m_channelId = "DATVMod";
|
||||
@@ -185,6 +186,12 @@ bool DATVMod::handleMessage(const Message& cmd)
|
||||
|
||||
return true;
|
||||
}
|
||||
else if (MsgGetUDPBufferUtilization::match(cmd))
|
||||
{
|
||||
m_basebandSource->getInputMessageQueue()->push(DATVMod::MsgGetUDPBufferUtilization::create());
|
||||
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user