Lines Matching refs:nFilledLen
686 …((ret = av_reallocp(&avctx->extradata, avctx->extradata_size + buffer->nFilledLen + AV_INPUT_BUFFE… in omx_encode_init()
690 …y(avctx->extradata + avctx->extradata_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen); in omx_encode_init()
691 avctx->extradata_size += buffer->nFilledLen; in omx_encode_init()
747 …buffer->nFilledLen = av_image_fill_arrays(dst, linesize, buffer->pBuffer, avctx->pix_fmt, s->strid… in omx_encode_frame()
789 …buffer->nFilledLen = av_image_fill_arrays(dst, linesize, buffer->pBuffer, avctx->pix_fmt, s->strid… in omx_encode_frame()
832 buffer->nFilledLen = 0; in omx_encode_frame()
858 …if ((ret = av_reallocp(&avctx->extradata, avctx->extradata_size + buffer->nFilledLen + AV_INPUT_BU… in omx_encode_frame()
862 …y(avctx->extradata + avctx->extradata_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen); in omx_encode_frame()
863 avctx->extradata_size += buffer->nFilledLen; in omx_encode_frame()
866 int newsize = s->output_buf_size + buffer->nFilledLen + AV_INPUT_BUFFER_PADDING_SIZE; in omx_encode_frame()
871 … memcpy(s->output_buf + s->output_buf_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen); in omx_encode_frame()
872 s->output_buf_size += buffer->nFilledLen; in omx_encode_frame()