Searched refs:plane (Results 51 - 75 of 274) sorted by relevance

1234567891011

/external/chromium_org/media/base/
H A Dvideo_frame.h64 NV12 = 8, // 12bpp 1x1 Y plane followed by an interleaved 2x2 UV plane.
121 // and plane count as given by |format|. The shared memory handle of the
229 // Returns the plane size for a plane of the given coded size and format.
231 size_t plane,
234 // Returns the required allocation size for a (tightly packed) plane of the
237 size_t plane,
240 // Returns horizontal bits per pixel for given |plane| and |format|.
241 static int PlaneHorizontalBitsPerPixel(Format format, size_t plane);
[all...]
H A Dvideo_frame_unittest.cc88 // Fill each plane to its reported extents and verify accessors report non
89 // zero values. Additionally, for the first plane verify the rows and
103 for (int plane = 0; plane < planes; plane++) {
104 SCOPED_TRACE(base::StringPrintf("Checking plane %d", plane));
105 EXPECT_TRUE(frame->data(plane));
106 EXPECT_TRUE(frame->stride(plane));
107 EXPECT_TRUE(frame->rows(plane));
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c142 static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block, argument
146 struct macroblockd_plane *const pd = &xd->plane[plane];
163 ? (plane == 0 ? mi->bmi[block].as_mv[ref].as_mv
204 int plane; local
207 for (plane = plane_from; plane <= plane_to; ++plane) {
209 &xd->plane[plane]);
246 dec_build_inter_predictors(MACROBLOCKD *xd, int plane, int block, int bw, int bh, int x, int y, int w, int h, int mi_x, int mi_y) argument
387 int plane; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_tokenize.h43 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane);
H A Dvp9_tokenize.c251 static void set_entropy_context_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
255 struct macroblock_plane *p = &args->cpi->mb.plane[plane];
256 struct macroblockd_plane *pd = &xd->plane[plane];
293 static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
300 struct macroblock_plane *p = &cpi->mb.plane[plane];
301 struct macroblockd_plane *pd = &xd->plane[plane];
387 is_skippable(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *argv) argument
398 vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) argument
[all...]
H A Dvp9_quantize.c514 void vp9_regular_quantize_b_4x4(MACROBLOCK *x, int plane, int block, argument
517 struct macroblock_plane *p = &x->plane[plane];
518 struct macroblockd_plane *pd = &xd->plane[plane];
638 x->plane[0].quant = quants->y_quant[qindex];
639 x->plane[0].quant_fp = quants->y_quant_fp[qindex];
640 x->plane[0].round_fp = quants->y_round_fp[qindex];
641 x->plane[0].quant_shift = quants->y_quant_shift[qindex];
642 x->plane[
[all...]
H A Dvp9_denoiser.c227 saved_pre[i][j] = filter_mbd->plane[i].pre[j];
229 saved_dst[i] = filter_mbd->plane[i].dst;
262 filter_mbd->plane[0].pre[j].buf =
266 filter_mbd->plane[0].pre[j].stride =
268 filter_mbd->plane[1].pre[j].buf =
272 filter_mbd->plane[1].pre[j].stride =
274 filter_mbd->plane[2].pre[j].buf =
278 filter_mbd->plane[2].pre[j].stride =
281 filter_mbd->plane[0].dst.buf =
285 filter_mbd->plane[
[all...]
H A Dvp9_pickmode.c148 backup_yv12[i] = xd->plane[i].pre[0];
199 xd->plane[i].pre[0] = backup_yv12[i];
215 struct macroblock_plane *const p = &x->plane[0];
216 struct macroblockd_plane *const pd = &xd->plane[0];
282 const BLOCK_SIZE uv_size = get_plane_block_size(bsize, &xd->plane[1]);
298 thresh_ac = (xd->plane[0].dequant[1] * xd->plane[0].dequant[1]) / 9;
305 thresh_dc = (xd->plane[0].dequant[0] * xd->plane[0].dequant[0] >> 6);
319 xd->plane[
367 estimate_block_intra(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
[all...]
H A Dvp9_aq_variance.c129 variance(x->plane[0].src.buf, x->plane[0].src.stride,
134 var = cpi->fn_ptr[bs].vf(x->plane[0].src.buf,
135 x->plane[0].src.stride,
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.h43 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane);
H A Dvp9_tokenize.c167 static void set_entropy_context_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
171 struct macroblock_plane *p = &args->cpi->mb.plane[plane];
172 struct macroblockd_plane *pd = &xd->plane[plane];
209 static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
216 struct macroblock_plane *p = &cpi->mb.plane[plane];
217 struct macroblockd_plane *pd = &xd->plane[plane];
293 is_skippable(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *argv) argument
300 vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) argument
[all...]
H A Dvp9_temporal_filter.c142 struct buf_2d src = x->plane[0].src;
143 struct buf_2d pre = xd->plane[0].pre[0];
149 x->plane[0].src.buf = arf_frame_buf;
150 x->plane[0].src.stride = stride;
151 xd->plane[0].pre[0].buf = frame_ptr_buf;
152 xd->plane[0].pre[0].stride = stride;
183 x->plane[0].src = src;
184 xd->plane[0].pre[0] = pre;
209 const int mb_uv_height = 16 >> mbd->plane[1].subsampling_y;
216 assert(mbd->plane[
[all...]
H A Dvp9_aq_variance.c128 variance(x->plane[0].src.buf, x->plane[0].src.stride,
133 var = cpi->fn_ptr[bs].vf(x->plane[0].src.buf,
134 x->plane[0].src.stride,
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxdec.c279 const int plane = planes[i]; local
280 const unsigned char *buf = img->planes[plane];
281 const int stride = img->stride[plane];
282 const int w = vpx_img_plane_width(img, plane);
283 const int h = vpx_img_plane_height(img, plane);
302 const int plane = planes[i]; local
303 const unsigned char *buf = img->planes[plane];
304 const int stride = img->stride[plane];
305 const int w = vpx_img_plane_width(img, plane);
306 const int h = vpx_img_plane_height(img, plane);
533 int plane; local
571 int plane; local
618 int plane; local
655 int plane; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dy4m_test.cc56 int plane, y; local
57 for (plane = 0; plane < 3; ++plane) {
58 const unsigned char *buf = img->planes[plane];
59 const int stride = img->stride[plane];
61 const int h = (plane ? (img->d_h + img->y_chroma_shift) >>
63 const int w = (plane ? (img->d_w + img->x_chroma_shift) >>
/external/libvpx/libvpx/examples/
H A Ddecode_with_partial_drops.c308 unsigned int plane, y; local
310 for(plane=0; plane < 3; plane++) {
311 unsigned char *buf =img->planes[plane];
313 for(y=0; y < (plane ? (img->d_h + 1) >> 1 : img->d_h); y++) {
314 (void) fwrite(buf, 1, (plane ? (img->d_w + 1) >> 1 : img->d_w),
316 buf += img->stride[plane];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast_debug.c183 struct lp_rast_plane plane[8]; local
195 plane[nr_planes] = tri_plane[u_bit_scan(&plane_mask)];
196 plane[nr_planes].c = (plane[nr_planes].c +
197 plane[nr_planes].dcdy * tiley -
198 plane[nr_planes].dcdx * tilex);
207 if (plane[i].c <= 0)
215 plane[i].c -= plane[i].dcdx;
219 plane[
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_debug.c183 struct lp_rast_plane plane[8]; local
195 plane[nr_planes] = tri_plane[u_bit_scan(&plane_mask)];
196 plane[nr_planes].c = (plane[nr_planes].c +
197 plane[nr_planes].dcdy * tiley -
198 plane[nr_planes].dcdx * tilex);
207 if (plane[i].c <= 0)
215 plane[i].c -= plane[i].dcdx;
219 plane[
[all...]
/external/chromium_org/ui/ozone/platform/dri/
H A Dhardware_display_controller.cc140 void HardwareDisplayController::QueueOverlayPlane(const OverlayPlane& plane) { argument
141 pending_planes_.push_back(plane);
313 const OverlayPlane& plane = overlays[i]; local
314 if (!plane.overlay_plane)
317 const gfx::Size& size = plane.buffer->GetSize();
318 gfx::RectF crop_rect = plane.crop_rect;
321 plane.buffer->GetFramebufferId(),
322 plane.display_bounds,
324 plane.overlay_plane)) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconinter.c260 static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block, argument
264 struct macroblockd_plane *const pd = &xd->plane[plane];
327 int plane; local
330 for (plane = plane_from; plane <= plane_to; ++plane) {
332 &xd->plane[plane]);
343 build_inter_predictors(xd, plane,
369 dec_build_inter_predictors(MACROBLOCKD *xd, int plane, int block, int bw, int bh, int x, int y, int w, int h, int mi_x, int mi_y) argument
553 int plane; local
[all...]
/external/libvpx/libvpx/
H A Dtools_common.h142 int vpx_img_plane_width(const vpx_image_t *img, int plane);
143 int vpx_img_plane_height(const vpx_image_t *img, int plane);
/external/svox/pico/lib/
H A Dpicotrns.h78 picoos_uint8 picotrns_unplane(picoos_int16 symIn, picoos_uint8 * plane);
174 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_dthread.c107 int plane; local
114 for (plane = 0; plane < num_planes; ++plane) {
115 vp9_filter_block_plane(cm, &planes[plane], mi_row, &lfm);
180 vp9_copy(lf_data->planes, pbi->mb.plane);
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_fog.c91 * near and far clip plane distances).
165 GLfloat plane[4]; local
171 plane[0] = m[2];
172 plane[1] = m[6];
173 plane[2] = m[10];
174 plane[3] = m[14];
181 VB->AttribPtr[_TNL_ATTRIB_POS], plane );
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_dthread.c106 int plane; local
113 for (plane = 0; plane < num_planes; ++plane) {
114 vp9_filter_block_plane(cm, &xd->plane[plane], mi_row, &lfm);

Completed in 2166 milliseconds

1234567891011