Warn when tx time < 1s not <=1s in preflight check

This commit is contained in:
Srivats P 2018-02-22 20:49:14 +05:30
parent 1347165ef0
commit b6c46e27e9

View File

@ -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. "