Searched refs:pStreamMem (Results 1 - 2 of 2) sorted by relevance

/hardware/qcom/camera/QCamera2/HAL3/
H A DQCamera3PostProc.cpp275 QCamera3Memory *pStreamMem = main_stream->getStreamBufs(); local
276 if (pStreamMem == NULL) {
281 encode_parm.num_src_bufs = pStreamMem->getCnt();
283 if (pStreamMem != NULL) {
285 encode_parm.src_main_buf[i].buf_size = pStreamMem->getSize(i);
286 encode_parm.src_main_buf[i].buf_vaddr = (uint8_t *)pStreamMem->getPtr(i);
287 encode_parm.src_main_buf[i].fd = pStreamMem->getFd(i);
299 pStreamMem = thumb_stream->getStreamBufs();
300 if (pStreamMem == NULL) {
308 encode_parm.num_tmb_bufs = pStreamMem
[all...]
/hardware/qcom/camera/QCamera2/HAL/
H A DQCameraPostProc.cpp279 QCameraMemory *pStreamMem = main_stream->getStreamBufs(); local
280 if (pStreamMem == NULL) {
285 encode_parm.num_src_bufs = pStreamMem->getCnt();
287 camera_memory_t *stream_mem = pStreamMem->getMemory(i, false);
292 encode_parm.src_main_buf[i].fd = pStreamMem->getFd(i);
302 pStreamMem = thumb_stream->getStreamBufs();
303 if (pStreamMem == NULL) {
311 encode_parm.num_tmb_bufs = pStreamMem->getCnt();
312 for (int i = 0; i < pStreamMem->getCnt(); i++) {
313 camera_memory_t *stream_mem = pStreamMem
[all...]

Completed in 4667 milliseconds