rusoto: Export AwsTranscriberResultStability enum

This commit is contained in:
Rafael Caricio 2022-02-06 15:11:12 +01:00 committed by Sebastian Dröge
parent 9824c23ee5
commit fb1cbe1a4c
2 changed files with 3 additions and 0 deletions

View file

@ -15,6 +15,7 @@ mod packet;
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy, glib::Enum)] #[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy, glib::Enum)]
#[repr(u32)] #[repr(u32)]
#[enum_type(name = "GstAwsTranscriberResultStability")] #[enum_type(name = "GstAwsTranscriberResultStability")]
#[non_exhaustive]
pub enum AwsTranscriberResultStability { pub enum AwsTranscriberResultStability {
#[enum_value(name = "High: stabilize results as fast as possible", nick = "high")] #[enum_value(name = "High: stabilize results as fast as possible", nick = "high")]
High = 0, High = 0,

View file

@ -16,6 +16,8 @@ mod s3src;
mod s3url; mod s3url;
mod s3utils; mod s3utils;
pub use aws_transcriber::AwsTranscriberResultStability;
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> { fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
s3sink::register(plugin)?; s3sink::register(plugin)?;
s3src::register(plugin)?; s3src::register(plugin)?;