summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/chromium_http
diff options
context:
space:
mode:
authorXuefeng Deng <xuefeng.deng@intel.com>2012-07-24 16:52:43 +0800
committerShuo Gao <shuo.gao@intel.com>2012-08-17 16:40:42 +0800
commit300df42a7f51f2666d7ef4e73ac04101bbbb11bb (patch)
tree1a177d5cb73a76d7580b3f3c32409c1b72ef561f /media/libstagefright/chromium_http
parent64b3fe55f7edd16be32e07c28c2c90f84f3b9b80 (diff)
downloadframeworks_av-300df42a7f51f2666d7ef4e73ac04101bbbb11bb.zip
frameworks_av-300df42a7f51f2666d7ef4e73ac04101bbbb11bb.tar.gz
frameworks_av-300df42a7f51f2666d7ef4e73ac04101bbbb11bb.tar.bz2
libstagefright: Use LOG_BASIC when use chromium http stack
When using chromium http stack, the LogLevel is LOG_ALL, and in chromium_net, LOG_ALL will HexEncode all received data. thus playing a 10Mbps 1080P video stream will generate 20Mbps Hex Buffer for event logging. This is a heavy operation for logging. Change-Id: I28e8173e1aa806dd23014378d530d30187360060 Author: Xuefeng Deng <xuefeng.deng@intel.com> Singed-off-by: Shuo Gao <shuo.gao@intel.com> Signed-off-by: Bruce Beare <bruce.j.beare@intel.com> Signed-off-by: Jack Ren <jack.ren@intel.com> Author-tracking-BZ: 35737
Diffstat (limited to 'media/libstagefright/chromium_http')
-rw-r--r--media/libstagefright/chromium_http/support.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/chromium_http/support.cpp b/media/libstagefright/chromium_http/support.cpp
index 13ae3df..4e8e5f1 100644
--- a/media/libstagefright/chromium_http/support.cpp
+++ b/media/libstagefright/chromium_http/support.cpp
@@ -150,7 +150,7 @@ uint32 SfNetLog::NextID() {
}
net::NetLog::LogLevel SfNetLog::GetLogLevel() const {
- return LOG_ALL;
+ return LOG_BASIC;
}
////////////////////////////////////////////////////////////////////////////////