Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mux
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-01-02 20:22:51 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-02 20:22:51 +0300
commitaf9d9c0a5cd749181197c33f4eb0d207986b4df7 (patch)
treeba40fffdb36b79807568c60485b5405ece9845f8 /mux
parentf59d00b8e6824f8b4a4565f82ce196b03dd8dbf1 (diff)
fmp4: Fix compilation after `glib::List` API changes
Diffstat (limited to 'mux')
-rw-r--r--mux/fmp4/src/fmp4mux/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mux/fmp4/src/fmp4mux/imp.rs b/mux/fmp4/src/fmp4mux/imp.rs
index 0b9262f76..02453ae14 100644
--- a/mux/fmp4/src/fmp4mux/imp.rs
+++ b/mux/fmp4/src/fmp4mux/imp.rs
@@ -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
}) {