Home
last modified time | relevance | path

Searched refs:xsub (Results 1 – 5 of 5) sorted by relevance

/external/libdrm/tests/util/
Dpattern.c106 unsigned int xsub = yuv->xsub; in fill_smpte_yuv_planar() local
137 for (x = 0; x < width; x += xsub) { in fill_smpte_yuv_planar()
138 u_mem[x*cs/xsub] = colors_top[x * 7 / width].u; in fill_smpte_yuv_planar()
139 v_mem[x*cs/xsub] = colors_top[x * 7 / width].v; in fill_smpte_yuv_planar()
141 u_mem += stride * cs / xsub; in fill_smpte_yuv_planar()
142 v_mem += stride * cs / xsub; in fill_smpte_yuv_planar()
146 for (x = 0; x < width; x += xsub) { in fill_smpte_yuv_planar()
147 u_mem[x*cs/xsub] = colors_middle[x * 7 / width].u; in fill_smpte_yuv_planar()
148 v_mem[x*cs/xsub] = colors_middle[x * 7 / width].v; in fill_smpte_yuv_planar()
150 u_mem += stride * cs / xsub; in fill_smpte_yuv_planar()
[all …]
Dformat.c38 #define MAKE_YUV_INFO(order, xsub, ysub, chroma_stride) \ argument
39 .yuv = { (order), (xsub), (ysub), (chroma_stride) }
Dformat.h50 unsigned int xsub; member
/external/libkmsxx/kms++/inc/kms++/
Dpixelformats.h55 uint8_t xsub; member
/external/webp/src/dsp/
Dlossless_enc.c601 const int xsub = x & mask; in VP8LBundleColorMap_C() local
602 if (xsub == 0) { in VP8LBundleColorMap_C()
605 code |= row[x] << (8 + bit_depth * xsub); in VP8LBundleColorMap_C()