colconv 0.1.0

SIMD-dispatched color-conversion kernels covering the FFmpeg AVPixelFormat space, with a Sink-based API so consumers pick which derived outputs (RGB / Luma / HSV / custom) they want without paying for the ones they don't.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
//! Sinker impls for the planar **GBR** source family (Tier 10).
//!
//! Two formats covered:
//! - [`Gbrp`] (`AV_PIX_FMT_GBRP`) — three planes (G, B, R), no alpha.
//! - [`Gbrap`] (`AV_PIX_FMT_GBRAP`) — four planes (G, B, R, A), source α.
//!
//! Output paths:
//! - `with_rgb` — interleave G/B/R → packed `R, G, B` via the
//!   dedicated `gbr_to_rgb_row` SIMD/scalar kernel (no chroma matrix).
//! - `with_rgba` — for `Gbrp`: standalone path uses
//!   `gbr_to_rgba_opaque_row` (α = `0xFF`); combo path with `with_rgb`
//!   uses Strategy A (expand RGB → RGBA after the RGB kernel).
//!   For `Gbrap`: standalone uses `gbra_to_rgba_row` (real α from the
//!   source A plane); combo path with `with_rgb` uses Strategy A+
//!   (expand RGB → RGBA + α-overwrite from the source plane).
//! - `with_luma` / `with_luma_u16` — derived from RGB via the existing
//!   `rgb_to_luma_row` after a staged-RGB pass into `rgb_scratch`
//!   (matches the pattern used by [`super::Bgr24`] / [`super::Bgra`] etc.).
//! - `with_hsv` — derived from staged RGB via `rgb_to_hsv_row`
//!   (existing kernel — no new HSV variant).
//!
//! 8-bit planar GBR has no `u16` output flavour — `with_rgb_u16` /
//! `with_rgba_u16` are not declared on these source impls (they'd be
//! identity passes from u8 source which doesn't justify the extra
//! API surface; high-bit-depth Gbrp9/10/12/14/16 get `with_rgb_u16`
//! when they land in Tier 10b).

use super::{
  InsufficientBuffer, MixedSinker, MixedSinkerError, RowIndexOutOfRange, RowShapeMismatch,
  RowSlice, check_dimensions_match, rgb_row_buf_or_scratch, rgba_plane_row_slice,
};
use crate::{
  PixelSink,
  row::{
    expand_rgb_to_rgba_row, gbr_to_rgb_row, gbr_to_rgba_opaque_row, gbra_to_rgba_row,
    rgb_to_hsv_row, rgb_to_luma_row, rgb_to_luma_u16_row,
  },
  source::{Gbrap, GbrapRow, GbrapSink, Gbrp, GbrpRow, GbrpSink},
};

// ---- Gbrp impl ----------------------------------------------------------

impl<'a> MixedSinker<'a, Gbrp> {
  /// Attaches a packed **8-bit** RGBA output buffer. The 8-bit GBR
  /// source has no alpha channel, so every alpha byte is filled with
  /// constant `0xFF` (opaque).
  ///
  /// Returns `Err(InsufficientRgbaBuffer)` if `buf.len() < width x height
  /// x 4`, or `Err(GeometryOverflow)` on 32-bit overflow.
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn with_rgba(mut self, buf: &'a mut [u8]) -> Result<Self, MixedSinkerError> {
    self.set_rgba(buf)?;
    Ok(self)
  }
  /// In-place variant of [`with_rgba`](Self::with_rgba).
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn set_rgba(&mut self, buf: &'a mut [u8]) -> Result<&mut Self, MixedSinkerError> {
    let expected = self.frame_elems(4)?;
    if buf.len() < expected {
      return Err(MixedSinkerError::InsufficientRgbaBuffer(
        InsufficientBuffer::new(expected, buf.len()),
      ));
    }
    self.rgba = Some(buf);
    Ok(self)
  }

  /// Attaches a `u16` luma output buffer. Luma is derived from G/B/R
  /// via the standard `rgb_to_luma_row` kernel and zero-extended into
  /// `u16` (output range `[0, 255]` in u16 elements).
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn with_luma_u16(mut self, buf: &'a mut [u16]) -> Result<Self, MixedSinkerError> {
    self.set_luma_u16(buf)?;
    Ok(self)
  }
  /// In-place variant of [`with_luma_u16`](Self::with_luma_u16).
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn set_luma_u16(&mut self, buf: &'a mut [u16]) -> Result<&mut Self, MixedSinkerError> {
    let expected = self.frame_pixels()?;
    if buf.len() < expected {
      return Err(MixedSinkerError::InsufficientLumaU16Buffer(
        InsufficientBuffer::new(expected, buf.len()),
      ));
    }
    self.luma_u16 = Some(buf);
    Ok(self)
  }
}

impl GbrpSink for MixedSinker<'_, Gbrp> {}

impl PixelSink for MixedSinker<'_, Gbrp> {
  type Input<'r> = GbrpRow<'r>;
  type Error = MixedSinkerError;

  fn begin_frame(&mut self, width: u32, height: u32) -> Result<(), Self::Error> {
    check_dimensions_match(self.width, self.height, width, height)
  }

  fn process(&mut self, row: GbrpRow<'_>) -> Result<(), Self::Error> {
    let w = self.width;
    let h = self.height;
    let idx = row.row();
    let use_simd = self.simd;

    // Defense-in-depth row-shape checks; the walker normally pre-
    // validates these via `begin_frame` + the per-row slice math.
    if row.g().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::GPlane,
        idx,
        w,
        row.g().len(),
      )));
    }
    if row.b().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::BPlane,
        idx,
        w,
        row.b().len(),
      )));
    }
    if row.r().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::RPlane,
        idx,
        w,
        row.r().len(),
      )));
    }
    if idx >= self.height {
      return Err(MixedSinkerError::RowIndexOutOfRange(
        RowIndexOutOfRange::new(idx, self.height),
      ));
    }

    let Self {
      rgb,
      rgba,
      luma,
      luma_u16,
      hsv,
      rgb_scratch,
      ..
    } = self;
    let one_plane_start = idx * w;
    let one_plane_end = one_plane_start + w;
    let g_in = row.g();
    let b_in = row.b();
    let r_in = row.r();

    // ---- Output mode resolution (Strategy A) -------------------------
    //
    // - RGBA-only (no RGB / luma / luma_u16 / HSV): use the dedicated
    //   `gbr_to_rgba_opaque_row` to write the 4-byte output without
    //   staging RGB first.
    // - Otherwise: stage the RGB row into the user's RGB buffer (or
    //   `rgb_scratch` when only luma/HSV/RGBA are requested), then
    //   derive luma / HSV / RGBA from the staged RGB.
    let want_rgb = rgb.is_some();
    let want_rgba = rgba.is_some();
    let want_luma = luma.is_some();
    let want_luma_u16 = luma_u16.is_some();
    let want_hsv = hsv.is_some();
    let need_rgb_buffer = want_rgb || want_rgba || want_luma || want_luma_u16 || want_hsv;

    if want_rgba && !need_rgb_buffer_other(want_rgb, want_luma, want_luma_u16, want_hsv) {
      // RGBA-only — direct write, skip the staged RGB scratch.
      let rgba_buf = rgba.as_deref_mut().unwrap();
      let rgba_row = rgba_plane_row_slice(rgba_buf, one_plane_start, one_plane_end, w, h)?;
      gbr_to_rgba_opaque_row(g_in, b_in, r_in, rgba_row, w, use_simd);
      return Ok(());
    }

    if !need_rgb_buffer {
      return Ok(());
    }

    // Stage RGB once into the user's RGB buffer (if attached) or
    // `rgb_scratch`; reused for luma / HSV / RGBA fan-out below.
    let rgb_row = rgb_row_buf_or_scratch(
      rgb.as_deref_mut(),
      rgb_scratch,
      one_plane_start,
      one_plane_end,
      w,
      h,
    )?;
    gbr_to_rgb_row(g_in, b_in, r_in, rgb_row, w, use_simd);

    if let Some(luma) = luma.as_deref_mut() {
      rgb_to_luma_row(
        rgb_row,
        &mut luma[one_plane_start..one_plane_end],
        w,
        row.matrix(),
        row.full_range(),
        use_simd,
      );
    }

    if let Some(luma_u16) = luma_u16.as_deref_mut() {
      // Direct u8-RGB → u16 luma — `rgb_to_luma_u16_row` produces the
      // same byte values as the staged u8-luma + zero-extend path but
      // without any per-row scratch (no stack array, no heap alloc).
      rgb_to_luma_u16_row(
        rgb_row,
        &mut luma_u16[one_plane_start..one_plane_end],
        w,
        row.matrix(),
        row.full_range(),
        use_simd,
      );
    }

    if let Some(hsv) = hsv.as_mut() {
      let (h, s, v) = hsv.hsv();
      rgb_to_hsv_row(
        rgb_row,
        &mut h[one_plane_start..one_plane_end],
        &mut s[one_plane_start..one_plane_end],
        &mut v[one_plane_start..one_plane_end],
        w,
        use_simd,
      );
    }

    if let Some(buf) = rgba.as_deref_mut() {
      // Strategy A: expand the already-computed rgb_row → rgba_row
      // (constant α = `0xFF`). Avoids running a second per-pixel
      // interleave kernel.
      let rgba_row = rgba_plane_row_slice(buf, one_plane_start, one_plane_end, w, h)?;
      expand_rgb_to_rgba_row(rgb_row, rgba_row, w);
    }

    Ok(())
  }
}

// ---- Gbrap impl ---------------------------------------------------------

impl<'a> MixedSinker<'a, Gbrap> {
  /// Attaches a packed **8-bit** RGBA output buffer. Alpha is sourced
  /// from the source's A plane (real per-pixel α, not constant
  /// `0xFF`).
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn with_rgba(mut self, buf: &'a mut [u8]) -> Result<Self, MixedSinkerError> {
    self.set_rgba(buf)?;
    Ok(self)
  }
  /// In-place variant of [`with_rgba`](Self::with_rgba).
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn set_rgba(&mut self, buf: &'a mut [u8]) -> Result<&mut Self, MixedSinkerError> {
    let expected = self.frame_elems(4)?;
    if buf.len() < expected {
      return Err(MixedSinkerError::InsufficientRgbaBuffer(
        InsufficientBuffer::new(expected, buf.len()),
      ));
    }
    self.rgba = Some(buf);
    Ok(self)
  }

  /// Attaches a `u16` luma output buffer. Same derivation as the
  /// `Gbrp` sibling — luma is computed from G/B/R via
  /// `rgb_to_luma_row`, then zero-extended into `u16`.
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn with_luma_u16(mut self, buf: &'a mut [u16]) -> Result<Self, MixedSinkerError> {
    self.set_luma_u16(buf)?;
    Ok(self)
  }
  /// In-place variant of [`with_luma_u16`](Self::with_luma_u16).
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn set_luma_u16(&mut self, buf: &'a mut [u16]) -> Result<&mut Self, MixedSinkerError> {
    let expected = self.frame_pixels()?;
    if buf.len() < expected {
      return Err(MixedSinkerError::InsufficientLumaU16Buffer(
        InsufficientBuffer::new(expected, buf.len()),
      ));
    }
    self.luma_u16 = Some(buf);
    Ok(self)
  }
}

impl GbrapSink for MixedSinker<'_, Gbrap> {}

impl PixelSink for MixedSinker<'_, Gbrap> {
  type Input<'r> = GbrapRow<'r>;
  type Error = MixedSinkerError;

  fn begin_frame(&mut self, width: u32, height: u32) -> Result<(), Self::Error> {
    check_dimensions_match(self.width, self.height, width, height)
  }

  fn process(&mut self, row: GbrapRow<'_>) -> Result<(), Self::Error> {
    let w = self.width;
    let h = self.height;
    let idx = row.row();
    let use_simd = self.simd;

    if row.g().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::GPlane,
        idx,
        w,
        row.g().len(),
      )));
    }
    if row.b().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::BPlane,
        idx,
        w,
        row.b().len(),
      )));
    }
    if row.r().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::RPlane,
        idx,
        w,
        row.r().len(),
      )));
    }
    if row.a().len() != w {
      return Err(MixedSinkerError::RowShapeMismatch(RowShapeMismatch::new(
        RowSlice::AFull,
        idx,
        w,
        row.a().len(),
      )));
    }
    if idx >= self.height {
      return Err(MixedSinkerError::RowIndexOutOfRange(
        RowIndexOutOfRange::new(idx, self.height),
      ));
    }

    let Self {
      rgb,
      rgba,
      luma,
      luma_u16,
      hsv,
      rgb_scratch,
      ..
    } = self;
    let one_plane_start = idx * w;
    let one_plane_end = one_plane_start + w;
    let g_in = row.g();
    let b_in = row.b();
    let r_in = row.r();
    let a_in = row.a();

    let want_rgb = rgb.is_some();
    let want_rgba = rgba.is_some();
    let want_luma = luma.is_some();
    let want_luma_u16 = luma_u16.is_some();
    let want_hsv = hsv.is_some();
    let need_rgb_buffer = want_rgb || want_luma || want_luma_u16 || want_hsv;

    // RGBA-only (no RGB / luma / HSV): direct planar→packed RGBA with
    // source α (no staged RGB scratch).
    if want_rgba && !need_rgb_buffer {
      let rgba_buf = rgba.as_deref_mut().unwrap();
      let rgba_row = rgba_plane_row_slice(rgba_buf, one_plane_start, one_plane_end, w, h)?;
      gbra_to_rgba_row(g_in, b_in, r_in, a_in, rgba_row, w, use_simd);
      return Ok(());
    }

    if !need_rgb_buffer && !want_rgba {
      return Ok(());
    }

    // Stage RGB once. Reused for luma / HSV / RGBA fan-out.
    let rgb_row = rgb_row_buf_or_scratch(
      rgb.as_deref_mut(),
      rgb_scratch,
      one_plane_start,
      one_plane_end,
      w,
      h,
    )?;
    gbr_to_rgb_row(g_in, b_in, r_in, rgb_row, w, use_simd);

    if let Some(luma) = luma.as_deref_mut() {
      rgb_to_luma_row(
        rgb_row,
        &mut luma[one_plane_start..one_plane_end],
        w,
        row.matrix(),
        row.full_range(),
        use_simd,
      );
    }

    if let Some(luma_u16) = luma_u16.as_deref_mut() {
      // Direct u8-RGB → u16 luma — see Gbrp `with_luma_u16` above for
      // the rationale (no per-row scratch, byte-identical to the
      // staged u8-luma + zero-extend equivalent).
      rgb_to_luma_u16_row(
        rgb_row,
        &mut luma_u16[one_plane_start..one_plane_end],
        w,
        row.matrix(),
        row.full_range(),
        use_simd,
      );
    }

    if let Some(hsv) = hsv.as_mut() {
      let (h, s, v) = hsv.hsv();
      rgb_to_hsv_row(
        rgb_row,
        &mut h[one_plane_start..one_plane_end],
        &mut s[one_plane_start..one_plane_end],
        &mut v[one_plane_start..one_plane_end],
        w,
        use_simd,
      );
    }

    if let Some(buf) = rgba.as_deref_mut() {
      // Strategy A+: expand RGB row → RGBA (constant α = 0xFF), then
      // overwrite the α byte from the source A plane. Saves the
      // second per-pixel interleave kernel call.
      let rgba_row = rgba_plane_row_slice(buf, one_plane_start, one_plane_end, w, h)?;
      expand_rgb_to_rgba_row(rgb_row, rgba_row, w);
      crate::row::alpha_extract::copy_alpha_plane_u8(a_in, rgba_row, w, use_simd);
    }

    Ok(())
  }
}

// ---- helpers ------------------------------------------------------------

/// Returns `true` iff *any* output other than `with_rgba` is requested.
/// Used by `Gbrp::process` to decide between the standalone-RGBA fast
/// path and the staged-RGB combo path.
#[cfg_attr(not(tarpaulin), inline(always))]
const fn need_rgb_buffer_other(
  want_rgb: bool,
  want_luma: bool,
  want_luma_u16: bool,
  want_hsv: bool,
) -> bool {
  want_rgb || want_luma || want_luma_u16 || want_hsv
}