summaryrefslogtreecommitdiff
path: root/toxav/audio.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/audio.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/audio.h')
-rw-r--r--toxav/audio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxav/audio.h b/toxav/audio.h
index 6832f6a9..5f9d7f7d 100644
--- a/toxav/audio.h
+++ b/toxav/audio.h
@@ -22,14 +22,14 @@
22#ifndef AUDIO_H 22#ifndef AUDIO_H
23#define AUDIO_H 23#define AUDIO_H
24 24
25#include <opus.h>
26#include <pthread.h>
27
28#include "toxav.h" 25#include "toxav.h"
29 26
30#include "../toxcore/logger.h" 27#include "../toxcore/logger.h"
31#include "../toxcore/util.h" 28#include "../toxcore/util.h"
32 29
30#include <opus.h>
31#include <pthread.h>
32
33struct RTPMessage; 33struct RTPMessage;
34 34
35typedef struct ACSession_s { 35typedef struct ACSession_s {