forked from mirrors/gstreamer-rs
gstreamer/plugin: Register plugins with the correct minor version when building for 1.18
This commit is contained in:
parent
6cf5914e21
commit
3f495ce1da
1 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,8 @@ pub const MAJOR_VERSION: i32 = 1;
|
|||
pub const MINOR_VERSION: i32 = 14;
|
||||
#[cfg(all(feature = "v1_16", not(feature = "v1_18")))]
|
||||
pub const MINOR_VERSION: i32 = 16;
|
||||
#[cfg(all(feature = "v1_18", not(feature = "v1_20")))]
|
||||
pub const MINOR_VERSION: i32 = 17;
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! gst_plugin_define(
|
||||
|
|
Loading…
Reference in a new issue