diff options
author | Glenn Kasten <gkasten@google.com> | 2015-02-20 00:35:48 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-02-20 00:35:48 +0000 |
commit | a52b8d1f4890f0a695cfbffda106579bcc3a16b5 (patch) | |
tree | c38befe0d4fcc7cfe93ca650d30b51d36b4ffd52 /services/audioflinger | |
parent | 6ff474ed7eefe003216a3f98992f1ece047d64a2 (diff) | |
parent | ad8510a339ffab330c2c46e5c247dd1cf9e15c22 (diff) | |
download | frameworks_av-a52b8d1f4890f0a695cfbffda106579bcc3a16b5.zip frameworks_av-a52b8d1f4890f0a695cfbffda106579bcc3a16b5.tar.gz frameworks_av-a52b8d1f4890f0a695cfbffda106579bcc3a16b5.tar.bz2 |
Merge "Include what you use"
Diffstat (limited to 'services/audioflinger')
-rw-r--r-- | services/audioflinger/FastMixer.cpp | 1 | ||||
-rw-r--r-- | services/audioflinger/FastMixer.h | 4 | ||||
-rw-r--r-- | services/audioflinger/Threads.cpp | 2 | ||||
-rw-r--r-- | services/audioflinger/Tracks.cpp | 1 |
4 files changed, 4 insertions, 4 deletions
diff --git a/services/audioflinger/FastMixer.cpp b/services/audioflinger/FastMixer.cpp index 8f05ef0..67e2e6e 100644 --- a/services/audioflinger/FastMixer.cpp +++ b/services/audioflinger/FastMixer.cpp @@ -27,6 +27,7 @@ #include "Configuration.h" #include <time.h> +#include <utils/Debug.h> #include <utils/Log.h> #include <utils/Trace.h> #include <system/audio.h> diff --git a/services/audioflinger/FastMixer.h b/services/audioflinger/FastMixer.h index fde8c2b..7649db2 100644 --- a/services/audioflinger/FastMixer.h +++ b/services/audioflinger/FastMixer.h @@ -17,11 +17,7 @@ #ifndef ANDROID_AUDIO_FAST_MIXER_H #define ANDROID_AUDIO_FAST_MIXER_H -#include <linux/futex.h> -#include <sys/syscall.h> -#include <utils/Debug.h> #include "FastThread.h" -#include <utils/Thread.h> #include "StateQueue.h" #include "FastMixerState.h" #include "FastMixerDumpState.h" diff --git a/services/audioflinger/Threads.cpp b/services/audioflinger/Threads.cpp index 15dd408..384bd25 100644 --- a/services/audioflinger/Threads.cpp +++ b/services/audioflinger/Threads.cpp @@ -23,7 +23,9 @@ #include "Configuration.h" #include <math.h> #include <fcntl.h> +#include <linux/futex.h> #include <sys/stat.h> +#include <sys/syscall.h> #include <cutils/properties.h> #include <media/AudioParameter.h> #include <media/AudioResamplerPublic.h> diff --git a/services/audioflinger/Tracks.cpp b/services/audioflinger/Tracks.cpp index 7757ea2..78cec31 100644 --- a/services/audioflinger/Tracks.cpp +++ b/services/audioflinger/Tracks.cpp @@ -20,6 +20,7 @@ //#define LOG_NDEBUG 0 #include "Configuration.h" +#include <linux/futex.h> #include <math.h> #include <sys/syscall.h> #include <utils/Log.h> |