WIP: FIX?
Some checks failed
PostmarketOS Build / Build for aarch64 (push) Successful in 2m0s
PostmarketOS Build / Build for x86_64 (push) Failing after 12m54s

Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
This commit is contained in:
Vasiliy Doylov 2025-06-11 19:01:56 +03:00
parent eb800d55f4
commit be1177bd5f
Signed by: NekoCWD
GPG key ID: B7BE22D44474A582
3 changed files with 4 additions and 20 deletions

View file

@ -159,19 +159,17 @@ public class EyeNeko.Gstreamer : Object {
camerasrc_wrapper.set_property ("video-source-filter",
pipe_elements ("Camera Processing",
Gst.ElementFactory.make ("videoconvert"),
Gst.ElementFactory.make ("glupload"),
color_correction_matrix,
downscale
downscale,
Gst.ElementFactory.make ("gldownload")
));
camerabin.set_property ("image-filter", Gst.ElementFactory.make ("queue"));
camerabin.set_property ("image-filter",
pipe_elements ("Image Processing",
Gst.ElementFactory.make ("gldownload")
));
camerabin.set_property ("video-filter",
pipe_elements ("Video Processing",
Gst.ElementFactory.make ("gldownload"),
Gst.ElementFactory.make ("queue"),
Gst.ElementFactory.make ("videoconvert"),
Gst.parse_launch (Env.get_variable_or

View file

@ -4,7 +4,6 @@ eyeneko_sources = [
'application.vala',
'window.vala',
'gst.vala',
'pipetap_proxy.vala',
'logic/helpers.vala',
'elements/bin_base.vala',
'elements/camerasrc.vala',

View file

@ -1,13 +0,0 @@
[DBus (name = "io.gitlab.nekocwd.pipetap1")]
public interface PipeTap : Object {
public abstract int focus { get; set; }
private static PipeTap _instance = null;
public static PipeTap instance {
get {
if (_instance == null)
_instance = Bus.get_proxy_sync<PipeTap> (BusType.SESSION, "io.gitlab.nekocwd.pipetap", "/io/gitlab/nekocwd/pipetap", DBusProxyFlags.NONE);
return _instance;
}
}
}