X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstpipeline.h;h=ac0befbed5756dc0c839f9f4b797a2dce0997af0;hb=e6bd5b41935f125bf43e030dcb909c3537d33b31;hp=43563cb85237bd8a782e8ae7fb2f03aab1787750;hpb=91e13d4970a8860325bab361c7144bfa7c649c71;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstpipeline.h b/gst/gstpipeline.h index 43563cb..ac0befb 100644 --- a/gst/gstpipeline.h +++ b/gst/gstpipeline.h @@ -16,8 +16,8 @@ * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. */ @@ -88,22 +88,52 @@ struct _GstPipelineClass { gpointer _gst_reserved[GST_PADDING]; }; +GST_API GType gst_pipeline_get_type (void); + +GST_API GstElement* gst_pipeline_new (const gchar *name) G_GNUC_MALLOC; +GST_API GstBus* gst_pipeline_get_bus (GstPipeline *pipeline); +GST_API void gst_pipeline_use_clock (GstPipeline *pipeline, GstClock *clock); + +GST_API gboolean gst_pipeline_set_clock (GstPipeline *pipeline, GstClock *clock); + +GST_API GstClock* gst_pipeline_get_clock (GstPipeline *pipeline); + +GST_API +GstClock* gst_pipeline_get_pipeline_clock (GstPipeline *pipeline); + +GST_API void gst_pipeline_auto_clock (GstPipeline *pipeline); +GST_API void gst_pipeline_set_delay (GstPipeline *pipeline, GstClockTime delay); + +GST_API GstClockTime gst_pipeline_get_delay (GstPipeline *pipeline); +GST_API +void gst_pipeline_set_latency (GstPipeline *pipeline, GstClockTime latency); + +GST_API +GstClockTime gst_pipeline_get_latency (GstPipeline *pipeline); + +GST_API void gst_pipeline_set_auto_flush_bus (GstPipeline *pipeline, gboolean auto_flush); + +GST_API gboolean gst_pipeline_get_auto_flush_bus (GstPipeline *pipeline); +#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstPipeline, gst_object_unref) +#endif + G_END_DECLS #endif /* __GST_PIPELINE_H__ */