summaryrefslogtreecommitdiff
path: root/toxav/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/video.h')
-rw-r--r--toxav/video.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/toxav/video.h b/toxav/video.h
index 6bc9ae5c..b82197c6 100644
--- a/toxav/video.h
+++ b/toxav/video.h
@@ -39,6 +39,7 @@
39#include <pthread.h> 39#include <pthread.h>
40 40
41struct RTPMessage; 41struct RTPMessage;
42struct RingBuffer;
42 43
43typedef struct VCSession_s { 44typedef struct VCSession_s {
44 /* encoding */ 45 /* encoding */
@@ -47,7 +48,7 @@ typedef struct VCSession_s {
47 48
48 /* decoding */ 49 /* decoding */
49 vpx_codec_ctx_t decoder[1]; 50 vpx_codec_ctx_t decoder[1];
50 RingBuffer *vbuf_raw; /* Un-decoded data */ 51 struct RingBuffer *vbuf_raw; /* Un-decoded data */
51 52
52 uint64_t linfts; /* Last received frame time stamp */ 53 uint64_t linfts; /* Last received frame time stamp */
53 uint32_t lcfd; /* Last calculated frame duration for incoming video payload */ 54 uint32_t lcfd; /* Last calculated frame duration for incoming video payload */