mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-26 03:21:03 +00:00
pbutils/encoding_profile: Remove unnecessary lifetime annotations
This commit is contained in:
parent
92f9f3be39
commit
fa72d53437
1 changed files with 3 additions and 3 deletions
|
@ -174,7 +174,7 @@ impl EncodingAudioProfile {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[doc(alias = "gst_encoding_audio_profile_new")]
|
#[doc(alias = "gst_encoding_audio_profile_new")]
|
||||||
pub fn builder<'a>(format: &'a gst::Caps) -> EncodingAudioProfileBuilder<'a> {
|
pub fn builder(format: &gst::Caps) -> EncodingAudioProfileBuilder {
|
||||||
EncodingAudioProfileBuilder::new(format)
|
EncodingAudioProfileBuilder::new(format)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -202,7 +202,7 @@ impl EncodingVideoProfile {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[doc(alias = "gst_encoding_video_profile_new")]
|
#[doc(alias = "gst_encoding_video_profile_new")]
|
||||||
pub fn builder<'a>(format: &'a gst::Caps) -> EncodingVideoProfileBuilder<'a> {
|
pub fn builder(format: &gst::Caps) -> EncodingVideoProfileBuilder {
|
||||||
EncodingVideoProfileBuilder::new(format)
|
EncodingVideoProfileBuilder::new(format)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -246,7 +246,7 @@ impl EncodingContainerProfile {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[doc(alias = "gst_encoding_container_profile_new")]
|
#[doc(alias = "gst_encoding_container_profile_new")]
|
||||||
pub fn builder<'a>(format: &'a gst::Caps) -> EncodingContainerProfileBuilder<'a> {
|
pub fn builder(format: &gst::Caps) -> EncodingContainerProfileBuilder {
|
||||||
EncodingContainerProfileBuilder::new(format)
|
EncodingContainerProfileBuilder::new(format)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue