diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-06-30 08:29:24 +0200 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-06-30 08:29:24 +0200 | 
| commit | ed78541c817bfa1cce8adb5bcb48687b4de95dd0 (patch) | |
| tree | 724032eb83e1403166ef2f65d59e4997e1621e39 | |
| parent | 35867ba39effd3c40b727e90163d406d4abcd2bf (diff) | |
| download | ODR-SourceCompanion-ed78541c817bfa1cce8adb5bcb48687b4de95dd0.tar.gz ODR-SourceCompanion-ed78541c817bfa1cce8adb5bcb48687b4de95dd0.tar.bz2 ODR-SourceCompanion-ed78541c817bfa1cce8adb5bcb48687b4de95dd0.zip | |
Fix startup ok message
| -rw-r--r-- | src/AVTInput.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/src/AVTInput.cpp b/src/AVTInput.cpp index ab6be76..32f6518 100644 --- a/src/AVTInput.cpp +++ b/src/AVTInput.cpp @@ -540,8 +540,7 @@ void AVTInput::_info(_frameType type, size_t size)      }      if (_lastInfoFrameType != _typeCantExtract) {          _infoNbFrame++; -        if (_infoNbFrame == 100 or _infoNbFrame % 100000 == 0) -        { +        if (_infoNbFrame == 100) {              INFO("Startup ok, %zu 24ms-frames received\n", _infoNbFrame);          }      } | 
