mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-16 12:55:13 +00:00
fmp4: Fix compilation after glib::List
API changes
This commit is contained in:
parent
f59d00b8e6
commit
af9d9c0a5c
1 changed files with 1 additions and 1 deletions
|
@ -1968,7 +1968,7 @@ impl ObjectImpl for FMP4Mux {
|
|||
|
||||
let obj = self.obj();
|
||||
let class = obj.class();
|
||||
for templ in class.pad_template_list().filter(|templ| {
|
||||
for templ in class.pad_template_list().into_iter().filter(|templ| {
|
||||
templ.presence() == gst::PadPresence::Always
|
||||
&& templ.direction() == gst::PadDirection::Sink
|
||||
}) {
|
||||
|
|
Loading…
Reference in a new issue