use imgref::Img;
use rav1e::prelude::*;
use rgb::RGB8;
use rgb::RGBA8;
#[derive(Debug, Copy, Clone)]
pub enum ColorSpace {
YCbCr,
RGB,
}
#[derive(Debug, Copy, Clone)]
pub struct EncConfig {
pub quality: f32,
pub alpha_quality: f32,
pub speed: u8,
pub premultiplied_alpha: bool,
pub color_space: ColorSpace,
pub threads: usize,
}
pub fn encode_rgba(buffer: Img<&[RGBA8]>, config: &EncConfig) -> Result<(Vec<u8>, usize, usize), Box<dyn std::error::Error + Send + Sync>> {
let width = buffer.width();
let height = buffer.height();
let mut y_plane = Vec::with_capacity(width*height);
let mut u_plane = Vec::with_capacity(width*height);
let mut v_plane = Vec::with_capacity(width*height);
let mut a_plane = Vec::with_capacity(width*height);
for px in buffer.pixels() {
let (y,u,v) = match config.color_space {
ColorSpace::YCbCr => {
let y = (0.2126 * px.r as f32 + 0.7152 * px.g as f32 + 0.0722 * px.b as f32).round();
let cb = (px.b as f32 - y) * (0.5/(1.-0.0722));
let cr = (px.r as f32 - y) * (0.5/(1.-0.2126));
(y as u8, (cb + 128.).round() as u8, (cr + 128.).round() as u8)
},
ColorSpace::RGB => {
(px.g, px.b, px.r)
},
};
y_plane.push(y);
u_plane.push(u);
v_plane.push(v);
a_plane.push(px.a);
}
let use_alpha = a_plane.iter().copied().any(|b| b != 255);
let color_pixel_range = PixelRange::Full;
encode_raw_planes(width, height, &y_plane, &u_plane, &v_plane, if use_alpha { Some(&a_plane) } else { None }, color_pixel_range, config)
}
pub fn encode_rgb(buffer: Img<&[RGB8]>, config: &EncConfig) -> Result<(Vec<u8>, usize), Box<dyn std::error::Error + Send + Sync>> {
let width = buffer.width();
let height = buffer.height();
let mut y_plane = Vec::with_capacity(width*height);
let mut u_plane = Vec::with_capacity(width*height);
let mut v_plane = Vec::with_capacity(width*height);
for px in buffer.pixels() {
let (y,u,v) = match config.color_space {
ColorSpace::YCbCr => {
let y = (0.2126 * px.r as f32 + 0.7152 * px.g as f32 + 0.0722 * px.b as f32).round();
let cb = (px.b as f32 - y) * (0.5/(1.-0.0722));
let cr = (px.r as f32 - y) * (0.5/(1.-0.2126));
(y as u8, (cb + 128.).round() as u8, (cr + 128.).round() as u8)
},
ColorSpace::RGB => {
(px.g, px.b, px.r)
},
};
y_plane.push(y);
u_plane.push(u);
v_plane.push(v);
}
let color_pixel_range = PixelRange::Full;
let (avif, heif_bloat, _) = encode_raw_planes(width, height, &y_plane, &u_plane, &v_plane, None, color_pixel_range, config)?;
Ok((avif, heif_bloat))
}
pub fn encode_raw_planes(width: usize, height: usize, y_plane: &[u8], u_plane: &[u8], v_plane: &[u8], a_plane: Option<&[u8]>, color_pixel_range: PixelRange, config: &EncConfig) -> Result<(Vec<u8>, usize, usize), Box<dyn std::error::Error + Send + Sync>> {
let quantizer = quality_to_quantizer(config.quality);
let alpha_quantizer = quality_to_quantizer(config.alpha_quality);
let matrix_coefficients = match config.color_space {
ColorSpace::YCbCr => MatrixCoefficients::BT709,
ColorSpace::RGB => MatrixCoefficients::Identity,
};
let color_description = Some(ColorDescription {
transfer_characteristics: TransferCharacteristics::SRGB,
color_primaries: ColorPrimaries::BT709, matrix_coefficients,
});
let threads = if config.threads > 0 { config.threads } else { num_cpus::get() };
let (color, alpha) = rayon::join(
|| encode_to_av1(&Av1EncodeConfig {
width,
height,
planes: &[&y_plane, &u_plane, &v_plane],
quantizer,
speed: config.speed,
threads,
pixel_range: color_pixel_range,
chroma_sampling: ChromaSampling::Cs444,
color_description,
}),
|| if let Some(a_plane) = a_plane {
Some(encode_to_av1(&Av1EncodeConfig {
width,
height,
planes: &[&a_plane],
quantizer: alpha_quantizer,
speed: config.speed,
threads,
pixel_range: PixelRange::Full,
chroma_sampling: ChromaSampling::Cs400,
color_description: None,
}))
} else {
None
});
let (color, alpha) = (color?, alpha.transpose()?);
let out = avif_serialize::Aviffy::new()
.premultiplied_alpha(config.premultiplied_alpha)
.to_vec(&color, alpha.as_deref(), width as u32, height as u32, 8);
let color_size = color.len();
let alpha_size = alpha.as_ref().map_or(0, |a| a.len());
Ok((out, color_size, alpha_size))
}
fn quality_to_quantizer(quality: f32) -> usize {
((1.-quality/100.) * 255.).round().max(0.).min(255.) as usize
}
pub(crate) struct Av1EncodeConfig<'a> {
pub width: usize,
pub height: usize,
pub planes: &'a [&'a [u8]],
pub quantizer: usize,
pub speed: u8,
pub threads: usize,
pub pixel_range: PixelRange,
pub chroma_sampling: ChromaSampling,
pub color_description: Option<ColorDescription>,
}
fn encode_to_av1(p: &Av1EncodeConfig<'_>) -> Result<Vec<u8>, Box<dyn std::error::Error + Send + Sync>> {
let tiles = p.threads.min((p.width * p.height) / (128 * 128));
let bit_depth = 8;
let cfg = Config::new()
.with_threads(p.threads.into())
.with_encoder_config(EncoderConfig {
width: p.width,
height: p.height,
time_base: Rational::new(1, 1),
sample_aspect_ratio: Rational::new(1, 1),
bit_depth,
chroma_sampling: p.chroma_sampling,
chroma_sample_position: if p.chroma_sampling == ChromaSampling::Cs400 {
ChromaSamplePosition::Unknown
} else {
ChromaSamplePosition::Colocated
},
pixel_range: p.pixel_range,
color_description: p.color_description,
mastering_display: None,
content_light: None,
enable_timing_info: false,
still_picture: true,
error_resilient: false,
switch_frame_interval: 0,
min_key_frame_interval: 0,
max_key_frame_interval: 0,
reservoir_frame_delay: None,
low_latency: false,
quantizer: p.quantizer,
min_quantizer: p.quantizer as _,
bitrate: 0,
tune: Tune::Psychovisual,
tile_cols: 0,
tile_rows: 0,
tiles,
rdo_lookahead_frames: 1,
speed_settings: SpeedSettings::from_preset(p.speed.into()),
});
let mut ctx: Context<u8> = cfg.new_context()?;
let mut frame = ctx.new_frame();
for (dst, src) in frame.planes.iter_mut().zip(p.planes) {
dst.copy_from_raw_u8(src, p.width, (bit_depth+7)/8);
}
ctx.send_frame(frame)?;
ctx.flush();
let mut out = Vec::new();
loop {
match ctx.receive_packet() {
Ok(mut packet) => match packet.frame_type {
FrameType::KEY => {
out.append(&mut packet.data);
}
_ => continue,
},
Err(EncoderStatus::Encoded) |
Err(EncoderStatus::LimitReached) => break,
Err(err) => Err(err)?,
}
}
Ok(out)
}