summaryrefslogtreecommitdiff
authorTellen Yu <tellen.yu@amlogic.com>2017-04-10 08:49:06 (GMT)
committer Gerrit Code Review <gituser@git.myamlogic.com>2017-04-10 08:49:06 (GMT)
commitbd14a36ac3bb38159f440702a7fce68f875c4dfd (patch)
treeb7dffa84b1ee9828f52fd17b008b69422821e02b
parente1c60e2c4f88230e787655e71b925cfe83b470d5 (diff)
parentb7e2f3744f309074c01def9ea8e331b298f962e4 (diff)
downloadSubTitle-bd14a36ac3bb38159f440702a7fce68f875c4dfd.zip
SubTitle-bd14a36ac3bb38159f440702a7fce68f875c4dfd.tar.gz
SubTitle-bd14a36ac3bb38159f440702a7fce68f875c4dfd.tar.bz2
Merge "delete log for sub_socket" into m-amlogic
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);