Home
last modified time | relevance | path

Searched refs:dest_plane (Results 1 – 2 of 2) sorted by relevance

/external/libgav1/libgav1/src/
Dfilm_grain.cc246 int width, int height, uint8_t* dest_plane, in CopyImagePlane() argument
249 if (source_plane == dest_plane) return; in CopyImagePlane()
253 memcpy(dest_plane, source_plane, width * sizeof(Pixel)); in CopyImagePlane()
255 dest_plane += dest_stride; in CopyImagePlane()
/external/webrtc/modules/desktop_capture/mac/
Dscreen_capturer_mac.mm36 // Copy pixels in the |rect| from |src_place| to |dest_plane|. |rect| should be
37 // relative to the origin of |src_plane| and |dest_plane|.
40 uint8_t* dest_plane,
49 dest_plane += dest_y_offset + x_offset;
55 memcpy(dest_plane, src_plane, bytes_per_line);
57 dest_plane += dest_plane_stride;