summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/foundation
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2013-02-06 10:44:39 -0800
committerAndreas Huber <andih@google.com>2013-02-06 10:44:39 -0800
commit0df36ec3303c2c6bf9b42c07945ac8bd234153f3 (patch)
tree558d8e8d18ce64e84114d3b3d53209c0b4e27693 /media/libstagefright/foundation
parentec0c597cabf169ca646bcea5faac1bd81ed4484d (diff)
downloadframeworks_av-0df36ec3303c2c6bf9b42c07945ac8bd234153f3.zip
frameworks_av-0df36ec3303c2c6bf9b42c07945ac8bd234153f3.tar.gz
frameworks_av-0df36ec3303c2c6bf9b42c07945ac8bd234153f3.tar.bz2
HLS now properly publishes its "seekable" flags after connection
has successfully completed and a sufficient amount of data fetched, and only then signals that preparation is completed. Change-Id: I7684a14238b826909f518f2af506966e522dfcfc
Diffstat (limited to 'media/libstagefright/foundation')
-rw-r--r--media/libstagefright/foundation/ALooperRoster.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/media/libstagefright/foundation/ALooperRoster.cpp b/media/libstagefright/foundation/ALooperRoster.cpp
index dff931d..ad10d2b 100644
--- a/media/libstagefright/foundation/ALooperRoster.cpp
+++ b/media/libstagefright/foundation/ALooperRoster.cpp
@@ -82,7 +82,8 @@ status_t ALooperRoster::postMessage_l(
ssize_t index = mHandlers.indexOfKey(msg->target());
if (index < 0) {
- ALOGW("failed to post message. Target handler not registered.");
+ ALOGW("failed to post message '%s'. Target handler not registered.",
+ msg->debugString().c_str());
return -ENOENT;
}