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
//! Rust bindings to the MediaCodec APIs in the Android NDK.
//!
//! # Examples
//!
//! ### Decoding
//! ```
//! # use anodecs::{Frame, MediaCodec, MediaExtractor, SampleFormat, VideoFrame};
//! # #[unsafe(no_mangle)]
//! # extern "C" fn process() {
//! let mut extractor = MediaExtractor::from_url("/path/to/a/resource").unwrap();
//! // ... (see the `examples/decoding.rs` file for the full example)
//! # }
//! ```
//!
//! ### Demuxing
//! ```
//! # use anodecs::MediaExtractor;
//! # #[unsafe(no_mangle)]
//! # extern "C" fn process() {
//! let mut extractor = MediaExtractor::from_url("/path/to/a/resource").unwrap();
//! // ... (see the `examples/demuxing.rs` file for the full example)
//! # }
//! ```
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;