summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2017-07-31 20:17:07 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-31 20:17:07 +0000
commitba430240a75b37b39dbc21f4789d5b0638dbf367 (patch)
treeac1b932ea6f87b41b2e13a84c8417cfd6eda6e16
parent78a7feeb2601037bba61aec5f24302896dace6bc (diff)
parent3f08c356fcee333c0f1af25bdf733831bd4be1d9 (diff)
downloadvoip-ba430240a75b37b39dbc21f4789d5b0638dbf367.tar.gz
Merge "frameworks/opt/net/voip: use proper nativehelper headers" am: eca3c26d49 am: 07e4fc6758 am: 47f9580aaa am: 7e2aff9fdb
am: 3f08c356fc Change-Id: I170a5285be691a7dcc01399f5477887c0134bea6
-rw-r--r--src/jni/rtp/AudioGroup.cpp4
-rw-r--r--src/jni/rtp/RtpStream.cpp2
-rw-r--r--src/jni/rtp/util.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/jni/rtp/AudioGroup.cpp b/src/jni/rtp/AudioGroup.cpp
index bad584b..a3f62b8 100644
--- a/src/jni/rtp/AudioGroup.cpp
+++ b/src/jni/rtp/AudioGroup.cpp
@@ -45,10 +45,10 @@
#include <system/audio_effects/effect_aec.h>
#include <system/audio.h>
-#include <ScopedUtfChars.h>
+#include <nativehelper/ScopedUtfChars.h>
#include "jni.h"
-#include "JNIHelp.h"
+#include <nativehelper/JNIHelp.h>
#include "AudioCodec.h"
#include "EchoSuppressor.h"
diff --git a/src/jni/rtp/RtpStream.cpp b/src/jni/rtp/RtpStream.cpp
index bfe8e24..4461e31 100644
--- a/src/jni/rtp/RtpStream.cpp
+++ b/src/jni/rtp/RtpStream.cpp
@@ -27,7 +27,7 @@
#include <utils/Log.h>
#include "jni.h"
-#include "JNIHelp.h"
+#include <nativehelper/JNIHelp.h>
extern int parse(JNIEnv *env, jstring jAddress, int port, sockaddr_storage *ss);
diff --git a/src/jni/rtp/util.cpp b/src/jni/rtp/util.cpp
index 1d702fc..6b94b7b 100644
--- a/src/jni/rtp/util.cpp
+++ b/src/jni/rtp/util.cpp
@@ -20,7 +20,7 @@
#include <netinet/in.h>
#include "jni.h"
-#include "JNIHelp.h"
+#include <nativehelper/JNIHelp.h>
int parse(JNIEnv *env, jstring jAddress, int port, sockaddr_storage *ss)
{