Lines Matching refs:bytewidth
345 ptrdiff_t bytewidth, int height) in image_copy_plane() argument
349 av_assert0(FFABS(src_linesize) >= bytewidth); in image_copy_plane()
350 av_assert0(FFABS(dst_linesize) >= bytewidth); in image_copy_plane()
352 memcpy(dst, src, bytewidth); in image_copy_plane()
360 ptrdiff_t bytewidth, int height) in image_copy_plane_uc_from() argument
366 bytewidth, height); in image_copy_plane_uc_from()
370 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height); in image_copy_plane_uc_from()
375 int bytewidth, int height) in av_image_copy_plane() argument
377 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height); in av_image_copy_plane()
607 ptrdiff_t bytewidth = av_image_get_linesize(pix_fmt, width, 0); in av_image_fill_black() local
611 if (nb_planes != 1 || !(rgb || mono) || bytewidth < 1) in av_image_fill_black()
621 memset(data, fill, bytewidth); in av_image_fill_black()
684 size_t bytewidth = plane_line_bytes[plane]; in av_image_fill_black() local
690 memset_bytes(data, bytewidth, &clear_block[plane][0], clear_block_size[plane]); in av_image_fill_black()