Searched refs:bwidth (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | vf_kerndeint.c | 134 int src_linesize, psrc_linesize, dst_linesize, bwidth; in filter_frame() local 156 bwidth = kerndeint->tmp_bwidth[plane]; in filter_frame() 167 memcpy(dstp, srcp, bwidth); in filter_frame() 173 …dstp_saved + order * dst_linesize, srcp_saved + (1 - order) * src_linesize, bwidth); in filter_frame() 174 …dstp_saved + (2 + order ) * dst_linesize, srcp_saved + (3 - order) * src_linesize, bwidth); in filter_frame() 175 …dstp_saved + (h - 2 + order) * dst_linesize, srcp_saved + (h - 1 - order) * src_linesize, bwidth); in filter_frame() 176 …dstp_saved + (h - 4 + order) * dst_linesize, srcp_saved + (h - 3 - order) * src_linesize, bwidth); in filter_frame() 202 for (x = 0; x < bwidth; x++) { in filter_frame() 284 av_image_copy_plane(dstp, psrc_linesize, srcp, src_linesize, bwidth, h); in filter_frame()
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_compute.c | 173 int bwidth, bheight, bdepth; in softpipe_launch_grid() local 180 bwidth = cs->info.properties[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH]; in softpipe_launch_grid() 183 num_threads_in_group = DIV_ROUND_UP(bwidth, TGSI_QUAD_SIZE) * bheight * bdepth; in softpipe_launch_grid() 201 for (local_x = 0; local_x < bwidth; local_x += TGSI_QUAD_SIZE) { in softpipe_launch_grid() 206 machines[idx]->NonHelperMask = (1 << (MIN2(TGSI_QUAD_SIZE, bwidth - local_x))) - 1; in softpipe_launch_grid() 210 bwidth, bheight, bdepth, in softpipe_launch_grid()
|
/third_party/ffmpeg/libavcodec/ |
D | crystalhd.c | 438 int bwidth; in copy_frame() local 481 bwidth = av_image_get_linesize(avctx->pix_fmt, width, 0); in copy_frame() 482 if (bwidth < 0) in copy_frame() 497 sStride = bwidth; in copy_frame() 528 memcpy(&(dst[dY * dStride]), &(src[sY * sStride]), bwidth); in copy_frame() 532 av_image_copy_plane(dst, dStride, src, sStride, bwidth, height); in copy_frame()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_file.c | 63 short bwidth; member 330 fmt->bwidth = pcm->frame_bits / 8; in setup_wav_header() 331 fmt->bps = fmt->bwidth * pcm->rate; in setup_wav_header() 334 fmt->bwidth = TO_LE16(fmt->bwidth); in setup_wav_header()
|
/third_party/mesa3d/src/mesa/main/ |
D | formatquery.c | 1534 GLuint bwidth, bheight; in _mesa_GetInternalformativ() local 1537 _mesa_get_format_block_size(mesaformat, &bwidth, &bheight); in _mesa_GetInternalformativ() 1538 assert(bwidth > 0 && bheight > 0); in _mesa_GetInternalformativ() 1543 buffer[0] = block_size / bwidth; in _mesa_GetInternalformativ()
|
/third_party/gstreamer/gstplugins_bad/ext/onnx/ |
D | gstonnxclient.cpp | 404 auto bwidth = bboxes[i * 4 + 3] * width - x0; in doRun() local 405 boundingBoxes.push_back (GstMlBoundingBox (label, score, x0, y0, bwidth, in doRun()
|
/third_party/ffmpeg/libavutil/ |
D | imgutils.c | 407 ptrdiff_t bwidth = av_image_get_linesize(pix_fmt, width, i); in image_copy() local 408 if (bwidth < 0) { in image_copy() 417 bwidth, h); in image_copy()
|