Added gst_rtsp_media_remove_elements function to Vala bindings

This commit is contained in:
Sebastian 2009-06-13 14:38:39 +02:00 committed by Wim Taymans
parent 3bd2d36b1b
commit 018563fdcc
2 changed files with 8 additions and 1 deletions

View file

@ -30,7 +30,7 @@ namespace Gst {
public weak Gst.Element fakesink; public weak Gst.Element fakesink;
public uint id; public uint id;
public bool is_live; public bool is_live;
public weak Gst.Element pipeline; public Gst.Element pipeline;
public bool prepared; public bool prepared;
public weak Gst.RTSPTimeRange range; public weak Gst.RTSPTimeRange range;
public bool reused; public bool reused;
@ -48,6 +48,7 @@ namespace Gst {
[CCode (has_construct_function = false)] [CCode (has_construct_function = false)]
public RTSPMedia (); public RTSPMedia ();
public bool prepare (); public bool prepare ();
public void remove_elements ();
public bool seek (Gst.RTSPTimeRange range); public bool seek (Gst.RTSPTimeRange range);
public void set_reusable (bool reusable); public void set_reusable (bool reusable);
public void set_shared (bool shared); public void set_shared (bool shared);

View file

@ -237,6 +237,12 @@
<parameter name="media" type="GstRTSPMedia*"/> <parameter name="media" type="GstRTSPMedia*"/>
</parameters> </parameters>
</method> </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"> <method name="seek" symbol="gst_rtsp_media_seek">
<return-type type="gboolean"/> <return-type type="gboolean"/>
<parameters> <parameters>