mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
7 lines
217 B
Text
7 lines
217 B
Text
[DllImport("libgstbase-0.10.dll")]
|
|
static extern void gst_adapter_push(IntPtr raw, IntPtr buf);
|
|
|
|
public void Push(Gst.Buffer buf) {
|
|
gst_adapter_push(Handle, buf == null ? IntPtr.Zero : buf.OwnedHandle);
|
|
}
|
|
|