mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +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") ]
|
||||
static extern bool gst_bin_add (IntPtr raw, IntPtr element);
|
||||
|
||||
|
|
|
@ -82,6 +82,7 @@ customs = \
|
|||
AppSink.custom \
|
||||
AppSrc.custom \
|
||||
Bin.custom \
|
||||
Pipeline.custom \
|
||||
Buffer.custom \
|
||||
Bus.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