summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-08-08 13:13:29 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-08 13:13:29 -0700
commitdadf369042250e6e96a745526e8f27db3d3ce71c (patch)
treead58044e45949e2b1283beeb3dbc580b677f1d28
parent1a562740beb85b1a90fc7f44a7b86cd7f0862810 (diff)
parent49e74946370e7af2378e28733ba6d8df8951b068 (diff)
downloadframeworks_av-dadf369042250e6e96a745526e8f27db3d3ce71c.zip
frameworks_av-dadf369042250e6e96a745526e8f27db3d3ce71c.tar.gz
frameworks_av-dadf369042250e6e96a745526e8f27db3d3ce71c.tar.bz2
am 49e74946: am 44237a8d: am b71298ee: Merge "avcenc: Initialize all memory allocated by the CBAVC_Malloc callback function"
* commit '49e74946370e7af2378e28733ba6d8df8951b068': avcenc: Initialize all memory allocated by the CBAVC_Malloc callback function
-rw-r--r--media/libstagefright/codecs/avc/common/include/avcapi_common.h2
-rw-r--r--media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp5
2 files changed, 5 insertions, 2 deletions
diff --git a/media/libstagefright/codecs/avc/common/include/avcapi_common.h b/media/libstagefright/codecs/avc/common/include/avcapi_common.h
index 001c1a1..abffe6e 100644
--- a/media/libstagefright/codecs/avc/common/include/avcapi_common.h
+++ b/media/libstagefright/codecs/avc/common/include/avcapi_common.h
@@ -213,7 +213,7 @@ typedef void (*FuctionType_FrameUnbind)(void *userData, int);
memory usage.
\param "size" "Size of requested memory in bytes."
\param "attribute" "Some value specifying types, priority, etc. of the memory."
-\return "The address of the allocated memory"
+\return "The address of the allocated, zero-initialized memory"
*/
typedef void* (*FunctionType_Malloc)(void *userData, int32 size, int attribute);
diff --git a/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp b/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp
index b6cd6bb..a2ef3a1 100644
--- a/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp
+++ b/media/libstagefright/codecs/avc/enc/SoftAVCEncoder.cpp
@@ -137,7 +137,10 @@ inline static void ConvertYUV420SemiPlanarToYUV420Planar(
static void* MallocWrapper(
void *userData, int32_t size, int32_t attrs) {
- return malloc(size);
+ void *ptr = malloc(size);
+ if (ptr)
+ memset(ptr, 0, size);
+ return ptr;
}
static void FreeWrapper(void *userData, void* ptr) {