Struct x264::Plane[][src]

pub struct Plane<'a> {
    pub stride: i32,
    pub data: &'a [u8],
}

A single plane of an image.

Fields

The plane's stride (the number of bytes for each row).

The plane's pixel data.

Auto Trait Implementations

impl<'a> Send for Plane<'a>

impl<'a> Sync for Plane<'a>