Searched defs:oBSize (Results 1 - 2 of 2) sorted by last modified time

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp78 stream->oBSize = 0;
776 Void BitstreamSetOverrunBuffer(BitstreamEncVideo* stream, UChar* overrunBuffer, Int oBSize, VideoEncData *video) argument
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...]
H A Dmp4lib_int.h36 Int oBSize; /* length of overrun buffer */ member in struct:tagBitstream
341 Int oBSize; /* size of allocated overrun buffer */ member in struct:tagVideoEncData

Completed in 66 milliseconds