summaryrefslogtreecommitdiff
path: root/toxav/codec.h
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-12-12 18:35:52 -0500
committerirungentoo <irungentoo@gmail.com>2014-12-12 18:35:52 -0500
commit71527c436c1cb8d7fe773a6b84ba7f722f2a47dc (patch)
tree534b73ec2bb41a71c8fdbdb6953d3d3b9fdfd021 /toxav/codec.h
parent12f396fcc26d7633bcaeb9c02658acb5c68acba8 (diff)
Having two buffers for audio isn't really good.
Diffstat (limited to 'toxav/codec.h')
-rw-r--r--toxav/codec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/codec.h b/toxav/codec.h
index 31193e53..1ee0a4ff 100644
--- a/toxav/codec.h
+++ b/toxav/codec.h
@@ -144,7 +144,7 @@ typedef struct _CSSession {
144 PAIR(CSVideoCallback, void *) vcb; 144 PAIR(CSVideoCallback, void *) vcb;
145 145
146 /* Buffering */ 146 /* Buffering */
147 void *abuf_raw, *vbuf_raw; /* Un-decoded data */ 147 void *vbuf_raw; /* Un-decoded data */
148 pthread_mutex_t queue_mutex[1]; 148 pthread_mutex_t queue_mutex[1];
149 149
150 void *agent; /* Pointer to ToxAv */ 150 void *agent; /* Pointer to ToxAv */