Struct mlt_sys::mlt_playlist_clip_info[][src]

#[repr(C)]
pub struct mlt_playlist_clip_info { pub clip: c_int, pub producer: mlt_producer, pub cut: mlt_producer, pub start: mlt_position, pub resource: *mut c_char, pub frame_in: mlt_position, pub frame_out: mlt_position, pub frame_count: mlt_position, pub length: mlt_position, pub fps: f32, pub repeat: c_int, }

\brief structure for returning clip information from a playlist entry

Fields

< the index of the clip within the playlist

< the clip's producer (or parent producer of a cut)

< the clips' cut producer

< the time this begins relative to the beginning of the playlist

< the file name or address of the clip

< the clip's in point

< the clip's out point

< the duration of the clip

< the unedited duration of the clip

< the frame rate of the clip

< the number of times the clip is repeated

Trait Implementations

impl Debug for mlt_playlist_clip_info
[src]

Formats the value using the given formatter. Read more

impl Copy for mlt_playlist_clip_info
[src]

impl Clone for mlt_playlist_clip_info
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations