av_image_copy_plane

Copy image plane from src to dst. That is, copy "height" number of lines of "bytewidth" bytes each. The first byte of each successive line is separated by *_linesize bytes.

bytewidth must be contained by both absolute values of dst_linesize and src_linesize, otherwise the function behavior is undefined.

@param dst_linesize linesize for the image plane in dst @param src_linesize linesize for the image plane in src

extern (C) @nogc nothrow
void
av_image_copy_plane
(
ubyte* dst
,,
const(ubyte)* src
,,,
int height
)

Meta