WIP: FIX?
Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
This commit is contained in:
parent
eb800d55f4
commit
be1177bd5f
3 changed files with 4 additions and 20 deletions
10
src/gst.vala
10
src/gst.vala
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue