Searched defs:framesize (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddpb.cpp25 int level, framesize, num_fs; local
38 framesize = (int)(((FrameHeightInMbs * PicWidthInMbs) << 7) * 3);
41 video->padded_size = (int)((((FrameHeightInMbs + 2) * (PicWidthInMbs + 2)) << 7) * 3) - framesize;
68 dpb->dpb_size = dpb->num_fs * (framesize + video->padded_size);
69 // dpb->dpb_size = (uint32)MaxDPBX2[mapLev2Idx[level]]*512 + framesize;
101 dpb->used_size += (framesize + video->padded_size);
112 int framesize, ii; /* size of one frame */ local
152 framesize = (FrameHeightInMbs * PicWidthInMbs);
158 video->mblock = (AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR);
163 for (ii = 0; ii < framesize; i
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_api.cpp63 int framesize; local
171 framesize = video->FrameHeightInMbs * video->PicWidthInMbs;
173 video->mblock = (AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR);
185 encvid->mot16x16 = (AVCMV*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMV) * framesize, DEFAULT_ATTR);
191 encvid->intraSearch = (uint8*) avcHandle->CBAVC_Malloc(userData, sizeof(uint8) * framesize, DEFAULT_ATTR);
197 encvid->min_cost = (int*) avcHandle->CBAVC_Malloc(userData, sizeof(int) * framesize, DEFAULT_ATTR);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp799 M4OSA_UInt32 i = 0, iIncrementedDuration = 0, tnTimeMs=0, framesize =0; local
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_API.c2001 M4OSA_UInt32 framesize = 0; local
2006 while(framesize < inbuf_size)
2008 nal_size = inbuf_size - framesize - 4;
2009 buff = inbuff + framesize + 4;
2025 nal_size = (inbuf_size - framesize - 4) - nal_size;
2027 inbuff[framesize + 0] = (M4OSA_UInt8)((nal_size >> 24)& 0xFF);
2028 inbuff[framesize + 1] = (M4OSA_UInt8)((nal_size >> 16)& 0xFF);
2029 inbuff[framesize + 2] = (M4OSA_UInt8)((nal_size >> 8)& 0xFF);
2030 inbuff[framesize + 3] = (M4OSA_UInt8)((nal_size )& 0xFF);
2031 framesize
[all...]

Completed in 576 milliseconds