Home
last modified time | relevance | path

Searched refs:in_buf (Results 1 – 3 of 3) sorted by relevance

/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.c1548 audio_buffer_t in_buf; in read_and_process_frames() local
1617 in_buf.frameCount = in->proc_buf_frames; in read_and_process_frames()
1618 in_buf.s16 = in->proc_buf_in; in read_and_process_frames()
1629 &in_buf, in read_and_process_frames()
1636 in->proc_buf_frames -= in_buf.frameCount; in read_and_process_frames()
1640 in->proc_buf_in + in_buf.frameCount * in->config.channels, in read_and_process_frames()
/device/lge/mako/camera/
DQualcommCameraHardware.cpp3057 yuv_image_type in_buf, out_buf; in runPreviewThread() local
3067 in_buf.imgPtr = (unsigned char*)mPreviewMapped[bufferIndex]->data; in runPreviewThread()
3068 in_buf.dx = out_buf.dx = previewWidth; in runPreviewThread()
3069 in_buf.dy = in_buf.dy = previewHeight; in runPreviewThread()
3070 conversion_result = LINK_yuv_convert_ycrcb420sp_to_yv12(&in_buf, &out_buf); in runPreviewThread()
3074 in_buf.imgPtr = (unsigned char *)mPreviewMapped[bufferIndex]->data; in runPreviewThread()
3075 in_buf.dx = previewWidth; in runPreviewThread()
3076 in_buf.dy = previewHeight; in runPreviewThread()
3077 conversion_result = LINK_yuv_convert_ycrcb420sp_to_yv12_inplace(&in_buf); in runPreviewThread()