mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-26 11:31:06 +00:00
Use fully qualified path for plugin_desc in gst_plugin_define
This is required when gst_plugin_define is used from a a submodule mod.rs (not from the crate's lib.rs).
This commit is contained in:
parent
be2f5c690b
commit
ca96014c47
2 changed files with 2 additions and 2 deletions
|
@ -94,6 +94,6 @@ macro_rules! gst_plugin_define(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub use plugin_desc::plugin_register_static;
|
pub use self::plugin_desc::plugin_register_static;
|
||||||
};
|
};
|
||||||
);
|
);
|
||||||
|
|
|
@ -106,6 +106,6 @@ macro_rules! gst_plugin_define(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub use plugin_desc::plugin_register_static;
|
pub use self::plugin_desc::plugin_register_static;
|
||||||
};
|
};
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue