diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-14 14:32:05 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-14 14:32:05 +0100 |
commit | 921027d1024fc017a81fc81c89a1275405f15751 (patch) | |
tree | e55c239a24c73542775ddda31fe6274a66925ef6 /src | |
parent | d18935e22e3c687c152bd35ad05c66bf5a19e00a (diff) | |
download | dabmux-921027d1024fc017a81fc81c89a1275405f15751.tar.gz dabmux-921027d1024fc017a81fc81c89a1275405f15751.tar.bz2 dabmux-921027d1024fc017a81fc81c89a1275405f15751.zip |
Remove compile warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/dabInputZmq.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dabInputZmq.h b/src/dabInputZmq.h index 2ba846b..fd6c599 100644 --- a/src/dabInputZmq.h +++ b/src/dabInputZmq.h @@ -104,13 +104,13 @@ struct dab_input_zmq_config_t * Each element corresponds to five frames, * or one AAC superframe. */ - int buffer_size; + size_t buffer_size; /* The amount of prebuffering to do before we start streaming * * Same units as buffer_size */ - int prebuffering; + size_t prebuffering; /* Whether to enforce encryption or not */ @@ -235,7 +235,7 @@ class DabInputZmqBase : public DabInputBase, public RemoteControllable { InputStat m_stats; private: - int m_prebuf_current; + size_t m_prebuf_current; }; class DabInputZmqMPEG : public DabInputZmqBase { |