summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2015-08-23 19:19:24 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-08-23 19:19:24 +0000
commit492bba08202a601e96a13b26422c85b3fb1a5ee0 (patch)
tree1a130ed4ae2a3a03371b7b01d2cbb1900719279d
parent4c6556d17f4073ed0b4d11abf42df9c32c339291 (diff)
parentd18bb120442fcc04efe269e6a26f83265eea40c8 (diff)
downloadframeworks_av-492bba08202a601e96a13b26422c85b3fb1a5ee0.zip
frameworks_av-492bba08202a601e96a13b26422c85b3fb1a5ee0.tar.gz
frameworks_av-492bba08202a601e96a13b26422c85b3fb1a5ee0.tar.bz2
am d18bb120: am 09f71c56: am dedaca6f: Limit allocations to avoid out-of-memory
* commit 'd18bb120442fcc04efe269e6a26f83265eea40c8': Limit allocations to avoid out-of-memory
-rw-r--r--media/libstagefright/MPEG4Extractor.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/media/libstagefright/MPEG4Extractor.cpp b/media/libstagefright/MPEG4Extractor.cpp
index 5cd3049..e09ecc2 100644
--- a/media/libstagefright/MPEG4Extractor.cpp
+++ b/media/libstagefright/MPEG4Extractor.cpp
@@ -3086,16 +3086,24 @@ status_t MPEG4Source::start(MetaData *params) {
mWantsNALFragments = false;
}
+ int32_t tmp;
+ CHECK(mFormat->findInt32(kKeyMaxInputSize, &tmp));
+ size_t max_size = tmp;
+
+ // A somewhat arbitrary limit that should be sufficient for 8k video frames
+ // If you see the message below for a valid input stream: increase the limit
+ if (max_size > 64 * 1024 * 1024) {
+ ALOGE("bogus max input size: %zu", max_size);
+ return ERROR_MALFORMED;
+ }
mGroup = new MediaBufferGroup;
-
- int32_t max_size;
- CHECK(mFormat->findInt32(kKeyMaxInputSize, &max_size));
-
mGroup->add_buffer(new MediaBuffer(max_size));
mSrcBuffer = new (std::nothrow) uint8_t[max_size];
if (mSrcBuffer == NULL) {
// file probably specified a bad max size
+ delete mGroup;
+ mGroup = NULL;
return ERROR_MALFORMED;
}