Searched defs:yuv (Results 1 - 17 of 17) sorted by path

/external/libdrm/tests/util/
H A Dformat.h59 const struct util_yuv_info yuv; member in struct:util_format_info
H A Dpattern.c76 static void fill_smpte_yuv_planar(const struct util_yuv_info *yuv, argument
109 unsigned int cs = yuv->chroma_stride;
110 unsigned int xsub = yuv->xsub;
111 unsigned int ysub = yuv->ysub;
180 static void fill_smpte_yuv_packed(const struct util_yuv_info *yuv, void *mem, argument
212 unsigned char *y_mem = (yuv->order & YUV_YC) ? mem : mem + 1;
213 unsigned char *c_mem = (yuv->order & YUV_CY) ? mem : mem + 1;
214 unsigned int u = (yuv->order & YUV_YCrCb) ? 2 : 0;
215 unsigned int v = (yuv->order & YUV_YCbCr) ? 2 : 0;
475 return fill_smpte_yuv_packed(&info->yuv, plane
614 const struct util_yuv_info *yuv = &info->yuv; local
647 const struct util_yuv_info *yuv = &info->yuv; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_denoiser.c27 static void make_grayscale(YV12_BUFFER_CONFIG *yuv);
600 static void make_grayscale(YV12_BUFFER_CONFIG *yuv) { argument
602 uint8_t *u = yuv->u_buffer;
603 uint8_t *v = yuv->v_buffer;
605 for (r = 0; r < yuv->uv_height; ++r) {
606 for (c = 0; c < yuv->uv_width; ++c) {
610 u += yuv->uv_stride;
611 v += yuv->uv_stride;
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor.h110 void *yuv; member in struct:vl_compositor::__anon14530
127 * set yuv -> rgba conversion matrix
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_yuv.c70 xa_yuv_bind_samplers(struct xa_context *r, struct xa_surface *yuv[]) argument
88 u_sampler_view_default_template(&view_templ, yuv[i]->tex,
89 yuv[i]->tex->format);
92 r->pipe->create_sampler_view(r->pipe, yuv[i]->tex, &view_templ);
121 struct xa_surface *dst, struct xa_surface *yuv[])
137 xa_yuv_bind_samplers(r, yuv);
152 scale_x * w, scale_y * h, x, y, w, h, yuv); local
109 xa_yuv_planar_blit(struct xa_context *r, int src_x, int src_y, int src_w, int src_h, int dst_x, int dst_y, int dst_w, int dst_h, struct xa_box *box, unsigned int num_boxes, const float conversion_matrix[], struct xa_surface *dst, struct xa_surface *yuv[]) argument
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_xv.c94 struct pipe_resource *yuv[2][3]; member in struct:xorg_xv_port_priv
185 struct pipe_resource **dst = priv->yuv[priv->current_set];
307 struct pipe_resource **dst = port->yuv[port->current_set];
392 debug_assert(!"Unsupported yuv format!");
420 struct pipe_resource **textures = port->yuv[port->current_set];
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/skia/src/codec/
H A DSkJpegCodec.cpp896 JSAMPARRAY yuv[3]; local
900 yuv[0] = &rowptrs[0]; // Y rows (DCTSIZE or 2 * DCTSIZE)
901 yuv[1] = &rowptrs[2 * DCTSIZE]; // U rows (DCTSIZE)
902 yuv[2] = &rowptrs[3 * DCTSIZE]; // V rows (DCTSIZE)
929 JDIMENSION linesRead = jpeg_read_raw_data(dinfo, yuv, numRowsPerBlock);
963 JDIMENSION linesRead = jpeg_read_raw_data(dinfo, yuv, numRowsPerBlock);
/external/skia/src/pdf/
H A DSkPDFBitmap.cpp493 bool yuv = info.fType == SkJFIFInfo::kYCbCr; local
499 return sk_make_sp<PDFJpegBitmap>(info.fSize, data.get(), yuv);
511 bool yuv = info.fType == SkJFIFInfo::kYCbCr; local
513 return sk_make_sp<PDFJpegBitmap>(info.fSize, data.get(), yuv);
/external/webrtc/talk/media/base/
H A Dvideoframe_unittest.h53 #define kImageFilename "faces.1280x720_P420.yuv"
187 rtc::sprintfn(filename, sizeof(filename), "%s.%dx%d_P420.yuv",
349 uint8_t yuv[4][3]; local
356 &yuv[i][0], &yuv[i][1], &yuv[i][2]);
358 frame->GetYPlane()[stride_y * y + x] = yuv[0][0];
360 frame->GetYPlane()[stride_y * y + x + 1] = yuv[1][0];
363 frame->GetYPlane()[stride_y * (y + 1) + x] = yuv[2][0];
365 frame->GetYPlane()[stride_y * (y + 1) + x + 1] = yuv[
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...

Completed in 498 milliseconds