rustsynth 0.7.0

Safe VapourSynth wrapper
Documentation
1
2
3
4
5
6
7
8
mod tests {
    #[test]
    fn test_api_version() {
        let vsapi = crate::vsscript::ScriptAPI::get().unwrap();
        let version = vsapi.get_api_version();
        assert!(version >= crate::ffi::VSSCRIPT_API_VERSION)
    }
}