Home | History | Annotate | Download | only in src

Lines Matching refs:oBSize

714         video->oBSize = encParams->BufferSize[0] >> 3;
718 video->oBSize = PV_MAX((encParams->BufferSize[0] >> 3), (encParams->BufferSize[1] >> 3));
721 if (video->oBSize > DEFAULT_OVERRUN_BUFFER_SIZE || encParams->RC_Type == CONSTANT_Q) // set limit
723 video->oBSize = DEFAULT_OVERRUN_BUFFER_SIZE;
725 video->overrunBuffer = (UChar*) M4VENC_MALLOC(sizeof(UChar) * video->oBSize);
1436 BitstreamSetOverrunBuffer(currVol->stream, video->overrunBuffer, video->oBSize, video);