/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/ |
xa_yuv.c | 70 xa_yuv_bind_samplers(struct xa_context *r, struct xa_surface *yuv[]) 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
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
xa_yuv.c | 70 xa_yuv_bind_samplers(struct xa_context *r, struct xa_surface *yuv[]) 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
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testoverlay2.c | 58 void RGBtoYUV(Uint8 *rgb, int *yuv, int monochrome, int luminance) 63 yuv[0] = 0.299*rgb[0] + 0.587*rgb[1] + 0.114*rgb[2]; 64 yuv[1] = 128; 65 yuv[2] = 128; 67 yuv[0] = (0.257 * rgb[0]) + (0.504 * rgb[1]) + (0.098 * rgb[2]) + 16; 68 yuv[1] = 128; 69 yuv[2] = 128; 75 yuv[0] = 0.299*rgb[0] + 0.587*rgb[1] + 0.114*rgb[2]; 76 yuv[1] = (rgb[2]-yuv[0])*0.565 + 128 96 int yuv[3]; local 129 int yuv[3]; local 162 int yuv[3]; local 195 int yuv[3]; local 231 int yuv[3]; local [all...] |
testoverlay.c | 35 void RGBtoYUV(Uint8 *rgb, int *yuv, int monochrome, int luminance) 40 yuv[0] = 0.299*rgb[0] + 0.587*rgb[1] + 0.114*rgb[2]; 41 yuv[1] = 128; 42 yuv[2] = 128; 44 yuv[0] = (0.257 * rgb[0]) + (0.504 * rgb[1]) + (0.098 * rgb[2]) + 16; 45 yuv[1] = 128; 46 yuv[2] = 128; 52 yuv[0] = 0.299*rgb[0] + 0.587*rgb[1] + 0.114*rgb[2]; 53 yuv[1] = (rgb[2]-yuv[0])*0.565 + 128 84 int yuv[3]; local 124 int yuv[3]; local 164 int yuv[3]; local 197 int yuv[3]; local 233 int yuv[3]; local [all...] |
/frameworks/base/core/jni/android/graphics/ |
YuvToJpegEncoder.cpp | 72 uint8_t* yuv, int* offsets) { 84 uint8_t* yPlanar = yuv + offsets[0]; 85 uint8_t* vuPlanar = yuv + offsets[1]; //width * height; 148 uint8_t* yuv, int* offsets) { 164 uint8_t* yuvOffset = yuv + offsets[0]; 190 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, 195 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0]; 223 jbyte* yuv = env->GetByteArrayElements(inYuv, NULL); local 232 encoder->encode(strm, yuv, width, height, imgOffsets, jpegQuality); 235 env->ReleaseByteArrayElements(inYuv, yuv, 0) [all...] |
/device/lge/mako/camera/QCamera/stack/mm-camera-test/src/ |
mm_qcamera_display.c | 71 } yuv; variable in typeref:union:__anon2150 180 /* Initialize yuv structure */ 181 yuv.list.count = 1; 183 e = &yuv.list.req[0]; 242 result = ioctl(fb_fd, MSMFB_BLIT, &yuv.list); 463 /* Initialize yuv structure */ 464 yuv.list.count = 1; 465 e = &yuv.list.req[0]; 523 /* Initialize yuv structure */ 524 yuv.list.count = 1 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_compositor.h | 110 void *yuv; member in struct:vl_compositor::__anon12627 127 * set yuv -> rgba conversion matrix
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_compositor.h | 110 void *yuv; member in struct:vl_compositor::__anon23094 127 * set yuv -> rgba conversion matrix
|
/frameworks/rs/ |
rsAllocation.h | 63 uint32_t yuv; member in struct:android::renderscript::Allocation::Hal::State 90 } yuv; member in struct:android::renderscript::Allocation::Hal::DrvState
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
ImageUtils.cpp | 366 // VC 8 does not like calling free on yuv->Y.ptr since it is in 368 // calling mapYUVInforToImage yuv->Y.ptr points to the begginning 370 YUVinfo *yuv = (YUVinfo *) calloc(sizeof(YUVinfo), 1); local 371 if (yuv) { 372 yuv->Y.width = yuv->Y.pitch = width; 373 yuv->Y.height = height; 374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0 [all...] |
/packages/apps/Camera2/jni/feature_mos/src/mosaic/ |
ImageUtils.cpp | 366 // VC 8 does not like calling free on yuv->Y.ptr since it is in 368 // calling mapYUVInforToImage yuv->Y.ptr points to the begginning 370 YUVinfo *yuv = (YUVinfo *) calloc(sizeof(YUVinfo), 1); local 371 if (yuv) { 372 yuv->Y.width = yuv->Y.pitch = width; 373 yuv->Y.height = height; 374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0 [all...] |
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
ImageUtils.cpp | 366 // VC 8 does not like calling free on yuv->Y.ptr since it is in 368 // calling mapYUVInforToImage yuv->Y.ptr points to the begginning 370 YUVinfo *yuv = (YUVinfo *) calloc(sizeof(YUVinfo), 1); local 371 if (yuv) { 372 yuv->Y.width = yuv->Y.pitch = width; 373 yuv->Y.height = height; 374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0 [all...] |
/external/webp/examples/ |
dwebp.c | 65 YUV, 245 // (http://www.fourcc.org/yuv.php#IMC4). This is a very convenient format for 247 // format=YUV: just save the Y/U/V/A planes sequentially without header. 252 const WebPYUVABuffer* const yuv = &buffer->u.YUVA; local 255 const int pad = (format == YUV) ? 0 : 1; 259 const int a_height = yuv->a ? height : 0; 265 ok &= (fwrite(yuv->y + y * yuv->y_stride, width, 1, fout) == 1); 272 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1) [all...] |
/external/chromium_org/cc/output/ |
shader.cc | 1348 vec3 yuv = vec3(y_raw, u_unsigned, v_unsigned) + yuv_adj; local 1412 vec3 yuv = vec3(y_raw, u_unsigned, v_unsigned) + yuv_adj; local [all...] |
/external/chromium_org/content/browser/renderer_host/media/ |
web_contents_video_capture_device_unittest.cc | 63 uint8 yuv[3]; local 65 yuv, yuv + 1, yuv + 2, 1, 1, 1, 1, 1); local 66 return SkColorSetRGB(yuv[0], yuv[1], yuv[2]); 354 uint8 yuv[3]; variable 357 yuv[plane] = reinterpret_cast<uint8*>(buffer->data())[offset]; 364 color_callback_.Run((SkColorSetRGB(yuv[0], yuv[1], yuv[2]))) [all...] |
/external/chromium_org/gpu/tools/compositor_model_bench/ |
shaders.cc | 185 vec3 yuv = vec3(y_raw, u_unsigned, v_unsigned) + yuv_adj; local 186 vec3 rgb = cc_matrix * yuv; 319 // Set YUV offset. 322 // Set YUV matrix.
|
/frameworks/native/opengl/tests/hwc/ |
hwcTestLib.cpp | 797 bool yuv; member in struct:attrib 867 // If needed perform RGB to YUV conversion 869 if (fromAttrib->rgb && toAttrib->yuv) { 875 // Produce black if color is outside the YUV gamut 886 // If needed perform YUV to RGB conversion 887 // Equations determined from the ITU709 equations for RGB to YUV 906 if (fromAttrib->yuv && toAttrib->rgb) { [all...] |
/frameworks/rs/driver/runtime/ |
rs_structs.h | 35 uint32_t yuv; member in struct:Allocation::__anon30646::__anon30647 61 } yuv; member in struct:Allocation::__anon30646::DrvState
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
xorg_xv.c | 94 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/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_xv.c | 94 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];
|
/hardware/qcom/media/mm-video-v4l2/vidc/venc/test/ |
venc_test.cpp | 40 // FILE QVGA MP4 24 384000 100 enc_qvga.yuv QVGA_24.m4v 41 // FILE QCIF MP4 15 96000 0 foreman.qcif.yuv output_qcif.m4v 42 // FILE VGA MP4 24 1200000 218 enc_vga.yuv vga_output.m4v 1444 OMX_U8 *yuv = pYUVBuffer->pBuffer; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videoframe_unittest.h | 52 #define kImageFilename "faces.1280x720_P420.yuv" 156 talk_base::sprintfn(filename, sizeof(filename), "%s.%dx%d_P420.yuv", 209 // Create a test image for YUV 420 formats with 12 bits per pixel. 311 uint8 yuv[4][3]; local 318 &yuv[i][0], &yuv[i][1], &yuv[i][2]); 320 frame->GetYPlane()[stride_y * y + x] = yuv[0][0]; 322 frame->GetYPlane()[stride_y * y + x + 1] = yuv[1][0]; 325 frame->GetYPlane()[stride_y * (y + 1) + x] = yuv[2][0] [all...] |
/prebuilts/sdk/renderscript/lib/ |
javalib.jar | |
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/12/ |
android.jar | |