Remove accidentally committed mixer module

This commit is contained in:
Sebastian Dröge 2018-09-06 14:21:24 +03:00
parent 17193e3308
commit 5fd1f2bcbe

View file

@ -21,14 +21,12 @@ extern crate num_traits;
mod rgb2gray;
mod sinesrc;
mod mixer;
// Plugin entry point that should register all elements provided by this plugin,
// and everything else that this plugin might provide (e.g. typefinders or device providers).
fn plugin_init(plugin: &gst::Plugin) -> bool {
rgb2gray::register(plugin);
sinesrc::register(plugin);
mixer::register(plugin);
true
}