1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, improper_ctypes,
    dead_code, unused_imports, )]

#[macro_use]
extern crate cfg_if;
extern crate libc;
extern crate core_foundation_sys;

#[cfg(any(target_os = "macos", target_os = "ios"))]
#[link(name = "CoreMedia", kind = "framework")]
extern "C" { }


pub mod attachment;
pub mod buffer_queue;
pub mod memory_pool;
pub mod sync;
pub mod audio_device_clock;
pub mod format_description;
pub mod metadata;
pub mod time;
pub mod base;
pub mod format_description_bridge;
pub mod sample_buffer;
pub mod time_range;
pub mod block_buffer;
pub mod sample_queue;


pub use self::attachment::*;
pub use self::buffer_queue::*;
pub use self::memory_pool::*;
pub use self::sync::*;
pub use self::audio_device_clock::*;
pub use self::format_description::*;
pub use self::metadata::*;
pub use self::time::*;
pub use self::base::*;
pub use self::format_description_bridge::*;
pub use self::sample_buffer::*;
pub use self::time_range::*;
pub use self::block_buffer::*;
pub use self::sample_queue::*;