OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:M4VENC_MALLOC
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
m4venc_oscl.h
31
#define
M4VENC_MALLOC
(size) malloc(size)
mp4enc_api.cpp
220
video = (VideoEncData *)
M4VENC_MALLOC
(sizeof(VideoEncData)); /* allocate memory for encData */
229
video->encParams = (VideoEncParams *)
M4VENC_MALLOC
(sizeof(VideoEncParams));
646
video->QPMB = (UChar *)
M4VENC_MALLOC
(nTotalMB * sizeof(UChar)); /* Memory for MB quantizers */
650
video->headerInfo.Mode = (UChar *)
M4VENC_MALLOC
(sizeof(UChar) * nTotalMB); /* Memory for MB Modes */
652
video->headerInfo.CBP = (UChar *)
M4VENC_MALLOC
(sizeof(UChar) * nTotalMB); /* Memory for CBP (Y and C) of each MB */
657
video->mot = (MOT **)
M4VENC_MALLOC
(sizeof(MOT *) * nTotalMB);
662
video->mot[idx] = (MOT *)
M4VENC_MALLOC
(sizeof(MOT) * 8);
669
video->intraArray = (UChar *)
M4VENC_MALLOC
(sizeof(UChar) * nTotalMB);
672
video->sliceNo = (UChar *)
M4VENC_MALLOC
(nTotalMB); /* Memory for Slice Numbers */
679
video->predDC = (typeDCStore *)
M4VENC_MALLOC
(nTotalMB * sizeof(typeDCStore))
[
all
...]
bitstream_io.cpp
55
stream = (BitstreamEncVideo *)
M4VENC_MALLOC
(sizeof(BitstreamEncVideo));
61
stream->bitstreamBuffer = (UChar *)
M4VENC_MALLOC
(stream->bufferSize * sizeof(UChar));
806
video->overrunBuffer = (UChar*)
M4VENC_MALLOC
(sizeof(UChar) * stream->oBSize);
829
video->overrunBuffer = (UChar*)
M4VENC_MALLOC
(sizeof(UChar) * stream->oBSize);
Completed in 59 milliseconds