summaryrefslogtreecommitdiff
path: root/toxav/codec.h
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-04-08 01:00:19 +0200
committermannol <eniz_vukovic@hotmail.com>2015-04-08 01:00:19 +0200
commit9c003c9dd215d5f6bb2c1a0fbdc2c0f7fd9def7c (patch)
treead682cf784489259d6ccc65c2d116cb2bbd2ba6d /toxav/codec.h
parentbf9f7e2ae8dc5f1b83c45e383ec70cb08c4caf5f (diff)
Video works now
Diffstat (limited to 'toxav/codec.h')
-rw-r--r--toxav/codec.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/toxav/codec.h b/toxav/codec.h
index b13203f1..93b08cd2 100644
--- a/toxav/codec.h
+++ b/toxav/codec.h
@@ -61,8 +61,9 @@ typedef struct CSession_s {
61 uint8_t *frame_buf; /* buffer for split video payloads */ 61 uint8_t *frame_buf; /* buffer for split video payloads */
62 uint32_t frame_size; /* largest address written to in frame_buf for current input frame */ 62 uint32_t frame_size; /* largest address written to in frame_buf for current input frame */
63 uint8_t frameid_in, frameid_out; /* id of input and output video frame */ 63 uint8_t frameid_in, frameid_out; /* id of input and output video frame */
64 uint32_t last_timestamp; /* calculating cycles */ 64 uint64_t linfts; /* Last received frame time stamp */
65 65 uint32_t lcfd; /* Last calculated frame duration for incoming video payload */
66
66 /* Limits */ 67 /* Limits */
67 uint32_t peer_video_frame_piece_size; 68 uint32_t peer_video_frame_piece_size;
68 69