//! ```rust
//! use ravif::*;
//! # fn doit(pixels: &[RGBA8], width: usize, height: usize) -> Result<(), Error> {
//! let res = Encoder::new()
//! .with_quality(70.)
//! .with_speed(4)
//! .encode_rgba(Img::new(pixels, width, height))?;
//! std::fs::write("hello.avif", res.avif_file);
//! # Ok(()) }
pub use Error;
pub use ColorSpace;
pub use AlphaColorMode;
pub use Encoder;
pub use EncodedImage;
pub use MatrixCoefficients;
pub use Img;
pub use ;