From 5fd1f2bcbe0a00379a2b70c6f2da7f00e44717d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 6 Sep 2018 14:21:24 +0300 Subject: [PATCH] Remove accidentally committed mixer module --- gst-plugin-tutorial/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst-plugin-tutorial/src/lib.rs b/gst-plugin-tutorial/src/lib.rs index b85c61f8..4b1f1998 100644 --- a/gst-plugin-tutorial/src/lib.rs +++ b/gst-plugin-tutorial/src/lib.rs @@ -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 }