Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 6 of 6) sorted by relevance

/device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/
Dmm_qcamera_main_menu.c291 char out_buf = INVALID_KEY_PRESS; in keypress_to_event() local
294 out_buf = tolower(keypress); in keypress_to_event()
295 out_buf = out_buf - 'a' + 1; in keypress_to_event()
297 out_buf = keypress; in keypress_to_event()
298 out_buf = keypress - '1' + BASE_OFFSET_NUM; in keypress_to_event()
300 return out_buf; in keypress_to_event()
/device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/
Dmm_qcamera_main_menu.c275 char out_buf = INVALID_KEY_PRESS; in keypress_to_event() local
278 out_buf = tolower(keypress); in keypress_to_event()
279 out_buf = out_buf - 'a'; in keypress_to_event()
281 out_buf = keypress - '0'; in keypress_to_event()
283 return out_buf; in keypress_to_event()
/device/moto/shamu/camera/QCamera2/HAL/
DQCameraPostProc.h164 static int getJpegMemory(omx_jpeg_ouput_buf_t *out_buf);
DQCameraPostProc.cpp2423 int QCameraPostProcessor::getJpegMemory(omx_jpeg_ouput_buf_t *out_buf) in getJpegMemory() argument
2425 CDBG_HIGH("%s: Allocating jpeg out buffer of size: %d", __func__, out_buf->size); in getJpegMemory()
2426 QCameraPostProcessor *procInst = (QCameraPostProcessor *) out_buf->handle; in getJpegMemory()
2427 camera_memory_t *cam_mem = procInst->m_parent->mGetMemory(-1, out_buf->size, in getJpegMemory()
2429 out_buf->mem_hdl = cam_mem; in getJpegMemory()
2430 out_buf->vaddr = cam_mem->data; in getJpegMemory()
/device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
DQualcommUsbCamera.cpp119 static int convert_YUYV_to_420_NV12(char *in_buf, char *out_buf, int wd, int ht);
718 static int convert_YUYV_to_420_NV12(char *in_buf, char *out_buf, int wd, int ht) in convert_YUYV_to_420_NV12() argument
728 out_buf[row * wd + col / 2] = in_buf[row * wd * 2 + col]; in convert_YUYV_to_420_NV12()
735 out_buf[uv_row * wd + col / 2]= in_buf[row * wd * 2 + col + 2]; in convert_YUYV_to_420_NV12()
736 out_buf[uv_row * wd + col / 2 + 1] = in_buf[row * wd * 2 + col]; in convert_YUYV_to_420_NV12()
/device/htc/flounder/audio/hal/
Daudio_hw.c1563 audio_buffer_t out_buf; in read_and_process_frames() local
1633 out_buf.frameCount = frames - frames_wr; in read_and_process_frames()
1634 out_buf.s16 = (int16_t *)proc_buf_out + frames_wr * in->config.channels; in read_and_process_frames()
1644 &out_buf); in read_and_process_frames()
1659 if (out_buf.frameCount == 0) { in read_and_process_frames()
1664 if ((frames_wr + (ssize_t)out_buf.frameCount) <= frames) { in read_and_process_frames()
1665 frames_wr += out_buf.frameCount; in read_and_process_frames()
1669 (unsigned int)frames_wr, out_buf.frameCount, (unsigned int)frames); in read_and_process_frames()