summaryrefslogtreecommitdiff
path: root/toxav/toxav.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/toxav.h')
-rw-r--r--toxav/toxav.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/toxav/toxav.h b/toxav/toxav.h
index 73e5a86c..0edd9024 100644
--- a/toxav/toxav.h
+++ b/toxav/toxav.h
@@ -500,7 +500,8 @@ bool toxav_send_audio_frame(ToxAV *av, uint32_t friend_number,
500 */ 500 */
501typedef void toxav_receive_video_frame_cb(ToxAV *av, uint32_t friend_number, 501typedef void toxav_receive_video_frame_cb(ToxAV *av, uint32_t friend_number,
502 uint16_t width, uint16_t height, 502 uint16_t width, uint16_t height,
503 uint8_t const *planes[], int32_t const stride[], 503 uint8_t const *y, uint8_t const *u, uint8_t const *v,
504 int32_t ystride, int32_t ustride, int32_t vstride,
504 void *user_data); 505 void *user_data);
505/** 506/**
506 * Set the callback for the `receive_video_frame` event. Pass NULL to unset. 507 * Set the callback for the `receive_video_frame` event. Pass NULL to unset.