mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 13:38:48 +00:00
Add parameter-less constructors for Bin/Pipeline
This commit is contained in:
parent
c123dd008a
commit
82f9687b7c
3 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
public Bin () : this (null) {}
|
||||||
|
|
||||||
[DllImport("libgstreamer-0.10.dll") ]
|
[DllImport("libgstreamer-0.10.dll") ]
|
||||||
static extern bool gst_bin_add (IntPtr raw, IntPtr element);
|
static extern bool gst_bin_add (IntPtr raw, IntPtr element);
|
||||||
|
|
||||||
|
|
|
@ -82,6 +82,7 @@ customs = \
|
||||||
AppSink.custom \
|
AppSink.custom \
|
||||||
AppSrc.custom \
|
AppSrc.custom \
|
||||||
Bin.custom \
|
Bin.custom \
|
||||||
|
Pipeline.custom \
|
||||||
Buffer.custom \
|
Buffer.custom \
|
||||||
Bus.custom \
|
Bus.custom \
|
||||||
Caps.custom \
|
Caps.custom \
|
||||||
|
|
1
gstreamer-sharp/Pipeline.custom
Normal file
1
gstreamer-sharp/Pipeline.custom
Normal file
|
@ -0,0 +1 @@
|
||||||
|
public Pipeline () : this (null) {}
|
Loading…
Reference in a new issue