summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/httplive
diff options
context:
space:
mode:
authorDavid Williams <david.williams@sonymobile.com>2012-09-06 16:33:38 +0200
committerHidenari Koshimae <hidenari.koshimae@sonymobile.com>2014-03-10 11:38:55 +0900
commita8b8488f703bb6bda039d7d98f87e4f9d845664d (patch)
tree27b482128c9930b9b0ce78f1e24f365131fcf20b /media/libstagefright/httplive
parent2ad7af29bb667d939f27417011567847c4b62f94 (diff)
downloadframeworks_av-a8b8488f703bb6bda039d7d98f87e4f9d845664d.zip
frameworks_av-a8b8488f703bb6bda039d7d98f87e4f9d845664d.tar.gz
frameworks_av-a8b8488f703bb6bda039d7d98f87e4f9d845664d.tar.bz2
Remove streaming URI from default logs
Streaming URI should not be visible in default logcat logs Change-Id: I104cc56b5335f8c5621013e4c5be8028f0379833
Diffstat (limited to 'media/libstagefright/httplive')
-rw-r--r--media/libstagefright/httplive/LiveSession.cpp2
-rw-r--r--media/libstagefright/httplive/M3UParser.cpp3
2 files changed, 2 insertions, 3 deletions
diff --git a/media/libstagefright/httplive/LiveSession.cpp b/media/libstagefright/httplive/LiveSession.cpp
index fc1353a..bdf5787 100644
--- a/media/libstagefright/httplive/LiveSession.cpp
+++ b/media/libstagefright/httplive/LiveSession.cpp
@@ -400,7 +400,7 @@ void LiveSession::onConnect(const sp<AMessage> &msg) {
mPlaylist = fetchPlaylist(url.c_str(), NULL /* curPlaylistHash */, &dummy);
if (mPlaylist == NULL) {
- ALOGE("unable to fetch master playlist '%s'.", url.c_str());
+ ALOGE("unable to fetch master playlist <URL suppressed>.");
postPrepared(ERROR_IO);
return;
diff --git a/media/libstagefright/httplive/M3UParser.cpp b/media/libstagefright/httplive/M3UParser.cpp
index 5ef7c0f..0f390c3 100644
--- a/media/libstagefright/httplive/M3UParser.cpp
+++ b/media/libstagefright/httplive/M3UParser.cpp
@@ -780,8 +780,7 @@ status_t M3UParser::parseCipherInfo(
if (MakeURL(baseURI.c_str(), val.c_str(), &absURI)) {
val = absURI;
} else {
- ALOGE("failed to make absolute url for '%s'.",
- val.c_str());
+ ALOGE("failed to make absolute url for <URL suppressed>.");
}
}