Check for active stream count when building interleaved packet list
This commit is contained in:
parent
1cddfbf2ec
commit
e1194a1db3
@ -407,11 +407,19 @@ void AbstractPort::updatePacketListInterleaved()
|
|||||||
QList<bool> isVariable;
|
QList<bool> isVariable;
|
||||||
QList<QByteArray> pktBuf;
|
QList<QByteArray> pktBuf;
|
||||||
QList<ulong> pktLen;
|
QList<ulong> pktLen;
|
||||||
|
int activeStreamCount = 0;
|
||||||
|
|
||||||
qDebug("In %s", __FUNCTION__);
|
qDebug("In %s", __FUNCTION__);
|
||||||
|
|
||||||
clearPacketList();
|
clearPacketList();
|
||||||
if (streamList_.size() == 0)
|
|
||||||
|
for (int i = 0; i < streamList_.size(); i++)
|
||||||
|
{
|
||||||
|
if (streamList_[i]->isEnabled())
|
||||||
|
activeStreamCount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (activeStreamCount == 0)
|
||||||
{
|
{
|
||||||
isSendQueueDirty_ = false;
|
isSendQueueDirty_ = false;
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user