diff options
Diffstat (limited to 'toxav/codec.h')
-rw-r--r-- | toxav/codec.h | 5 |
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 | ||