core_video::pixel_buffer

Struct CVPixelBuffer

source
pub struct CVPixelBuffer(/* private fields */);

Implementations§

source§

impl CVPixelBuffer

source

pub fn new( pixel_format: OSType, width: usize, height: usize, options: Option<&CFDictionary<CFString, CFType>>, ) -> Result<CVPixelBuffer, CVReturn>

source

pub unsafe fn new_with_bytes( pixel_format: OSType, width: usize, height: usize, base_address: *mut c_void, bytes_per_row: usize, release_callback: CVPixelBufferReleaseBytesCallback, release_ref_con: *mut c_void, options: Option<&CFDictionary<CFString, CFType>>, ) -> Result<CVPixelBuffer, CVReturn>

source

pub unsafe fn new_with_planar_bytes( pixel_format: OSType, width: usize, height: usize, data_ptr: *mut c_void, data_size: usize, number_of_planes: usize, plane_base_address: Vec<*mut c_void>, plane_width: Vec<usize>, plane_height: Vec<usize>, plane_bytes_per_row: Vec<usize>, release_callback: CVPixelBufferReleasePlanarBytesCallback, release_ref_con: *mut c_void, options: Option<&CFDictionary<CFString, CFType>>, ) -> Result<CVPixelBuffer, CVReturn>

source

pub fn lock_base_address(&self, options: CVPixelBufferLockFlags) -> CVReturn

source

pub fn unlock_base_address(&self, options: CVPixelBufferLockFlags) -> CVReturn

source

pub fn get_width(&self) -> usize

source

pub fn get_height(&self) -> usize

source

pub fn get_pixel_format(&self) -> OSType

source

pub unsafe fn get_base_address(&self) -> *mut c_void

source

pub fn get_bytes_per_row(&self) -> usize

source

pub fn get_data_size(&self) -> usize

source

pub fn is_planar(&self) -> bool

source

pub fn get_plane_count(&self) -> usize

source

pub fn get_width_of_plane(&self, plane_index: usize) -> usize

source

pub fn get_height_of_plane(&self, plane_index: usize) -> usize

source

pub unsafe fn get_base_address_of_plane( &self, plane_index: usize, ) -> *mut c_void

source

pub fn get_bytes_per_row_of_plane(&self, plane_index: usize) -> usize

source

pub fn get_extended_pixels(&self) -> (usize, usize, usize, usize)

source

pub fn fill_extended_pixels(&self) -> CVReturn

source

pub fn copy_creation_attributes(&self) -> Option<CFDictionary<CFString, CFType>>

source§

impl CVPixelBuffer

Trait Implementations§

source§

impl Clone for CVPixelBuffer

source§

fn clone(&self) -> CVPixelBuffer

Returns a copy of the value. Read more
1.6.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for CVPixelBuffer

source§

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

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

impl Drop for CVPixelBuffer

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl PartialEq for CVPixelBuffer

source§

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

Tests for self and other values to be equal, and is used by ==.
1.6.0 · 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 TCFType for CVPixelBuffer

source§

type Ref = *mut __CVBuffer

The reference type wrapped inside this type.
source§

fn as_concrete_TypeRef(&self) -> CVPixelBufferRef

Returns the object as its concrete TypeRef.
source§

unsafe fn wrap_under_get_rule(reference: CVPixelBufferRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Get Rule”. The reference count is bumped.
source§

fn as_CFTypeRef(&self) -> CFTypeRef

Returns the object as a raw CFTypeRef. The reference count is not adjusted.
source§

unsafe fn wrap_under_create_rule(reference: CVPixelBufferRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Create Rule”. The reference count is not bumped.
source§

fn type_id() -> CFTypeID

Returns the type ID for this class.
source§

fn as_CFType(&self) -> CFType

Returns the object as a wrapped CFType. The reference count is incremented by one.
source§

fn into_CFType(self) -> CFType
where Self: Sized,

Returns the object as a wrapped CFType. Consumes self and avoids changing the reference count.
source§

fn retain_count(&self) -> isize

Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero.
source§

fn type_of(&self) -> usize

Returns the type ID of this object.
source§

fn show(&self)

Writes a debugging version of this object on standard error.
source§

fn instance_of<OtherCFType>(&self) -> bool
where OtherCFType: TCFType,

Returns true if this value is an instance of another type.
source§

impl TCVBuffer for CVPixelBuffer

source§

fn as_buffer(&self) -> CVBuffer

source§

fn into_buffer(self) -> CVBuffer
where Self: Sized,

source§

impl TCVImageBuffer for CVPixelBuffer

source§

impl<'a> ToVoid<CVPixelBuffer> for &'a CVPixelBuffer

source§

impl ToVoid<CVPixelBuffer> for CVPixelBufferRef

source§

impl ToVoid<CVPixelBuffer> for CVPixelBuffer

source§

impl ConcreteCFType for CVPixelBuffer

source§

impl Eq for CVPixelBuffer

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, dst: *mut T)

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

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromMutVoid for T
where T: TCFType,

source§

unsafe fn from_mut_void<'a>(x: *mut c_void) -> ItemMutRef<'a, T>

source§

impl<T> FromVoid for T
where T: TCFType,

source§

unsafe fn from_void<'a>(x: *const c_void) -> ItemRef<'a, T>

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> 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, 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> AutoreleaseSafe for T
where T: ?Sized,