From 5cf6cd2e1dc892b0d9f6c89fe62b1e470fe6b7cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 13 Mar 2021 11:43:19 +0200 Subject: [PATCH] webrtc: Expose the v1_14_1 feature that enables the WebRTCFECType Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/issues/317 --- gstreamer-webrtc/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gstreamer-webrtc/Cargo.toml b/gstreamer-webrtc/Cargo.toml index 47b4fa70b..da3786d8f 100644 --- a/gstreamer-webrtc/Cargo.toml +++ b/gstreamer-webrtc/Cargo.toml @@ -28,7 +28,8 @@ default = [] embed-lgpl-docs = ["gstreamer-rs-lgpl-docs"] purge-lgpl-docs = ["gstreamer-rs-lgpl-docs"] dox = ["v1_20", "ffi/dox", "glib/dox", "gst/dox", "gst-sdp/dox"] -v1_16 = ["gst/v1_16", "gst-sdp/v1_16", "ffi/v1_16"] +v1_14_1 = ["ffi/v1_14_1"] +v1_16 = ["gst/v1_16", "gst-sdp/v1_16", "ffi/v1_16", "v1_14_1"] v1_18 = ["gst/v1_18", "gst-sdp/v1_18", "ffi/v1_18", "v1_16"] v1_20 = ["gst/v1_20", "gst-sdp/v1_20", "ffi/v1_20", "v1_18"]