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

  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 13 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12,
20 if (yv12->uv_height == yv12->y_height) {
21 if (yv12->uv_width == yv12->y_width) {
31 img->w = yv12->y_stride;
32 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9BORDERINPIXELS, 3);
33 img->d_w = yv12->y_crop_width;
34 img->d_h = yv12->y_crop_height;
35 img->x_chroma_shift = yv12->uv_width < yv12->y_width
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 284 const YV12_BUFFER_CONFIG *yv12,
292 img->w = yv12->y_stride;
293 img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15;
294 img->d_w = yv12->y_width;
295 img->d_h = yv12->y_height;
298 img->planes[VPX_PLANE_Y] = yv12->y_buffer;
299 img->planes[VPX_PLANE_U] = yv12->u_buffer;
300 img->planes[VPX_PLANE_V] = yv12->v_buffer;
302 img->stride[VPX_PLANE_Y] = yv12->y_stride;
303 img->stride[VPX_PLANE_U] = yv12->uv_stride
    [all...]
vp8_cx_iface.c 275 ERROR("Invalid image format. Only YV12 and I420 images are supported");
677 YV12_BUFFER_CONFIG *yv12)
680 yv12->y_buffer = img->planes[VPX_PLANE_Y];
681 yv12->u_buffer = img->planes[VPX_PLANE_U];
682 yv12->v_buffer = img->planes[VPX_PLANE_V];
684 yv12->y_crop_width = img->d_w;
685 yv12->y_crop_height = img->d_h;
686 yv12->y_width = img->d_w;
687 yv12->y_height = img->d_h;
688 yv12->uv_width = (1 + yv12->y_width) / 2
    [all...]
  /device/generic/goldfish/camera/
Converters.cpp 88 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height)
91 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12);
97 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height)
100 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12);
Converters.h 256 /* Converts an YV12 framebuffer to RGB565 framebuffer.
258 * yv12 - YV12 framebuffer.
262 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height);
264 /* Converts an YV12 framebuffer to RGB32 framebuffer.
266 * yv12 - YV12 framebuffer.
270 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height);
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 2264 YV12_BUFFER_CONFIG *yv12 = &cm->yv12_fb[cpi->common.ref_frame_map[idx]]; local
    [all...]
  /cts/suite/pts/deviceTests/browserbench/assets/octane/
regexp.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-regexp.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-regexp.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-regexp.js     [all...]
  /external/chromium_org/v8/benchmarks/
regexp.js     [all...]
  /external/v8/benchmarks/
regexp.js     [all...]

Completed in 450 milliseconds