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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2022-12-29 01:25:20 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2022-12-29 05:59:26 +0300
commitcf0ba401157caa6846b26aae9f1f021523033b77 (patch)
treec45f983532779544d4f3bd0335fde057d61874d9 /video
parent002e3fa1710bec6f5d7d25c9561f1fa7eaa3b3ca (diff)
video/gtk4: Fix typo in info logs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1030>
Diffstat (limited to 'video')
-rw-r--r--video/gtk4/src/sink/imp.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/video/gtk4/src/sink/imp.rs b/video/gtk4/src/sink/imp.rs
index fb4d5651..3f513483 100644
--- a/video/gtk4/src/sink/imp.rs
+++ b/video/gtk4/src/sink/imp.rs
@@ -735,7 +735,7 @@ impl PaintableSink {
gst::info!(
CAT,
imp: self,
- "Initializing GL with for x11 EGL backend and display."
+ "Initializing GL for x11 EGL backend and display."
);
let platform = gst_gl::GLPlatform::EGL;
@@ -778,7 +778,7 @@ impl PaintableSink {
gst::info!(
CAT,
imp: self,
- "Initializing GL with for x11 GLX backend and display."
+ "Initializing GL for x11 GLX backend and display."
);
let platform = gst_gl::GLPlatform::GLX;
@@ -821,7 +821,7 @@ impl PaintableSink {
gst::info!(
CAT,
imp: self,
- "Initializing GL with for Wayland EGL backend and display."
+ "Initializing GL for Wayland EGL backend and display."
);
let platform = gst_gl::GLPlatform::EGL;
@@ -868,7 +868,7 @@ impl PaintableSink {
gst::info!(
CAT,
imp: self,
- "Initializing GL with for macOS backend and display."
+ "Initializing GL for macOS backend and display."
);
let platform = gst_gl::GLPlatform::CGL;