gstreamer/plugin_1_14: Use minor version 20 instead of 19 for v1_20

Now that gstreamer 1.20 is out all v1_20 plugins will be linked against
the 1.20 stable release, not the unstable 1.19 development release.
This commit is contained in:
Marijn Suijten 2022-02-18 11:32:32 +01:00
parent 2426d7ce8c
commit 462e19dee9

View file

@ -4,7 +4,7 @@ pub const MAJOR_VERSION: i32 = 1;
cfg_if::cfg_if! {
if #[cfg(feature = "v1_20")] {
pub const MINOR_VERSION: i32 = 19;
pub const MINOR_VERSION: i32 = 20;
} else if #[cfg(feature = "v1_18")] {
pub const MINOR_VERSION: i32 = 18;
} else if #[cfg(feature = "v1_16")] {