From 5a0f7f69762c4e8f696e304f72604940fa9d2fb5 Mon Sep 17 00:00:00 2001 From: Rafael Caricio Date: Sun, 6 Feb 2022 15:11:12 +0100 Subject: [PATCH] rusoto: Export AwsTranscriberResultStability enum --- net/rusoto/src/aws_transcriber/mod.rs | 1 + net/rusoto/src/lib.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/net/rusoto/src/aws_transcriber/mod.rs b/net/rusoto/src/aws_transcriber/mod.rs index 29056f99..19de173e 100644 --- a/net/rusoto/src/aws_transcriber/mod.rs +++ b/net/rusoto/src/aws_transcriber/mod.rs @@ -15,6 +15,7 @@ mod packet; #[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy, glib::Enum)] #[repr(u32)] #[enum_type(name = "GstAwsTranscriberResultStability")] +#[non_exhaustive] pub enum AwsTranscriberResultStability { #[enum_value(name = "High: stabilize results as fast as possible", nick = "high")] High = 0, diff --git a/net/rusoto/src/lib.rs b/net/rusoto/src/lib.rs index 467d9d6e..953af6fa 100644 --- a/net/rusoto/src/lib.rs +++ b/net/rusoto/src/lib.rs @@ -16,6 +16,8 @@ mod s3src; mod s3url; mod s3utils; +pub use aws_transcriber::AwsTranscriberResultStability; + fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> { s3sink::register(plugin)?; s3src::register(plugin)?;