Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d191213a authored by Glenn Kasten's avatar Glenn Kasten Committed by Android (Google) Code Review
Browse files

Merge "Use correct syntax for #include <> """

parents 27e52c70 b4d30748
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

#include <libsonivox/jet.h>
#include <libsonivox/eas_types.h>
#include "AudioTrack.h"
#include <media/AudioTrack.h>


namespace android {
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
#include <stdlib.h>
#include <string.h>
#include <new>
#include <EffectBundle.h>
#include "EffectBundle.h"


// effect_handle_t interface implementation for bass boost
+3 −2
Original line number Diff line number Diff line
@@ -24,8 +24,9 @@
#include <stdlib.h>
#include <string.h>
#include <new>
#include <EffectReverb.h>
#include <LVREV.h>
#include "EffectReverb.h"
// from Reverb/lib
#include "LVREV.h"

// effect_handle_t interface implementation for reverb
extern "C" const struct effect_interface_s gReverbInterface;
+6 −4
Original line number Diff line number Diff line
@@ -16,16 +16,18 @@
*/

#define LOG_TAG "mediaserver"
//#define LOG_NDEBUG 0

#include <binder/IPCThreadState.h>
#include <binder/ProcessState.h>
#include <binder/IServiceManager.h>
#include <utils/Log.h>

#include <AudioFlinger.h>
#include <CameraService.h>
#include <MediaPlayerService.h>
#include <AudioPolicyService.h>
// from LOCAL_C_INCLUDES
#include "AudioFlinger.h"
#include "CameraService.h"
#include "MediaPlayerService.h"
#include "AudioPolicyService.h"

using namespace android;