net/aws: Clean up pending rusoto references

This commit is contained in:
Sanchayan Maity 2022-06-25 11:29:51 +05:30 committed by Arun Raghavan
parent cb84206457
commit 7bc785fba3
2 changed files with 3 additions and 3 deletions

View file

@ -616,7 +616,7 @@ impl S3Sink {
#[glib::object_subclass]
impl ObjectSubclass for S3Sink {
const NAME: &'static str = "RusotoS3Sink";
const NAME: &'static str = "AwsS3Sink";
type Type = super::S3Sink;
type ParentType = gst_base::BaseSink;
type Interfaces = (gst::URIHandler,);

View file

@ -263,7 +263,7 @@ impl S3Src {
#[glib::object_subclass]
impl ObjectSubclass for S3Src {
const NAME: &'static str = "RusotoS3Src";
const NAME: &'static str = "AwsS3Src";
type Type = super::S3Src;
type ParentType = gst_base::BaseSrc;
type Interfaces = (gst::URIHandler,);
@ -484,7 +484,7 @@ impl BaseSrcImpl for S3Src {
let mut state = self.state.lock().unwrap();
if let StreamingState::Started { .. } = *state {
unreachable!("RusotoS3Src is already started");
unreachable!("AwsS3Src is already started");
}
let settings = self.settings.lock().unwrap();