Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorRafael Caricio <rafael@caricio.com>2022-02-06 17:11:12 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-02-20 21:46:32 +0300
commitfb1cbe1a4c00891e255fda0a3f0b15975ca3e2ed (patch)
tree251fc4fddb1b9d127803919a3eaf843d0e720270 /net
parent9824c23ee53a21bd766fa1946fef7b482514fc55 (diff)
rusoto: Export AwsTranscriberResultStability enum
Diffstat (limited to 'net')
-rw-r--r--net/rusoto/src/aws_transcriber/mod.rs1
-rw-r--r--net/rusoto/src/lib.rs2
2 files changed, 3 insertions, 0 deletions
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)?;