gsttimedvaluecontrolsource.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* GStreamer
  2. *
  3. * Copyright (C) 2007 Sebastian Dröge <slomo@circular-chaos.org>
  4. * 2011 Stefan Sauer <ensonic@users.sf.net>
  5. *
  6. * gsttimedvaluecontrolsource.h: Base class for timeed value based control
  7. * sources
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Library General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2 of the License, or (at your option) any later version.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Library General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Library General Public
  20. * License along with this library; if not, write to the
  21. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  22. * Boston, MA 02110-1301, USA.
  23. */
  24. #ifndef __GST_TIMED_VALUE_CONTROL_SOURCE_H__
  25. #define __GST_TIMED_VALUE_CONTROL_SOURCE_H__
  26. #include <glib-object.h>
  27. #include <gst/gst.h>
  28. #include <gst/gstcontrolsource.h>
  29. G_BEGIN_DECLS
  30. #define GST_TYPE_TIMED_VALUE_CONTROL_SOURCE \
  31. (gst_timed_value_control_source_get_type ())
  32. #define GST_TIMED_VALUE_CONTROL_SOURCE(obj) \
  33. (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_TIMED_VALUE_CONTROL_SOURCE, GstTimedValueControlSource))
  34. #define GST_TIMED_VALUE_CONTROL_SOURCE_CLASS(vtable) \
  35. (G_TYPE_CHECK_CLASS_CAST ((vtable), GST_TYPE_TIMED_VALUE_CONTROL_SOURCE, GstTimedValueControlSourceClass))
  36. #define GST_IS_TIMED_VALUE_CONTROL_SOURCE(obj) \
  37. (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_TIMED_VALUE_CONTROL_SOURCE))
  38. #define GST_IS_TIMED_VALUE_CONTROL_SOURCE_CLASS(vtable) \
  39. (G_TYPE_CHECK_CLASS_TYPE ((vtable), GST_TYPE_TIMED_VALUE_CONTROL_SOURCE))
  40. #define GST_TIMED_VALUE_CONTROL_SOURCE_GET_CLASS(inst) \
  41. (G_TYPE_INSTANCE_GET_CLASS ((inst), GST_TYPE_TIMED_VALUE_CONTROL_SOURCE, GstTimedValueControlSourceClass))
  42. typedef struct _GstTimedValueControlSource GstTimedValueControlSource;
  43. typedef struct _GstTimedValueControlSourceClass GstTimedValueControlSourceClass;
  44. typedef struct _GstTimedValueControlSourcePrivate GstTimedValueControlSourcePrivate;
  45. typedef struct _GstControlPoint GstControlPoint;
  46. /**
  47. * GstControlPoint:
  48. * @timestamp: timestamp of the value change
  49. * @value: the new value
  50. *
  51. * An internal structure for value+time and various temporary
  52. * values used for interpolation. This "inherits" from
  53. * GstTimedValue.
  54. */
  55. struct _GstControlPoint
  56. {
  57. /* fields from GstTimedValue. DO NOT CHANGE! */
  58. GstClockTime timestamp;
  59. gdouble value;
  60. /*< private >*/
  61. /* Caches for the interpolators */
  62. /* FIXME: we should not have this here already ... */
  63. union {
  64. struct { /* 16 bytes */
  65. gdouble h;
  66. gdouble z;
  67. } cubic;
  68. struct { /* 24 bytes */
  69. gdouble c1s, c2s, c3s;
  70. } cubic_monotonic;
  71. guint8 _gst_reserved[64];
  72. } cache;
  73. };
  74. GType gst_control_point_get_type (void);
  75. /**
  76. * GstTimedValueControlSource:
  77. *
  78. * The instance structure of #GstControlSource.
  79. */
  80. struct _GstTimedValueControlSource {
  81. GstControlSource parent;
  82. /*< protected >*/
  83. GMutex lock;
  84. GSequence *values; /* List of GstControlPoint */
  85. gint nvalues; /* Number of control points */
  86. gboolean valid_cache;
  87. /*< private >*/
  88. GstTimedValueControlSourcePrivate *priv;
  89. gpointer _gst_reserved[GST_PADDING];
  90. };
  91. struct _GstTimedValueControlSourceClass {
  92. GstControlSourceClass parent_class;
  93. /*< private >*/
  94. gpointer _gst_reserved[GST_PADDING];
  95. };
  96. #define GST_TIMED_VALUE_CONTROL_SOURCE_LOCK(o) \
  97. g_mutex_lock(&((GstTimedValueControlSource *)o)->lock)
  98. #define GST_TIMED_VALUE_CONTROL_SOURCE_UNLOCK(o) \
  99. g_mutex_unlock(&((GstTimedValueControlSource *)o)->lock)
  100. GType gst_timed_value_control_source_get_type (void);
  101. /* Functions */
  102. GSequenceIter * gst_timed_value_control_source_find_control_point_iter (
  103. GstTimedValueControlSource * self,
  104. GstClockTime timestamp);
  105. gboolean gst_timed_value_control_source_set (GstTimedValueControlSource * self,
  106. GstClockTime timestamp,
  107. const gdouble value);
  108. gboolean gst_timed_value_control_source_set_from_list (GstTimedValueControlSource * self,
  109. const GSList * timedvalues);
  110. gboolean gst_timed_value_control_source_unset (GstTimedValueControlSource * self,
  111. GstClockTime timestamp);
  112. void gst_timed_value_control_source_unset_all (GstTimedValueControlSource *self);
  113. GList * gst_timed_value_control_source_get_all (GstTimedValueControlSource * self);
  114. gint gst_timed_value_control_source_get_count (GstTimedValueControlSource * self);
  115. void gst_timed_value_control_invalidate_cache (GstTimedValueControlSource * self);
  116. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  117. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstTimedValueControlSource, gst_object_unref)
  118. #endif
  119. G_END_DECLS
  120. #endif /* __GST_TIMED_VALUE_CONTROL_SOURCE_H__ */