gstreamer/gstreamer-sharp/Adapter.custom

8 lines
217 B
Text
Raw Normal View History

[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);
}