summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Jia <wjia@google.com>2015-08-17 18:09:22 -0700
committerWei Jia <wjia@google.com>2015-08-17 18:09:22 -0700
commit65842db06c2d77e53cc5ac61692160d844cc7d0a (patch)
treee0d37e05418a640e4a21472a0821c07518604b15
parente4ac35fa524b011f272d396b2c12515382bddb94 (diff)
parentb46eb8d9f8bff2e6ddec1902acc9d2ad65147d68 (diff)
downloadframeworks_av-65842db06c2d77e53cc5ac61692160d844cc7d0a.zip
frameworks_av-65842db06c2d77e53cc5ac61692160d844cc7d0a.tar.gz
frameworks_av-65842db06c2d77e53cc5ac61692160d844cc7d0a.tar.bz2
Merge commit 'b46eb8d9' into HEAD
SoftAVCEnc: check requested memory size before allocation. Bug: 20674674 (cherry picked from commit f6fe4340219a8e674f3250fe32d4697ec8184b24) Change-Id: Ib52a26de912fd5a9a08dd9948885fb4a9b32e9e6
-rw-r--r--media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp b/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp
index ed3dca0..523e785 100644
--- a/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp
+++ b/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp
@@ -234,6 +234,10 @@ OMX_ERRORTYPE SoftAVCEncoder::initEncParams() {
|| mStoreMetaDataInBuffers) {
// Color conversion is needed.
free(mInputFrameData);
+ if (((uint64_t)mVideoWidth * mVideoHeight) > ((uint64_t)INT32_MAX / 3)) {
+ ALOGE("Buffer size is too big.");
+ return OMX_ErrorUndefined;
+ }
mInputFrameData =
(uint8_t *) malloc((mVideoWidth * mVideoHeight * 3 ) >> 1);
CHECK(mInputFrameData != NULL);
@@ -255,6 +259,10 @@ OMX_ERRORTYPE SoftAVCEncoder::initEncParams() {
int32_t nMacroBlocks = ((((mVideoWidth + 15) >> 4) << 4) *
(((mVideoHeight + 15) >> 4) << 4)) >> 8;
CHECK(mSliceGroup == NULL);
+ if (nMacroBlocks > SIZE_MAX / sizeof(uint32_t)) {
+ ALOGE("requested memory size is too big.");
+ return OMX_ErrorUndefined;
+ }
mSliceGroup = (uint32_t *) malloc(sizeof(uint32_t) * nMacroBlocks);
CHECK(mSliceGroup != NULL);
for (int ii = 0, idx = 0; ii < nMacroBlocks; ++ii) {