X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstpipeline.h;h=ac0befbed5756dc0c839f9f4b797a2dce0997af0;hb=706e10ad0586bf98c829cdfaa079118447b94ef5;hp=192ec2dfd6bd54d989d60b0bd157aea88f800d78;hpb=59d9992ed02f0e9f650481e940e8aba8d96409f1;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstpipeline.h b/gst/gstpipeline.h index 192ec2d..ac0befb 100644 --- a/gst/gstpipeline.h +++ b/gst/gstpipeline.h @@ -88,23 +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__ */