HomeSort by relevance Sort by last modified time
    Searched defs:FrameSize (Results 1 - 4 of 4) sorted by null

  /external/opencore/codecs_v2/omx/omx_h264/include/
avc_dec.h 58 FrameSize = 0;
68 uint32 FrameSize;
  /external/opencore/codecs_v2/omx/omx_m4v/src/
mpeg4_dec.cpp 94 OMX_S32 FrameSize, InputSize, InitSize;
227 FrameSize = (((iDisplay_Width + 15) >> 4) << 4) * (((iDisplay_Height + 15) >> 4) << 4);
232 if (FrameSize <= OldFrameSize)
234 *aOutputLength = (FrameSize * 3) >> 1;
237 pSrc[1] = pSrc[0] + FrameSize;
238 pSrc[2] = pSrc[0] + FrameSize + FrameSize / 4;
240 *aOutputLength = (FrameSize * 3) >> 1;
242 oscl_memcpy(aOutBuffer, pSrc[0], FrameSize);
243 oscl_memcpy(aOutBuffer + FrameSize, pSrc[1], FrameSize >> 2)
    [all...]
  /external/opencore/fileformats/mp3/parser/include/
imp3ff.h 97 uint32 FrameSize;
224 * @param framesize Size of the frame data read
228 OSCL_IMPORT_REF MP3ErrorType GetNextMediaSample(uint8 *buf, uint32 size, uint32& framesize, uint32& timestamp);
  /external/opencore/codecs_v2/omx/omx_h264/src/
avc_dec.cpp 62 *aYuvBuffer = pAvcDecoder_OMX->pDpbBuffer + i * pAvcDecoder_OMX->FrameSize;
93 pAvcDecoder_OMX->FrameSize = (aSizeInMbs << 7) * 3;
94 pAvcDecoder_OMX->pDpbBuffer = (uint8*) oscl_malloc(aNumBuffers * (pAvcDecoder_OMX->FrameSize));
118 int32 Index, Release, FrameSize;
134 FrameSize = Output.pitch * Output.height;
136 if (FrameSize <= OldFrameSize)
140 oscl_memcpy(aOutBuffer, Output.YCbCr[0], FrameSize);
141 oscl_memcpy(aOutBuffer + FrameSize, Output.YCbCr[1], FrameSize >> 2);
142 oscl_memcpy(aOutBuffer + FrameSize + FrameSize / 4, Output.YCbCr[2], FrameSize >> 2)
    [all...]

Completed in 77 milliseconds