mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 13:31:00 +00:00
net/aws: Clean up pending rusoto references
This commit is contained in:
parent
cb84206457
commit
7bc785fba3
2 changed files with 3 additions and 3 deletions
|
@ -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,);
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue