diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-08-27 08:40:01 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-08-27 08:40:01 +0200 |
commit | 503647557aa43e8be23133f8619c6c66bfe2f470 (patch) | |
tree | 6d333044845083902a43ee422e9165a4ac75643d /src/input/Zmq.h | |
parent | 70e72e84212f5b6b15f2e1a2b2d95d1d67abac7f (diff) | |
download | dabmux-503647557aa43e8be23133f8619c6c66bfe2f470.tar.gz dabmux-503647557aa43e8be23133f8619c6c66bfe2f470.tar.bz2 dabmux-503647557aa43e8be23133f8619c6c66bfe2f470.zip |
Make InputBase::setBitrate fail with invalid_argument instead of return value
Diffstat (limited to 'src/input/Zmq.h')
-rw-r--r-- | src/input/Zmq.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input/Zmq.h b/src/input/Zmq.h index bf2d5ae..ab3e610 100644 --- a/src/input/Zmq.h +++ b/src/input/Zmq.h @@ -45,7 +45,7 @@ #include <list> #include <string> -#include <stdint.h> +#include <cstdint> #include "zmq.hpp" #include "input/inputs.h" #include "ManagementServer.h" @@ -156,6 +156,7 @@ class ZmqBase : public InputBase, public RemoteControllable { m_bitrate(0), m_enable_input(true), m_config(config), + m_name(name), m_stats(name), m_prebuf_current(config.prebuffering) { RC_ADD_PARAMETER(enable, @@ -220,6 +221,7 @@ class ZmqBase : public InputBase, public RemoteControllable { char m_curve_encoder_key[CURVE_KEYLEN+1]; std::string m_inputUri; + std::string m_name; InputStat m_stats; |