2021-11-28 12:36:12 +00:00
|
|
|
use std::mem;
|
|
|
|
|
2021-12-01 17:07:21 +00:00
|
|
|
use crate::consts::{QOI_HEADER_SIZE, QOI_INDEX, QOI_PADDING};
|
2021-11-28 12:36:12 +00:00
|
|
|
use crate::error::{Error, Result};
|
|
|
|
use crate::header::Header;
|
|
|
|
use crate::pixel::{Pixel, SupportedChannels};
|
2021-11-30 14:31:33 +00:00
|
|
|
use crate::utils::unlikely;
|
2021-11-28 12:36:12 +00:00
|
|
|
|
|
|
|
struct ReadBuf {
|
2021-11-30 14:31:33 +00:00
|
|
|
current: *const u8,
|
2021-11-28 12:36:12 +00:00
|
|
|
end: *const u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ReadBuf {
|
2021-11-30 14:31:33 +00:00
|
|
|
pub unsafe fn new(ptr: *const u8, len: usize) -> Self {
|
|
|
|
Self { current: ptr, end: ptr.add(len) }
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn read(&mut self) -> u8 {
|
|
|
|
unsafe {
|
2021-11-30 14:31:33 +00:00
|
|
|
let v = self.current.read();
|
|
|
|
self.current = self.current.add(1);
|
2021-11-28 12:36:12 +00:00
|
|
|
v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-11-30 14:31:33 +00:00
|
|
|
pub fn within_bounds(&self) -> bool {
|
|
|
|
self.current < self.end
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-01 17:01:41 +00:00
|
|
|
pub fn qoi_decode_impl<const N: usize>(data: &[u8], n_pixels: usize) -> Result<Vec<u8>>
|
2021-11-28 12:36:12 +00:00
|
|
|
where
|
|
|
|
Pixel<N>: SupportedChannels,
|
|
|
|
{
|
2021-12-01 17:01:41 +00:00
|
|
|
if unlikely(data.len() < QOI_HEADER_SIZE + QOI_PADDING) {
|
2021-12-01 16:01:17 +00:00
|
|
|
return Err(Error::InputBufferTooSmall {
|
|
|
|
size: data.len(),
|
|
|
|
required: QOI_HEADER_SIZE + QOI_PADDING,
|
|
|
|
});
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut pixels = Vec::<Pixel<N>>::with_capacity(n_pixels);
|
|
|
|
unsafe {
|
|
|
|
// Safety: we have just allocated enough memory to set the length without problems
|
|
|
|
pixels.set_len(n_pixels);
|
|
|
|
}
|
2021-12-01 00:05:04 +00:00
|
|
|
let encoded_data_size = data.len() - QOI_HEADER_SIZE - QOI_PADDING;
|
2021-11-28 12:36:12 +00:00
|
|
|
let mut buf = unsafe {
|
|
|
|
// Safety: we will check within the loop that there are no reads outside the slice
|
2021-11-30 14:31:33 +00:00
|
|
|
ReadBuf::new(data.as_ptr().add(QOI_HEADER_SIZE), encoded_data_size)
|
2021-11-28 12:36:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut index = [Pixel::new(); 64];
|
|
|
|
let mut px = Pixel::new().with_a(0xff);
|
|
|
|
let mut run = 0_u16;
|
|
|
|
|
|
|
|
for px_out in pixels.iter_mut() {
|
|
|
|
if run != 0 {
|
|
|
|
run -= 1;
|
2021-11-29 11:30:09 +00:00
|
|
|
*px_out = px;
|
|
|
|
continue;
|
2021-12-01 17:13:50 +00:00
|
|
|
} else if unlikely(!buf.within_bounds()) {
|
|
|
|
return Err(Error::UnexpectedBufferEnd);
|
2021-11-29 11:30:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let b1 = buf.read();
|
|
|
|
match b1 >> 4 {
|
|
|
|
0..=3 => {
|
|
|
|
// QOI_INDEX
|
|
|
|
px = unsafe {
|
|
|
|
// Safety: (b1 ^ QOI_INDEX) is guaranteed to be at most 6 bits
|
|
|
|
*index.get_unchecked(usize::from(b1 ^ QOI_INDEX))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
15 => {
|
|
|
|
// QOI_COLOR
|
|
|
|
if b1 & 8 != 0 {
|
|
|
|
px.set_r(buf.read());
|
|
|
|
}
|
|
|
|
if b1 & 4 != 0 {
|
|
|
|
px.set_g(buf.read());
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
2021-11-29 11:30:09 +00:00
|
|
|
if b1 & 2 != 0 {
|
|
|
|
px.set_b(buf.read());
|
|
|
|
}
|
|
|
|
if b1 & 1 != 0 {
|
|
|
|
px.set_a(buf.read());
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-29 11:30:09 +00:00
|
|
|
12..=13 => {
|
|
|
|
// QOI_DIFF_16
|
|
|
|
let b2 = buf.read();
|
|
|
|
px.rgb_add(
|
|
|
|
(b1 & 0x1f).wrapping_sub(16),
|
|
|
|
(b2 >> 4).wrapping_sub(8),
|
|
|
|
(b2 & 0x0f).wrapping_sub(8),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
14 => {
|
|
|
|
// QOI_DIFF_24
|
|
|
|
let (b2, b3) = (buf.read(), buf.read());
|
|
|
|
px.rgba_add(
|
|
|
|
(((b1 & 0x0f) << 1) | (b2 >> 7)).wrapping_sub(16),
|
|
|
|
((b2 & 0x7c) >> 2).wrapping_sub(16),
|
|
|
|
(((b2 & 0x03) << 3) | ((b3 & 0xe0) >> 5)).wrapping_sub(16),
|
|
|
|
(b3 & 0x1f).wrapping_sub(16),
|
|
|
|
);
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
2021-11-29 11:30:09 +00:00
|
|
|
4..=5 => {
|
|
|
|
// QOI_RUN_8
|
|
|
|
run = u16::from(b1 & 0x1f);
|
|
|
|
*px_out = px;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
8..=11 => {
|
|
|
|
// QOI_DIFF_8
|
|
|
|
px.rgb_add(
|
|
|
|
((b1 >> 4) & 0x03).wrapping_sub(2),
|
|
|
|
((b1 >> 2) & 0x03).wrapping_sub(2),
|
|
|
|
(b1 & 0x03).wrapping_sub(2),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
6..=7 => {
|
|
|
|
// QOI_RUN_16
|
|
|
|
run = 32 + ((u16::from(b1 & 0x1f) << 8) | u16::from(buf.read()));
|
|
|
|
*px_out = px;
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-30 14:30:55 +00:00
|
|
|
_ => {
|
|
|
|
unsafe {
|
|
|
|
// the compiler should figure it out on its own, but just in case
|
|
|
|
core::hint::unreachable_unchecked()
|
|
|
|
}
|
|
|
|
}
|
2021-11-29 11:30:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
// Safety: hash_index() is computed mod 64, so it will never go out of bounds
|
|
|
|
*index.get_unchecked_mut(usize::from(px.hash_index())) = px;
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*px_out = px;
|
|
|
|
}
|
|
|
|
|
|
|
|
let bytes = unsafe {
|
|
|
|
// Safety: this is safe because we have previously set all the lengths ourselves
|
|
|
|
let ptr = pixels.as_mut_ptr();
|
|
|
|
mem::forget(pixels);
|
|
|
|
Vec::from_raw_parts(ptr as *mut _, n_pixels * N, n_pixels * N)
|
|
|
|
};
|
|
|
|
|
2021-12-01 17:01:41 +00:00
|
|
|
Ok(bytes)
|
2021-11-28 12:36:12 +00:00
|
|
|
}
|
|
|
|
|
2021-12-01 17:01:41 +00:00
|
|
|
pub trait MaybeChannels {
|
|
|
|
fn maybe_channels(&self) -> Option<u8>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MaybeChannels for u8 {
|
|
|
|
#[inline]
|
|
|
|
fn maybe_channels(&self) -> Option<u8> {
|
|
|
|
Some(*self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MaybeChannels for Option<u8> {
|
|
|
|
#[inline]
|
|
|
|
fn maybe_channels(&self) -> Option<u8> {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn qoi_decode_to_vec(
|
|
|
|
data: impl AsRef<[u8]>, channels: impl MaybeChannels,
|
|
|
|
) -> Result<(Header, Vec<u8>)> {
|
2021-11-28 12:36:12 +00:00
|
|
|
let data = data.as_ref();
|
2021-12-01 17:01:41 +00:00
|
|
|
let header = qoi_decode_header(data)?;
|
2021-12-01 17:07:21 +00:00
|
|
|
header.validate()?;
|
2021-12-01 17:01:41 +00:00
|
|
|
let channels = channels.maybe_channels().unwrap_or(header.channels);
|
2021-11-28 12:36:12 +00:00
|
|
|
match channels {
|
2021-12-01 17:01:41 +00:00
|
|
|
3 => Ok((header, qoi_decode_impl::<3>(data, header.n_pixels())?)),
|
|
|
|
4 => Ok((header, qoi_decode_impl::<4>(data, header.n_pixels())?)),
|
2021-11-28 12:36:12 +00:00
|
|
|
_ => Err(Error::InvalidChannels { channels }),
|
|
|
|
}
|
|
|
|
}
|
2021-12-01 16:01:58 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn qoi_decode_header(data: impl AsRef<[u8]>) -> Result<Header> {
|
|
|
|
let data = data.as_ref();
|
2021-12-01 17:01:41 +00:00
|
|
|
if unlikely(data.len() < QOI_HEADER_SIZE) {
|
2021-12-01 16:01:58 +00:00
|
|
|
return Err(Error::InputBufferTooSmall { size: data.len(), required: QOI_HEADER_SIZE });
|
|
|
|
}
|
2021-12-01 17:01:41 +00:00
|
|
|
let mut bytes = [0_u8; QOI_HEADER_SIZE];
|
|
|
|
bytes.copy_from_slice(&data[..QOI_HEADER_SIZE]);
|
2021-12-01 17:07:21 +00:00
|
|
|
Ok(Header::from_bytes(bytes))
|
2021-12-01 16:01:58 +00:00
|
|
|
}
|