FreezyLemon 7a8643f2cc
Migrate crates to Rust edition 2021 (#24)
* Migrate ffmpeg-sys to Edition 2021

* Migrate ffmpeg to Edition 2021

* Remove now-redundant imports

* Reorder imports after edition migration
2024-04-06 21:31:36 -04:00

14 lines
165 B
Rust

use crate::ffi::*;
pub fn init() {
unsafe {
avformat_network_init();
}
}
pub fn deinit() {
unsafe {
avformat_network_deinit();
}
}