Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'video/gif/src/lib.rs')
-rw-r--r--video/gif/src/lib.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/video/gif/src/lib.rs b/video/gif/src/lib.rs
index 7b14fbd0c..7e0903389 100644
--- a/video/gif/src/lib.rs
+++ b/video/gif/src/lib.rs
@@ -6,19 +6,13 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
-#[macro_use]
-extern crate glib;
-#[macro_use]
-extern crate gstreamer as gst;
-extern crate gstreamer_video as gst_video;
-
mod gifenc;
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gifenc::register(plugin)
}
-gst_plugin_define!(
+gst::gst_plugin_define!(
gifenc,
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,