Struct exr::meta::attribute::TimeCode[][src]

pub struct TimeCode {
    pub hours: u8,
    pub minutes: u8,
    pub seconds: u8,
    pub frame: u8,
    pub drop_frame: bool,
    pub color_frame: bool,
    pub field_phase: bool,
    pub binary_group_flags: [bool; 3],
    pub binary_groups: [u8; 8],
}
Expand description

Contains time information for this frame within a sequence. Also defined methods to compile this information into a TV60, TV50 or Film24 bit sequence, packed into u32.

Satisfies the SMPTE standard 12M-1999. For more in-depth information, see philrees.co.uk/timecode.

Fields

hours: u8

Hours 0 - 23 are valid.

minutes: u8

Minutes 0 - 59 are valid.

seconds: u8

Seconds 0 - 59 are valid.

frame: u8

Frame Indices 0 - 29 are valid.

drop_frame: bool

Whether this is a drop frame.

color_frame: bool

Whether this is a color frame.

field_phase: bool

Field Phase.

binary_group_flags: [bool; 3]

Flags for TimeCode.binary_groups.

binary_groups: [u8; 8]

The user-defined control codes. Every entry in this array can use at most 3 bits. This results in a maximum value of 15, including 0, for each u8.

Implementations

impl TimeCode[src]

pub const BYTE_SIZE: usize[src]

Number of bytes this would consume in an exr file.

pub fn validate(&self, strict: bool) -> UnitResult[src]

Returns an error if this time code is considered invalid.

pub fn pack_time_as_tv60_u32(&self) -> Result<u32>[src]

Pack the SMPTE time code into a u32 value, according to TV60 packing. This is the encoding which is used within a binary exr file.

pub fn from_tv60_time(tv60_time: u32, user_data: u32) -> Self[src]

Unpack a time code from one TV60 encoded u32 value and the encoded user data. This is the encoding which is used within a binary exr file.

pub fn pack_time_as_tv50_u32(&self) -> Result<u32>[src]

Pack the SMPTE time code into a u32 value, according to TV50 packing. This encoding does not support the drop_frame flag, it will be lost.

pub fn from_tv50_time(tv50_time: u32, user_data: u32) -> Self[src]

Unpack a time code from one TV50 encoded u32 value and the encoded user data. This encoding does not support the drop_frame flag, it will always be false.

pub fn pack_time_as_film24_u32(&self) -> Result<u32>[src]

Pack the SMPTE time code into a u32 value, according to FILM24 packing. This encoding does not support the drop_frame and color_frame flags, they will be lost.

pub fn from_film24_time(film24_time: u32, user_data: u32) -> Self[src]

Unpack a time code from one TV60 encoded u32 value and the encoded user data. This encoding does not support the drop_frame and color_frame flags, they will always be false.

pub fn pack_user_data_as_u32(&self) -> u32[src]

Pack the user data u8 array into one u32. User data values are clamped to the valid range (maximum value is 4).

pub fn write<W: Write>(&self, write: &mut W) -> UnitResult[src]

Write this time code to the byte stream, encoded as TV60 integers. Returns an Error::Invalid if the fields are out of the allowed range.

pub fn read<R: Read>(read: &mut R) -> Result<Self>[src]

Read the time code, without validating, extracting from TV60 integers.

Trait Implementations

impl Clone for TimeCode[src]

fn clone(&self) -> TimeCode[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for TimeCode[src]

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

Formats the value using the given formatter. Read more

impl Hash for TimeCode[src]

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

Feeds this value into the given Hasher. Read more

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

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

impl PartialEq<TimeCode> for TimeCode[src]

fn eq(&self, other: &TimeCode) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &TimeCode) -> bool[src]

This method tests for !=.

impl Copy for TimeCode[src]

impl Eq for TimeCode[src]

impl StructuralEq for TimeCode[src]

impl StructuralPartialEq for TimeCode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.