diff options
author | Andreas Huber <andih@google.com> | 2010-12-16 11:31:13 -0800 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2010-12-16 11:31:13 -0800 |
commit | c4f297d612a06a1f5eeac0adca03852d51c85f72 (patch) | |
tree | 00ca0bdf67aa6d50e0536d9d83c4cc57f6f487b4 /media/libstagefright | |
parent | f76aca984c4754e4de2cd731d5b6bbdb169b7544 (diff) | |
download | frameworks_base-c4f297d612a06a1f5eeac0adca03852d51c85f72.zip frameworks_base-c4f297d612a06a1f5eeac0adca03852d51c85f72.tar.gz frameworks_base-c4f297d612a06a1f5eeac0adca03852d51c85f72.tar.bz2 |
Instead of asserting, gracefully abort and signal and error.
Change-Id: I170a602ed80e6c85a94e46deadfc02aaf92bfebb
Diffstat (limited to 'media/libstagefright')
-rw-r--r-- | media/libstagefright/httplive/LiveSession.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/media/libstagefright/httplive/LiveSession.cpp b/media/libstagefright/httplive/LiveSession.cpp index 62567be..30ac404 100644 --- a/media/libstagefright/httplive/LiveSession.cpp +++ b/media/libstagefright/httplive/LiveSession.cpp @@ -349,7 +349,11 @@ void LiveSession::onDownloadNext() { bool firstTime = (mPlaylist == NULL); mPlaylist = fetchPlaylist(url.c_str()); - CHECK(mPlaylist != NULL); + if (mPlaylist == NULL) { + LOGE("failed to load playlist at url '%s'", url.c_str()); + mDataSource->queueEOS(ERROR_IO); + return; + } if (firstTime) { Mutex::Autolock autoLock(mLock); @@ -446,7 +450,11 @@ void LiveSession::onDownloadNext() { sp<ABuffer> buffer; status_t err = fetchFile(uri.c_str(), &buffer); - CHECK_EQ(err, (status_t)OK); + if (err != OK) { + LOGE("failed to fetch .ts segment at url '%s'", uri.c_str()); + mDataSource->queueEOS(err); + return; + } CHECK_EQ((status_t)OK, decryptBuffer(mSeqNumber - firstSeqNumberInPlaylist, buffer)); |