// Copyright (C) 2020 Julien Bardagi // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. mod hsvdetector; mod hsvfilter; mod hsvutils; fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> { hsvfilter::register(plugin)?; hsvdetector::register(plugin)?; Ok(()) } gst::plugin_define!( hsv, env!("CARGO_PKG_DESCRIPTION"), plugin_init, concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")), "MIT/X11", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_NAME"), env!("CARGO_PKG_REPOSITORY"), env!("BUILD_REL_DATE") );