HomeSort by relevance Sort by last modified time
    Searched refs:yuv_frame (Results 1 - 9 of 9) sorted by null

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.c 81 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) {
89 const int w = (plane ? (1 + yuv_frame->d_w) / 2 : yuv_frame->d_w);
90 const int h = (plane ? (1 + yuv_frame->d_h) / 2 : yuv_frame->d_h);
99 ptr = yuv_frame->planes[
100 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
103 ptr = yuv_frame->planes[
104 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
107 ptr = yuv_frame->planes[plane]
    [all...]
tools_common.h 123 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame);
  /external/opencv3/modules/videoio/src/
cap_xine.cpp 75 IplImage * yuv_frame; member in struct:CvCaptureAVI_XINE
103 for ( int y = 0; y < capture->yuv_frame->height; y++ )
105 offset = y * capture->yuv_frame->widthStep;
107 for ( int x = 0; x < capture->yuv_frame->width; x++, offset += 3 )
109 capture->yuv_frame->imageData[ offset + 1 ] = v[ 3 ];
110 capture->yuv_frame->imageData[ offset + 2 ] = v[ 1 ];
113 capture->yuv_frame->imageData[ offset ] = v[ 2 ];
118 capture->yuv_frame->imageData[ offset ] = v[ 0 ];
124 cvCvtColor( capture->yuv_frame, capture->bgr_frame, CV_YCrCb2BGR );
131 IplImage * yuv = capture->yuv_frame;
    [all...]
  /external/libvpx/libvpx/
tools_common.c 81 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) {
86 const int bytespp = (yuv_frame->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
90 const int w = vpx_img_plane_width(yuv_frame, plane);
91 const int h = vpx_img_plane_height(yuv_frame, plane);
100 ptr = yuv_frame->planes[
101 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
104 ptr = yuv_frame->planes[
105 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
108 ptr = yuv_frame->planes[plane];
126 ptr += yuv_frame->stride[plane]
    [all...]
tools_common.h 128 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame);
  /device/moto/shamu/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 154 mm_camera_buf_def_t * yuv_frame = recvd_frame->bufs[i]; local
155 QCameraStream *pStream = pChannel->getStreamByHandle(yuv_frame->stream_id);
157 pme->dumpFrameToFile(pStream, yuv_frame, QCAMERA_DUMP_FRM_SNAPSHOT);
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 178 mm_camera_buf_def_t * yuv_frame = recvd_frame->bufs[i]; local
179 QCameraStream *pStream = pChannel->getStreamByHandle(yuv_frame->stream_id);
181 pme->dumpFrameToFile(pStream, yuv_frame, QCAMERA_DUMP_FRM_INPUT_REPROCESS);
418 mm_camera_buf_def_t * yuv_frame = recvd_frame->bufs[i]; local
419 QCameraStream *pStream = pChannel->getStreamByHandle(yuv_frame->stream_id);
421 pme->dumpFrameToFile(pStream, yuv_frame, QCAMERA_DUMP_FRM_INPUT_REPROCESS);
    [all...]
  /device/huawei/angler/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 173 mm_camera_buf_def_t * yuv_frame = recvd_frame->bufs[i]; local
174 QCameraStream *pStream = pChannel->getStreamByHandle(yuv_frame->stream_id);
176 pme->dumpFrameToFile(pStream, yuv_frame, QCAMERA_DUMP_FRM_SNAPSHOT);
    [all...]
  /device/lge/bullhead/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 173 mm_camera_buf_def_t * yuv_frame = recvd_frame->bufs[i]; local
174 QCameraStream *pStream = pChannel->getStreamByHandle(yuv_frame->stream_id);
176 pme->dumpFrameToFile(pStream, yuv_frame, QCAMERA_DUMP_FRM_SNAPSHOT);
    [all...]

Completed in 337 milliseconds