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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 78 stream->oBSize = 0;
776 Void BitstreamSetOverrunBuffer(BitstreamEncVideo* stream, UChar* overrunBuffer, Int oBSize, VideoEncData *video)
779 stream->oBSize = oBSize;
795 if (stream->byteCount + numExtraBytes >= stream->oBSize)
797 stream->oBSize = stream->byteCount + numExtraBytes + 100;
798 stream->oBSize &= (~0x3); // make it multiple of 4
805 video->oBSize = stream->oBSize;
806 video->overrunBuffer = (UChar*) M4VENC_MALLOC(sizeof(UChar) * stream->oBSize);
    [all...]
bitstream_io.h 49 Void BitstreamSetOverrunBuffer(BitstreamEncVideo *stream, UChar *overrunBuffer, Int oBSize, VideoEncData *video);
mp4lib_int.h 36 Int oBSize; /* length of overrun buffer */
341 Int oBSize; /* size of allocated overrun buffer */
mp4enc_api.cpp 737 video->oBSize = encParams->BufferSize[0] >> 3;
741 video->oBSize = PV_MAX((encParams->BufferSize[0] >> 3), (encParams->BufferSize[1] >> 3));
744 if (video->oBSize > DEFAULT_OVERRUN_BUFFER_SIZE || encParams->RC_Type == CONSTANT_Q) // set limit
746 video->oBSize = DEFAULT_OVERRUN_BUFFER_SIZE;
748 video->overrunBuffer = (UChar*) M4VENC_MALLOC(sizeof(UChar) * video->oBSize);
    [all...]

Completed in 73 milliseconds