mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-03 15:58:42 +00:00
net/quinn: Fix pad template naming typo
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1601>
This commit is contained in:
parent
ab2f5e3d8d
commit
8171a00943
1 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ impl ElementImpl for QuinnQuicSrc {
|
|||
|
||||
fn pad_templates() -> &'static [gst::PadTemplate] {
|
||||
static PAD_TEMPLATES: Lazy<Vec<gst::PadTemplate>> = Lazy::new(|| {
|
||||
let sink_pad_template = gst::PadTemplate::new(
|
||||
let src_pad_template = gst::PadTemplate::new(
|
||||
"src",
|
||||
gst::PadDirection::Src,
|
||||
gst::PadPresence::Always,
|
||||
|
@ -125,7 +125,7 @@ impl ElementImpl for QuinnQuicSrc {
|
|||
)
|
||||
.unwrap();
|
||||
|
||||
vec![sink_pad_template]
|
||||
vec![src_pad_template]
|
||||
});
|
||||
|
||||
PAD_TEMPLATES.as_ref()
|
||||
|
|
Loading…
Reference in a new issue