summaryrefslogtreecommitdiff
path: root/toxav/rtp.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-06-23 17:16:28 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-06-24 19:17:32 +0000
commit8e00294b3cb9808ce55160240454359638178275 (patch)
tree095a7708b3fe3566951ebe7b068ee66a8beed3c1 /toxav/rtp.h
parent5a8790eab0ed9421445adce40526462b9e6742c3 (diff)
Add Logger to various net_crypto functions.
In preparation for adding log statements. Also, fix an uninitialised variable warning in cppcheck.
Diffstat (limited to 'toxav/rtp.h')
-rw-r--r--toxav/rtp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/rtp.h b/toxav/rtp.h
index a310d58a..d7fc5560 100644
--- a/toxav/rtp.h
+++ b/toxav/rtp.h
@@ -213,7 +213,7 @@ int rtp_stop_receiving(RTPSession *session);
213 * audio frame, this parameter is ignored. 213 * audio frame, this parameter is ignored.
214 */ 214 */
215int rtp_send_data(RTPSession *session, const uint8_t *data, uint32_t length, 215int rtp_send_data(RTPSession *session, const uint8_t *data, uint32_t length,
216 bool is_keyframe, Logger *log); 216 bool is_keyframe, const Logger *log);
217 217
218#ifdef __cplusplus 218#ifdef __cplusplus
219} // extern "C" 219} // extern "C"