Home
last modified time | relevance | path

Searched refs:outBuf (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/common/omx-components/videocodec/
DOMXVideoEncoderMPEG4.cpp85 VideoEncOutputBuffer outBuf; in ProcessorProcess() local
111 outBuf.data = in ProcessorProcess()
113 outBuf.dataSize = 0; in ProcessorProcess()
114 outBuf.bufferSize = buffers[OUTPORT_INDEX]->nAllocLen - buffers[OUTPORT_INDEX]->nOffset; in ProcessorProcess()
133 outBuf.format = OUTPUT_CODEC_DATA; in ProcessorProcess()
134 ret = mVideoEncoder->getOutput(&outBuf); in ProcessorProcess()
142 LOGV("output codec data size = %d", outBuf.dataSize); in ProcessorProcess()
149 outfilledlen = outBuf.dataSize; in ProcessorProcess()
159 outBuf.format = OUTPUT_EVERYTHING; in ProcessorProcess()
160 mVideoEncoder->getOutput(&outBuf); in ProcessorProcess()
[all …]
DOMXVideoEncoderH263.cpp93 VideoEncOutputBuffer outBuf; in ProcessorProcess() local
121 outBuf.data = buffers[OUTPORT_INDEX]->pBuffer + buffers[OUTPORT_INDEX]->nOffset; in ProcessorProcess()
122 outBuf.bufferSize = buffers[OUTPORT_INDEX]->nAllocLen - buffers[OUTPORT_INDEX]->nOffset; in ProcessorProcess()
123 outBuf.dataSize = 0; in ProcessorProcess()
146 outBuf.format = OUTPUT_EVERYTHING; in ProcessorProcess()
147 ret = mVideoEncoder->getOutput(&outBuf); in ProcessorProcess()
160 LOGV("output data size = %d", outBuf.dataSize); in ProcessorProcess()
161 outfilledlen = outBuf.dataSize; in ProcessorProcess()
162 outtimestamp = outBuf.timeStamp; in ProcessorProcess()
165 if (outBuf.flag & ENCODE_BUFFERFLAG_SYNCFRAME) { in ProcessorProcess()
[all …]
DOMXVideoEncoderAVC.cpp447 VideoEncOutputBuffer outBuf; in ProcessDataRetrieve() local
448 outBuf.data = buffers[OUTPORT_INDEX]->pBuffer; in ProcessDataRetrieve()
449 outBuf.bufferSize = buffers[OUTPORT_INDEX]->nAllocLen; in ProcessDataRetrieve()
450 outBuf.dataSize = 0; in ProcessDataRetrieve()
451 outBuf.remainingSize = 0; in ProcessDataRetrieve()
452 outBuf.flag = 0; in ProcessDataRetrieve()
453 outBuf.timeStamp = 0; in ProcessDataRetrieve()
454 outBuf.offset = 0; in ProcessDataRetrieve()
458 outBuf.format = OUTPUT_EVERYTHING; in ProcessDataRetrieve()
462 outBuf.format = OUTPUT_ONE_NAL; in ProcessDataRetrieve()
[all …]
DOMXVideoEncoderVP8.cpp78 VideoEncOutputBuffer outBuf; in ProcessorProcess() local
124 outBuf.data = in ProcessorProcess()
126 outBuf.dataSize = 0; in ProcessorProcess()
127 outBuf.bufferSize = buffers[OUTPORT_INDEX]->nAllocLen - buffers[OUTPORT_INDEX]->nOffset; in ProcessorProcess()
144 outBuf.format = OUTPUT_EVERYTHING; in ProcessorProcess()
145 ret = mVideoEncoder->getOutput(&outBuf); in ProcessorProcess()
158 LOGV("VP8 encode output data size = %d", outBuf.dataSize); in ProcessorProcess()
161 outfilledlen = outBuf.dataSize; in ProcessorProcess()
164 if (outBuf.flag & ENCODE_BUFFERFLAG_SYNCFRAME) { in ProcessorProcess()
168 if (outBuf.flag & ENCODE_BUFFERFLAG_ENDOFFRAME) { in ProcessorProcess()