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

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dbitstream_io.cpp46 uint8 *overrunBuffer, int oBSize)
67 stream->oBSize = oBSize;
270 if (stream->write_pos + numExtraBytes >= stream->oBSize)
272 stream->oBSize = stream->write_pos + numExtraBytes + 100;
273 stream->oBSize &= (~0x3); // make it multiple of 4
282 encvid->oBSize = stream->oBSize;
284 stream->oBSize, DEFAULT_ATTR);
296 stream->buf_size = stream->oBSize;
45 BitstreamEncInit(AVCEncBitstream *stream, uint8 *buffer, int buf_size, uint8 *overrunBuffer, int oBSize) argument
[all...]
H A Davcenc_int.h140 int oBSize; /* size of allocated overrun buffer */ member in struct:tagEncBitstream
377 int oBSize; /* size of allocated overrun buffer */ member in struct:tagEncObject
/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
340 Int oBSize; /* size of allocated overrun buffer */ member in struct:tagVideoEncData

Completed in 65 milliseconds