summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-11-14 14:32:05 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-11-14 14:32:05 +0100
commit921027d1024fc017a81fc81c89a1275405f15751 (patch)
treee55c239a24c73542775ddda31fe6274a66925ef6
parentd18935e22e3c687c152bd35ad05c66bf5a19e00a (diff)
downloaddabmux-921027d1024fc017a81fc81c89a1275405f15751.tar.gz
dabmux-921027d1024fc017a81fc81c89a1275405f15751.tar.bz2
dabmux-921027d1024fc017a81fc81c89a1275405f15751.zip
Remove compile warnings
-rw-r--r--src/dabInputZmq.h6
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 {