mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 10:30:40 +00:00
net/aws: remove aws_ from the aws_transcribe* folder names
Those folders reside under `aws`, so there's shouldn't be any confusion. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1104>
This commit is contained in:
parent
ce3bb2f1d4
commit
57f365979c
6 changed files with 5 additions and 5 deletions
|
@ -14,21 +14,21 @@
|
|||
*/
|
||||
use gst::glib;
|
||||
|
||||
mod aws_transcribe_parse;
|
||||
mod aws_transcriber;
|
||||
mod s3hlssink;
|
||||
mod s3sink;
|
||||
mod s3src;
|
||||
mod s3url;
|
||||
mod s3utils;
|
||||
mod transcribe_parse;
|
||||
mod transcriber;
|
||||
|
||||
pub use aws_transcriber::AwsTranscriberResultStability;
|
||||
pub use transcriber::AwsTranscriberResultStability;
|
||||
|
||||
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
||||
s3sink::register(plugin)?;
|
||||
s3src::register(plugin)?;
|
||||
aws_transcribe_parse::register(plugin)?;
|
||||
aws_transcriber::register(plugin)?;
|
||||
transcribe_parse::register(plugin)?;
|
||||
transcriber::register(plugin)?;
|
||||
s3hlssink::register(plugin)?;
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue