gst1-java-core
gst1-java-core copied to clipboard
Java bindings for GStreamer 1.x
gst_element_get_request_pad() is being replaced by gst_element_request_simple() since 1.19.1, throwing a warning in case of use until its definitive replacement on 1.20.
Hi all, I encountered SIGSEGV error in Gst.extractError function, here is full error report file: [hs_err_pid32632.log](https://github.com/gstreamer-java/gst1-java-core/files/13801575/hs_err_pid32632.log) When a JNA function is invoked with a `Structure.ByReference` parameter, JNA automatically reads the...
## Problem JNA reads structure content for structures passed by reference. In this particular case since g_error_free function releases memory used by structure passed to it, this results in "read...
Fixes gstreamer-java/gst1-java-core#270
Looks like the promise which is used inside the method sometimes gets garbage collected before callback is called. reproducible with: ``` webRtcBin.createAnswer(answer -> { System.out.println("ANSWER"); }); System.gc(); ```
Hi, I'm trying to get the ice-agent of on webRTCBin. This property is quite new (I don't know the exact gst version) and most probably isn't known within the java...
Hi all, I've ran into an issue on a production system after upgrading to version 1.4.0 from 1.3.0. I haven't been able to exactly pinpoint the cause, because there seems...
Is there a reason why the library does not implement gst_app_sink_try_pull_sample and gst_app_sink_try_pull_preroll? I am having some issues with a camera that gives a SOF timeout and my Java code...
There isn't get method for uint (although the corresponds method in GSTSTRUCTURE_API exists) https://github.com/gstreamer-java/gst1-java-core/blob/d097354bfd442946e842f40da5b68dabed670382/src/org/freedesktop/gstreamer/lowlevel/GstStructureAPI.java#L65 When we try to use integer method it fails too
I want to construct a new `org.freedesktop.gstreamer.Buffer` object with data from a piece of native memory. For example, with the direct API, I could do something like this: ``` GstBuffer...