diff --git a/docs/plugins/gst_plugins_cache.json b/docs/plugins/gst_plugins_cache.json index f0647688..a2c29724 100644 --- a/docs/plugins/gst_plugins_cache.json +++ b/docs/plugins/gst_plugins_cache.json @@ -5546,7 +5546,7 @@ } }, "filename": "gstrsonvif", - "license": "MPL", + "license": "MPL-2.0", "other-types": {}, "package": "gst-plugin-onvif", "source": "gst-plugin-onvif", @@ -5811,7 +5811,7 @@ } }, "filename": "gstrsrtp", - "license": "MPL", + "license": "MPL-2.0", "other-types": {}, "package": "gst-plugin-rtp", "source": "gst-plugin-rtp", @@ -8548,7 +8548,7 @@ } }, "filename": "gsttogglerecord", - "license": "MPL-2.0", + "license": "MPL", "other-types": {}, "package": "gst-plugin-togglerecord", "source": "gst-plugin-togglerecord", diff --git a/net/onvif/src/lib.rs b/net/onvif/src/lib.rs index 3bda1cb7..1b5b7887 100644 --- a/net/onvif/src/lib.rs +++ b/net/onvif/src/lib.rs @@ -130,7 +130,7 @@ gst::plugin_define!( env!("CARGO_PKG_DESCRIPTION"), plugin_init, concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")), - "MPL", + "MPL-2.0", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_NAME"), env!("CARGO_PKG_REPOSITORY"), diff --git a/net/rtp/src/lib.rs b/net/rtp/src/lib.rs index 140561a0..a11aae9e 100644 --- a/net/rtp/src/lib.rs +++ b/net/rtp/src/lib.rs @@ -31,7 +31,7 @@ gst::plugin_define!( env!("CARGO_PKG_DESCRIPTION"), plugin_init, concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")), - "MPL", + "MPL-2.0", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_NAME"), env!("CARGO_PKG_REPOSITORY"), diff --git a/utils/togglerecord/src/lib.rs b/utils/togglerecord/src/lib.rs index e0cf7f1e..dd251d4a 100644 --- a/utils/togglerecord/src/lib.rs +++ b/utils/togglerecord/src/lib.rs @@ -26,7 +26,7 @@ gst::plugin_define!( plugin_init, concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")), // FIXME: MPL-2.0 is only allowed since 1.18.3 (as unknown) and 1.20 (as known) - "MPL-2.0", + "MPL", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_NAME"), env!("CARGO_PKG_REPOSITORY"),