summaryrefslogtreecommitdiff
path: root/toxav/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/video.c')
-rw-r--r--toxav/video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/video.c b/toxav/video.c
index 3f4d96e1..ab47ae97 100644
--- a/toxav/video.c
+++ b/toxav/video.c
@@ -159,7 +159,7 @@ static void vc_init_encoder_cfg(const Logger *log, vpx_codec_enc_cfg_t *cfg, int
159#endif 159#endif
160} 160}
161 161
162VCSession *vc_new(const Mono_Time *mono_time, const Logger *log, ToxAV *av, uint32_t friend_number, 162VCSession *vc_new(Mono_Time *mono_time, const Logger *log, ToxAV *av, uint32_t friend_number,
163 toxav_video_receive_frame_cb *cb, void *cb_data) 163 toxav_video_receive_frame_cb *cb, void *cb_data)
164{ 164{
165 VCSession *vc = (VCSession *)calloc(sizeof(VCSession), 1); 165 VCSession *vc = (VCSession *)calloc(sizeof(VCSession), 1);
@@ -357,7 +357,7 @@ void vc_iterate(VCSession *vc)
357 } 357 }
358} 358}
359 359
360int vc_queue_message(const Mono_Time *mono_time, void *vcp, struct RTPMessage *msg) 360int vc_queue_message(Mono_Time *mono_time, void *vcp, struct RTPMessage *msg)
361{ 361{
362 /* This function is called with complete messages 362 /* This function is called with complete messages
363 * they have already been assembled. 363 * they have already been assembled.