Merge "define LOG_TAG before including android/log.h" am: 35dcc67558
am: 6f5dc6b03d

Change-Id: I0611b42b0a5c211f5b0bc59d23d1dee2f4c7a7d9
diff --git a/otherlibs/highgui/cvcap_socket.cpp b/otherlibs/highgui/cvcap_socket.cpp
index 6e2f01e..96e4f0d 100644
--- a/otherlibs/highgui/cvcap_socket.cpp
+++ b/otherlibs/highgui/cvcap_socket.cpp
@@ -47,15 +47,15 @@
 // capture video from a socket connection
 //
 
+#define LOG_TAG "CVJNI"
+#define LOGV(...) __android_log_print(ANDROID_LOG_SILENT, LOG_TAG, __VA_ARGS__)
+
 #include "_highgui.h"
 #include <android/log.h>
 #include <errno.h>
 #include <netdb.h>
 #include <unistd.h>
 
-#define LOGV(...) __android_log_print(ANDROID_LOG_SILENT, LOG_TAG, __VA_ARGS__)
-#define LOG_TAG "CVJNI"
-
 #ifdef NDEBUG
 #define CV_WARN(message)
 #else