Warn when tx time < 1s not <=1s in preflight check
This commit is contained in:
parent
1347165ef0
commit
b6c46e27e9
@ -663,7 +663,7 @@ bool StreamBase::preflightCheck(QStringList &result) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frameCount() <= averagePacketRate() && nextWhat() != e_nw_goto_id)
|
if (frameCount() < averagePacketRate() && nextWhat() != e_nw_goto_id)
|
||||||
{
|
{
|
||||||
result << QObject::tr("Only %L1 frames at the rate of "
|
result << QObject::tr("Only %L1 frames at the rate of "
|
||||||
"%L2 frames/sec are configured to be transmitted. "
|
"%L2 frames/sec are configured to be transmitted. "
|
||||||
|
Loading…
Reference in New Issue
Block a user