Trait x264_framing::Image [] [src]

pub trait Image {
    type Format: Format;
    fn strides(&self) -> [c_int; 4];
fn planes(&self) -> [*const u8; 4]; }

Represents an image that can be handed over to x264.

Associated Types

The format of the image.

Required Methods

The stride for each plane.

Each plane.

Implementors