diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-09-05 17:09:44 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-09-05 17:10:48 +0200 |
commit | 716b3d84adaaa36c9dd8652ec43fc88e760da611 (patch) | |
tree | 0543ad7760e3b76e44ff623eaf07872ecdb9013c /src/input/Udp.cpp | |
parent | 1ed62f38f32b219f1eb7e9e06024f9fa86eb58bc (diff) | |
download | dabmux-716b3d84adaaa36c9dd8652ec43fc88e760da611.tar.gz dabmux-716b3d84adaaa36c9dd8652ec43fc88e760da611.tar.bz2 dabmux-716b3d84adaaa36c9dd8652ec43fc88e760da611.zip |
Fix EDI with timestamping input
Diffstat (limited to 'src/input/Udp.cpp')
-rw-r--r-- | src/input/Udp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/Udp.cpp b/src/input/Udp.cpp index 5ddc366..a37ee21 100644 --- a/src/input/Udp.cpp +++ b/src/input/Udp.cpp @@ -105,7 +105,7 @@ size_t Udp::readFrame(uint8_t *buffer, size_t size) } } -size_t Udp::readFrame(uint8_t *buffer, size_t size, uint32_t seconds, uint32_t tsta) +size_t Udp::readFrame(uint8_t *buffer, size_t size, std::time_t seconds, int utco, uint32_t tsta) { // Maybe there's a way to carry timestamps, but we don't need it. memset(buffer, 0x0, size); |