Skip to main content

PixelFormat

Enum PixelFormat 

Source
#[non_exhaustive]
#[repr(u8)]
pub enum PixelFormat { Rgb = 1, Rgba = 2, Bgra = 3, Grey = 4, Yuyv = 5, Vyuy = 6, Nv12 = 7, Nv16 = 8, PlanarRgb = 9, PlanarRgba = 10, Nv24 = 11, }
Expand description

Pixel format identifier.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Rgb = 1

Packed RGB [H, W, 3]

§

Rgba = 2

Packed RGBA [H, W, 4]

§

Bgra = 3

Packed BGRA [H, W, 4]

§

Grey = 4

Grayscale [H, W, 1]

§

Yuyv = 5

Packed YUV 4:2:2, YUYV byte order [H, W, 2]

§

Vyuy = 6

Packed YUV 4:2:2, VYUY byte order [H, W, 2]

§

Nv12 = 7

Semi-planar YUV 4:2:0 [H*3/2, W] or multiplane [H, W] + [H/2, W]

§

Nv16 = 8

Semi-planar YUV 4:2:2 [H*2, W] or multiplane [H, W] + [H, W]

§

PlanarRgb = 9

Planar RGB, channels-first [3, H, W]

§

PlanarRgba = 10

Planar RGBA, channels-first [4, H, W]

§

Nv24 = 11

Semi-planar YUV 4:4:4, contiguous shape [H*3, W]. Full-resolution chroma: Y plane (H rows of W bytes) + interleaved Cb/Cr plane (H image rows of W pairs = 2W bytes/row, laid out as 2H rows of W) → 3H rows total. Multiplane NV24 is not yet supported (see from_planes). Added last to keep the existing #[repr(u8)] discriminants (and any serialized values) stable.

Implementations§

Source§

impl PixelFormat

Source

pub const fn channels(&self) -> usize

Returns the number of channels for this pixel format.

For semi-planar formats (NV12, NV16), this returns 1 (the luma channel count for the primary plane). For packed formats, this is the total number of interleaved components per pixel.

Source

pub const fn layout(&self) -> PixelLayout

Returns the memory layout category for this pixel format.

Source

pub fn image_shape(&self, width: usize, height: usize) -> Option<Vec<usize>>

The tensor shape for this format at width×height, or None if the dimensions are invalid for the format, or the format is an unsupported semi-planar variant (any SemiPlanar variant other than Nv12, Nv16, and Nv24).

Odd dimensions are fully supported. The combined-plane height for NV12 is height + ceil(height / 2) (luma rows + chroma rows), which equals the classic height * 3 / 2 for even heights and stays exact for odd ones — e.g. 483 → 725 rows (483 luma + 242 chroma).

For semi-planar formats the shape carries the logical width as-is (odd widths are preserved, e.g. [720, 789] for a 789×384 NV12). The row stride recorded separately on the tensor is >= even(width) and 64-byte aligned; it may exceed the logical width. Use effective_row_stride() to determine the true byte pitch for mapping and allocation. Allocation byte size = total_h * row_stride, NOT the shape product.

Source

pub const fn combined_plane_height(&self, height: usize) -> Option<usize>

Combined-plane height in physical (stride-wide) rows for a semi-planar format: the Y rows plus the interleaved-UV rows.

  • NV12 (4:2:0): H + ceil(H/2) — exact for odd heights (e.g. 483 → 725 = 483 luma + 242 chroma), equals the classic H*3/2 for even.
  • NV16 (4:2:2): 2H (one full-height chroma row per luma row).
  • NV24 (4:4:4): 3H (a full-width 2W-byte chroma line spans two stride-wide buffer rows, so 2H chroma rows).

Returns None for non-semi-planar formats (and unsupported SemiPlanar variants). This is the single source of truth for the vertical extent of the contiguous NV* buffer — image_shape, the GL DMA-BUF/IOSurface imports, the PBO allocator, and the gpu-probe all derive from it, so the combined-plane height can never drift between them.

Source

pub const fn chroma_layout(&self) -> Option<ChromaLayout>

Per-format semi-planar chroma addressing parameters, shared by the codec writer (uv_rows_per_luma), the CPU readers, and both GL shaders so the combined-plane chroma geometry has a single source of truth. Returns None for non-semi-planar formats.

Source

pub fn semi_planar_surface_dims( &self, width: usize, height: usize, bpe: usize, ) -> Option<(usize, usize)>

Physical GPU-surface dimensions (pitch_width, total_h) in texels for a semi-planar combined plane bound as one bpe-byte-per-element texture, or None for non-semi-planar formats.

The width is rounded up to the 64-aligned row pitch (== bytes_per_row) rather than left at the even logical width. ANGLE (and tiled GPUs in general) will not address texels beyond a surface’s declared width via texelFetch, so a surface narrower than its padded bytes_per_row leaves the padding columns unreachable. That is fatal for NV24 (4:4:4): its chroma line is 2*W interleaved bytes, which spills past the even width into those padding columns whenever the row is padded (bytes_per_row > even_width). Making the surface width equal the pitch keeps every byte addressable and costs nothing — bytes_per_row is already this value.

Single source of truth for both IOSurface allocators (the tensor crate’s IoSurfaceTensor::new_image and the image crate’s ImageLayout), so they cannot diverge.

Source

pub const fn is_yuv(&self) -> bool

Returns true if this format encodes YUV (luma/chroma) data.

Source

pub const fn has_alpha(&self) -> bool

Returns true if this format includes an alpha channel.

Source

pub const fn to_fourcc(&self) -> u32

Returns the V4L2/DRM FourCC code for this format, or 0 for formats that have no standard FourCC representation (e.g., PlanarRgb).

Source

pub const fn from_fourcc(fourcc: u32) -> Option<Self>

Converts a V4L2/DRM FourCC code to a PixelFormat, returning None for unrecognized or zero codes.

Trait Implementations§

Source§

impl Clone for PixelFormat

Source§

fn clone(&self) -> PixelFormat

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for PixelFormat

Source§

impl Debug for PixelFormat

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for PixelFormat

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for PixelFormat

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for PixelFormat

Source§

impl Hash for PixelFormat

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for PixelFormat

Source§

fn eq(&self, other: &PixelFormat) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for PixelFormat

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for PixelFormat

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more