Skip to main content

core_media_sys/
time_range.rs

1use crate::core_foundation_sys::base::{OSStatus, Boolean, CFAllocatorRef, CFTypeID, CFTypeRef};
2use crate::core_foundation_sys::dictionary::CFDictionaryRef;
3use crate::core_foundation_sys::string::CFStringRef;
4
5use crate::sync::CMClockRef;
6use crate::time::CMTime;
7
8
9#[repr(C)]
10#[derive(Debug, Copy, Clone)]
11pub struct CMTimeRange {
12    pub start: CMTime,
13    pub duration: CMTime,
14}