summaryrefslogtreecommitdiff
path: root/toxav/codec.h
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2014-08-04 00:15:00 +0200
committermannol <eniz_vukovic@hotmail.com>2014-08-04 00:15:00 +0200
commit733c509582cf6d1366ec3284d4089f24fe4bbae5 (patch)
treea1791e8a78be1ecb3177896f75895694a60eb868 /toxav/codec.h
parent6c1ac97da9dd9e64cf53cb9137944f0d595698fc (diff)
Fix some toxav warnings
Diffstat (limited to 'toxav/codec.h')
-rw-r--r--toxav/codec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/codec.h b/toxav/codec.h
index dceeea7a..db4fbea0 100644
--- a/toxav/codec.h
+++ b/toxav/codec.h
@@ -80,8 +80,8 @@ typedef struct _CodecState {
80 80
81typedef struct _JitterBuffer { 81typedef struct _JitterBuffer {
82 RTPMessage **queue; 82 RTPMessage **queue;
83 unsigned int size; 83 uint32_t size;
84 unsigned int capacity; 84 uint32_t capacity;
85 uint16_t bottom; 85 uint16_t bottom;
86 uint16_t top; 86 uint16_t top;
87} JitterBuffer; 87} JitterBuffer;