diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-14 22:10:30 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-14 22:10:30 +0200 |
commit | 56e046c3390a15aab4baddb502a490bb4505942a (patch) | |
tree | aa6b51bb531dc9ea0b5e2f4f6e34c0b52503349f /src/output/Soapy.cpp | |
parent | 388d247d6799bc3ba9fda7b208a620d13db8f8ad (diff) | |
download | dabmod-56e046c3390a15aab4baddb502a490bb4505942a.tar.gz dabmod-56e046c3390a15aab4baddb502a490bb4505942a.tar.bz2 dabmod-56e046c3390a15aab4baddb502a490bb4505942a.zip |
Rework timestamp_refresh
Since we have the 'timestamp in the past' warning refresh requests can be lost
Diffstat (limited to 'src/output/Soapy.cpp')
-rw-r--r-- | src/output/Soapy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/Soapy.cpp b/src/output/Soapy.cpp index f138e9a..684a9a4 100644 --- a/src/output/Soapy.cpp +++ b/src/output/Soapy.cpp @@ -311,7 +311,7 @@ void Soapy::transmit_frame(const struct FrameData& frame) const bool eob_because_muting = m_conf.muting; const bool end_of_burst = eob_because_muting or ( frame.ts.timestamp_valid and - frame.ts.timestamp_refresh and + m_require_timestamp_refresh and samps_to_send <= mtu ); int flags = 0; |