pub fn yuv444_to_bgra(
planar_image: &YuvPlanarImage<'_, u8>,
bgra: &mut [u8],
bgra_stride: u32,
range: YuvRange,
matrix: YuvStandardMatrix,
) -> Result<(), YuvError>Expand description
Convert YUV 444 planar format to BGRA format.
This function takes YUV 444 data with 8-bit precision, and converts it to BGRA format with 8-bit per channel precision.
§Arguments
planar_image- Source planar image.height- The height of the YUV image.bgra- A mutable slice to store the converted BGRA data.bgra_stride- Elements per BGRA data row.range- The YUV range (limited or full).matrix- The YUV standard matrix (BT.601 or BT.709 or BT.2020 or other).
§Panics
This function panics if the lengths of the planes or the input BGRA data are not valid based on the specified width, height, and strides, or if invalid YUV range or matrix is provided.