// Copyright (C) 2016-2017 Sebastian Dröge // 2016 Luis de Bethencourt // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. extern crate libc; extern crate url; #[macro_use] extern crate bitflags; #[macro_use] extern crate slog; #[macro_use] extern crate lazy_static; extern crate byteorder; extern crate num_rational; #[macro_use] pub mod utils; #[macro_use] pub mod error; pub mod buffer; pub mod adapter; #[macro_use] pub mod plugin; pub mod source; pub mod sink; pub mod demuxer; pub mod log; pub mod value; pub mod caps; pub mod bytes; pub mod tags; pub mod streams; pub mod miniobject;