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/video/png
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-01-04 14:39:14 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-04 14:39:14 +0300
commitde23ea7f2935fd537ce38455ce0907e4fabcfa62 (patch)
treee916a5f73cc7dbca0650fc1c465183b365a424c0 /video/png
parent0fd63ece7d25cad588ce8959fdf0d1cd1e9c9560 (diff)
video: Fix compilation after API changes
Diffstat (limited to 'video/png')
-rw-r--r--video/png/src/pngenc/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/png/src/pngenc/imp.rs b/video/png/src/pngenc/imp.rs
index efff675ea..8d7b3259c 100644
--- a/video/png/src/pngenc/imp.rs
+++ b/video/png/src/pngenc/imp.rs
@@ -259,6 +259,6 @@ impl VideoEncoderImpl for PngEncoder {
// There are no such incremental frames in the png format
frame.set_flags(gst_video::VideoCodecFrameFlags::SYNC_POINT);
frame.set_output_buffer(output_buffer);
- self.obj().finish_frame(Some(frame))
+ self.obj().finish_frame(frame)
}
}