summaryrefslogtreecommitdiff
path: root/toxav/rtp.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-11 15:47:51 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-13 00:32:02 +0100
commit0aa2840164fc782f150cd45f8668ca623e6002cf (patch)
tree68d4b762c6233946fc3e73af546e2a5a5f6cdb16 /toxav/rtp.h
parent2b2dc07f6f7fe28a8e558125d977d2fa9cef3881 (diff)
Group #include directives in 3-4 groups.
1. Current module (if C file). 2. Headers from current library. 3. Headers from other library (e.g. toxcore includes in toxav). 4. System headers.
Diffstat (limited to 'toxav/rtp.h')
-rw-r--r--toxav/rtp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/toxav/rtp.h b/toxav/rtp.h
index 18929e12..30d8ca65 100644
--- a/toxav/rtp.h
+++ b/toxav/rtp.h
@@ -22,9 +22,11 @@
22#ifndef RTP_H 22#ifndef RTP_H
23#define RTP_H 23#define RTP_H
24 24
25#include "../toxcore/Messenger.h"
26#include "bwcontroller.h" 25#include "bwcontroller.h"
27#include "stdbool.h" 26
27#include "../toxcore/Messenger.h"
28
29#include <stdbool.h>
28 30
29/** 31/**
30 * Payload type identifier. Also used as rtp callback prefix. 32 * Payload type identifier. Also used as rtp callback prefix.