summaryrefslogtreecommitdiff
path: root/toxav/rtp.h
diff options
context:
space:
mode:
authorTibor Stolz <tstolz@ee.ethz.ch>2015-11-11 10:33:03 +0100
committerTibor Stolz <tstolz@ee.ethz.ch>2015-11-11 10:33:03 +0100
commitedbfca5474b59b865e383e0dae934ba293d9dc7d (patch)
treebb4a9afc75362284bf3b89ac08d1e7d9df42898d /toxav/rtp.h
parent0d0b74f5a8662a0b3b7c4da3537d1e8942f20656 (diff)
fix BWController misspelling
Diffstat (limited to 'toxav/rtp.h')
-rw-r--r--toxav/rtp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxav/rtp.h b/toxav/rtp.h
index 0393ac27..7daa6fd7 100644
--- a/toxav/rtp.h
+++ b/toxav/rtp.h
@@ -22,7 +22,7 @@
22#ifndef RTP_H 22#ifndef RTP_H
23#define RTP_H 23#define RTP_H
24 24
25#include "bwcontroler.h" 25#include "bwcontroller.h"
26#include "../toxcore/Messenger.h" 26#include "../toxcore/Messenger.h"
27#include "stdbool.h" 27#include "stdbool.h"
28 28
@@ -92,14 +92,14 @@ typedef struct {
92 Messenger *m; 92 Messenger *m;
93 uint32_t friend_number; 93 uint32_t friend_number;
94 94
95 BWControler *bwc; 95 BWController *bwc;
96 void *cs; 96 void *cs;
97 int (*mcb) (void *, struct RTPMessage *msg); 97 int (*mcb) (void *, struct RTPMessage *msg);
98} RTPSession; 98} RTPSession;
99 99
100 100
101RTPSession *rtp_new (int payload_type, Messenger *m, uint32_t friend_num, 101RTPSession *rtp_new (int payload_type, Messenger *m, uint32_t friend_num,
102 BWControler *bwc, void *cs, 102 BWController *bwc, void *cs,
103 int (*mcb) (void *, struct RTPMessage *)); 103 int (*mcb) (void *, struct RTPMessage *));
104void rtp_kill (RTPSession *session); 104void rtp_kill (RTPSession *session);
105int rtp_allow_receiving (RTPSession *session); 105int rtp_allow_receiving (RTPSession *session);