Home | History | Annotate | Download | only in src

Lines Matching refs:oBSize

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);
817 stream->bufferSize = stream->oBSize;
821 if (stream->byteCount + numExtraBytes >= stream->oBSize)
823 stream->oBSize = stream->byteCount + numExtraBytes + 100;
827 stream->oBSize &= (~0x3); // make it multiple of 4
828 video->oBSize = stream->oBSize;
829 video->overrunBuffer = (UChar*) M4VENC_MALLOC(sizeof(UChar) * stream->oBSize);
842 stream->bufferSize = stream->oBSize;