diff options
author | Jörgen Scott <jorgen.scott@gmail.com> | 2014-12-16 09:23:31 +0100 |
---|---|---|
committer | Jörgen Scott <jorgen.scott@gmail.com> | 2014-12-16 09:23:31 +0100 |
commit | f4e359f774eef5ec2a006a431a546e915b27f02b (patch) | |
tree | 27aad5426ae25a5abc513aec35434d80979feebb /src/OutputUHD.h | |
parent | 855311975814891f531577f90115bfb5fa6ed252 (diff) | |
download | dabmod-f4e359f774eef5ec2a006a431a546e915b27f02b.tar.gz dabmod-f4e359f774eef5ec2a006a431a546e915b27f02b.tar.bz2 dabmod-f4e359f774eef5ec2a006a431a546e915b27f02b.zip |
Added static delay via telnet control
Diffstat (limited to 'src/OutputUHD.h')
-rw-r--r-- | src/OutputUHD.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/OutputUHD.h b/src/OutputUHD.h index 69e5b20..f50807d 100644 --- a/src/OutputUHD.h +++ b/src/OutputUHD.h @@ -48,6 +48,7 @@ DESCRIPTION: #include <boost/shared_ptr.hpp> #include <list> #include <string> +#include <zmq.hpp> #include "Log.h" #include "ModOutput.h" @@ -220,7 +221,9 @@ class OutputUHD: public ModOutput, public RemoteControllable { // muting can only be changed using the remote control bool myMuting; - + int myStaticDelay; + std::vector<complexf> m_delayBuf; + size_t lastLen; }; |