openh264-sys2 0.9.6

Low-level bindings for OpenH264.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod common;

#[test]
#[cfg(all(target_os = "windows", target_arch = "x86_64", feature = "libloading"))]
fn api_loader() {
    use crate::common::api_generic;
    use openh264_sys2::libloading::APILoader;
    use openh264_sys2::reference_dll_name;

    let file = format!("./tests/reference/{}", reference_dll_name());
    let api = unsafe { APILoader::new(file).unwrap() };
    api_generic(api);
}