summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-10-15 08:54:17 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-15 08:54:17 -0700
commitd804a1a27b42541157fddf725593d4e2ccaa6ad5 (patch)
tree0b8b7c7a30cbdf27ae48aa58a44277f35aec13a1
parent8cde59da2dd8540466aff5e94e9a6e5f74df1f10 (diff)
parentb9d3038ec950665639e26acd51329ebc800e780d (diff)
downloadframeworks_av-d804a1a27b42541157fddf725593d4e2ccaa6ad5.zip
frameworks_av-d804a1a27b42541157fddf725593d4e2ccaa6ad5.tar.gz
frameworks_av-d804a1a27b42541157fddf725593d4e2ccaa6ad5.tar.bz2
am e1f3976b: Merge "Make sure we cache the sampleTable again if using the caching datasource." into gingerbread
Merge commit 'e1f3976bb4eab0d7c46bc8596679d4d00695148c' into gingerbread-plus-aosp * commit 'e1f3976bb4eab0d7c46bc8596679d4d00695148c': Make sure we cache the sampleTable again if using the caching datasource.
-rw-r--r--media/libstagefright/MPEG4Extractor.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/media/libstagefright/MPEG4Extractor.cpp b/media/libstagefright/MPEG4Extractor.cpp
index 4bbc251..f404708 100644
--- a/media/libstagefright/MPEG4Extractor.cpp
+++ b/media/libstagefright/MPEG4Extractor.cpp
@@ -498,7 +498,9 @@ status_t MPEG4Extractor::parseChunk(off_t *offset, int depth) {
if (chunk_type == FOURCC('s', 't', 'b', 'l')) {
LOGV("sampleTable chunk is %d bytes long.", (size_t)chunk_size);
- if (mDataSource->flags() & DataSource::kWantsPrefetching) {
+ if (mDataSource->flags()
+ & (DataSource::kWantsPrefetching
+ | DataSource::kIsCachingDataSource)) {
sp<MPEG4DataSource> cachedSource =
new MPEG4DataSource(mDataSource);