gstreamer/gstreamer-sharp/Adapter.custom
2009-05-28 14:37:21 +02:00

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