mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 19:05:37 +00:00
Added gst_rtsp_media_remove_elements function to Vala bindings
This commit is contained in:
parent
3bd2d36b1b
commit
018563fdcc
2 changed files with 8 additions and 1 deletions
|
@ -30,7 +30,7 @@ namespace Gst {
|
|||
public weak Gst.Element fakesink;
|
||||
public uint id;
|
||||
public bool is_live;
|
||||
public weak Gst.Element pipeline;
|
||||
public Gst.Element pipeline;
|
||||
public bool prepared;
|
||||
public weak Gst.RTSPTimeRange range;
|
||||
public bool reused;
|
||||
|
@ -48,6 +48,7 @@ namespace Gst {
|
|||
[CCode (has_construct_function = false)]
|
||||
public RTSPMedia ();
|
||||
public bool prepare ();
|
||||
public void remove_elements ();
|
||||
public bool seek (Gst.RTSPTimeRange range);
|
||||
public void set_reusable (bool reusable);
|
||||
public void set_shared (bool shared);
|
||||
|
|
|
@ -237,6 +237,12 @@
|
|||
<parameter name="media" type="GstRTSPMedia*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="remove_elements" symbol="gst_rtsp_media_remove_elements">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="media" type="GstRTSPMedia*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="seek" symbol="gst_rtsp_media_seek">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
|
|
Loading…
Reference in a new issue