summaryrefslogtreecommitdiff
authorXiaoliang Wang <xiaoliang.wang@amlogic.com>2017-04-10 08:00:29 (GMT)
committer Xiaoliang Wang <xiaoliang.wang@amlogic.com>2017-04-10 08:00:29 (GMT)
commitb7e2f3744f309074c01def9ea8e331b298f962e4 (patch)
tree745615504fd1a21a03e2f0b74347aa02b6d66d4a
parentcc975495e1039978ba823c9ee2e09532364f877e (diff)
downloadSubTitle-b7e2f3744f309074c01def9ea8e331b298f962e4.zip
SubTitle-b7e2f3744f309074c01def9ea8e331b298f962e4.tar.gz
SubTitle-b7e2f3744f309074c01def9ea8e331b298f962e4.tar.bz2
delete log for sub_socket
Change-Id: Ic7f89f79e599377d767453d7657c287d32f2d533
Diffstat
-rw-r--r--jni/subtitle/sub_socket.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/jni/subtitle/sub_socket.cpp b/jni/subtitle/sub_socket.cpp
index 75e85de..3317a47 100644
--- a/jni/subtitle/sub_socket.cpp
+++ b/jni/subtitle/sub_socket.cpp
@@ -207,7 +207,7 @@ void child_connect(int sockfd) {
| (recvBuf[5] << 16)
| (recvBuf[6] << 8)
| recvBuf[7];
- ALOGI("child recv, mTotal:%d\n", mTotal);
+ //ALOGI("child recv, mTotal:%d\n", mTotal);
}
else if (recvBuf[0] == 0x53
&& recvBuf[1] == 0x50
@@ -218,7 +218,7 @@ void child_connect(int sockfd) {
| (recvBuf[5] << 16)
| (recvBuf[6] << 8)
| recvBuf[7];
- ALOGI("child recv, mStartPts:%" PRId64 "\n", mStartPts);
+ //ALOGI("child recv, mStartPts:%" PRId64 "\n", mStartPts);
}
else if (recvBuf[0] == 0x53
&& recvBuf[1] == 0x54
@@ -229,7 +229,7 @@ void child_connect(int sockfd) {
| (recvBuf[5] << 16)
| (recvBuf[6] << 8)
| recvBuf[7];
- ALOGI("child recv, mType:%d\n", mType);
+ //ALOGI("child recv, mType:%d\n", mType);
}
else if (recvBuf[0] == 0x53
&& recvBuf[1] == 0x52
@@ -239,7 +239,7 @@ void child_connect(int sockfd) {
| (recvBuf[5] << 16)
| (recvBuf[6] << 8)
| recvBuf[7];
- ALOGI("child recv, mTimeUs:%d\n", mTimeUs);
+ //ALOGI("child recv, mTimeUs:%d\n", mTimeUs);
}
else/* if (recvBuf[0] == 'A' && recvBuf[1] == 'M' && recvBuf[2] == 'L') */{
safeCopy(mLoopBuf, recvBuf, retLen);