![FreezyLemon](/assets/img/avatar_default.png)
* Migrate ffmpeg-sys to Edition 2021 * Migrate ffmpeg to Edition 2021 * Remove now-redundant imports * Reorder imports after edition migration
14 lines
165 B
Rust
14 lines
165 B
Rust
use crate::ffi::*;
|
|
|
|
pub fn init() {
|
|
unsafe {
|
|
avformat_network_init();
|
|
}
|
|
}
|
|
|
|
pub fn deinit() {
|
|
unsafe {
|
|
avformat_network_deinit();
|
|
}
|
|
}
|