diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-12-29 11:54:36 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-12-29 11:54:36 +0100 |
commit | ac13498dc219c74d8214a314d0341574ada0ceb3 (patch) | |
tree | 38be2f08137006bb94a763016f289359132d7c7d /src/Outputs.h | |
parent | fbf20c6eb5c989687d2dcb8e97c8a2af9c51cc90 (diff) | |
download | ODR-AudioEnc-ac13498dc219c74d8214a314d0341574ada0ceb3.tar.gz ODR-AudioEnc-ac13498dc219c74d8214a314d0341574ada0ceb3.tar.bz2 ODR-AudioEnc-ac13498dc219c74d8214a314d0341574ada0ceb3.zip |
Make EDI output FEC configurable
Diffstat (limited to 'src/Outputs.h')
-rw-r--r-- | src/Outputs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Outputs.h b/src/Outputs.h index 1211841..7184206 100644 --- a/src/Outputs.h +++ b/src/Outputs.h @@ -138,6 +138,9 @@ class EDI: public Base { void add_udp_destination(const std::string& host, unsigned int port); void add_tcp_destination(const std::string& host, unsigned int port); + // Enables PFT layer and sets FEC + void set_fec(int fec); + void set_tist(bool enable, uint32_t delay_ms); bool enabled() const; |