gstinterpolationcontrolsource.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* GStreamer
  2. *
  3. * Copyright (C) 2007 Sebastian Dröge <[email protected]>
  4. *
  5. * gstinterpolationcontrolsource.h: Control source that provides several
  6. * interpolation methods
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Library General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2 of the License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Library General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public
  19. * License along with this library; if not, write to the
  20. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  21. * Boston, MA 02110-1301, USA.
  22. */
  23. #ifndef __GST_INTERPOLATION_CONTROL_SOURCE_H__
  24. #define __GST_INTERPOLATION_CONTROL_SOURCE_H__
  25. #include <glib-object.h>
  26. #include <gst/gst.h>
  27. #include <gst/controller/gsttimedvaluecontrolsource.h>
  28. G_BEGIN_DECLS
  29. #define GST_TYPE_INTERPOLATION_CONTROL_SOURCE \
  30. (gst_interpolation_control_source_get_type ())
  31. #define GST_INTERPOLATION_CONTROL_SOURCE(obj) \
  32. (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_INTERPOLATION_CONTROL_SOURCE, GstInterpolationControlSource))
  33. #define GST_INTERPOLATION_CONTROL_SOURCE_CLASS(vtable) \
  34. (G_TYPE_CHECK_CLASS_CAST ((vtable), GST_TYPE_INTERPOLATION_CONTROL_SOURCE, GstInterpolationControlSourceClass))
  35. #define GST_IS_INTERPOLATION_CONTROL_SOURCE(obj) \
  36. (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_INTERPOLATION_CONTROL_SOURCE))
  37. #define GST_IS_INTERPOLATION_CONTROL_SOURCE_CLASS(vtable) \
  38. (G_TYPE_CHECK_CLASS_TYPE ((vtable), GST_TYPE_INTERPOLATION_CONTROL_SOURCE))
  39. #define GST_INTERPOLATION_CONTROL_SOURCE_GET_CLASS(inst) \
  40. (G_TYPE_INSTANCE_GET_CLASS ((inst), GST_TYPE_INTERPOLATION_CONTROL_SOURCE, GstInterpolationControlSourceClass))
  41. #define GST_TYPE_INTERPOLATION_MODE (gst_interpolation_mode_get_type ())
  42. typedef struct _GstInterpolationControlSource GstInterpolationControlSource;
  43. typedef struct _GstInterpolationControlSourceClass GstInterpolationControlSourceClass;
  44. typedef struct _GstInterpolationControlSourcePrivate GstInterpolationControlSourcePrivate;
  45. /**
  46. * GstInterpolationMode:
  47. * @GST_INTERPOLATION_MODE_NONE: steps-like interpolation, default
  48. * @GST_INTERPOLATION_MODE_LINEAR: linear interpolation
  49. * @GST_INTERPOLATION_MODE_CUBIC: cubic interpolation
  50. *
  51. * The various interpolation modes available.
  52. */
  53. typedef enum
  54. {
  55. GST_INTERPOLATION_MODE_NONE,
  56. GST_INTERPOLATION_MODE_LINEAR,
  57. GST_INTERPOLATION_MODE_CUBIC
  58. } GstInterpolationMode;
  59. /**
  60. * GstInterpolationControlSource:
  61. *
  62. * The instance structure of #GstControlSource.
  63. */
  64. struct _GstInterpolationControlSource {
  65. GstTimedValueControlSource parent;
  66. /*< private >*/
  67. GstInterpolationControlSourcePrivate *priv;
  68. gpointer _gst_reserved[GST_PADDING];
  69. };
  70. struct _GstInterpolationControlSourceClass {
  71. GstTimedValueControlSourceClass parent_class;
  72. /*< private >*/
  73. gpointer _gst_reserved[GST_PADDING];
  74. };
  75. GType gst_interpolation_control_source_get_type (void);
  76. GType gst_interpolation_mode_get_type (void);
  77. /* Functions */
  78. GstControlSource * gst_interpolation_control_source_new (void);
  79. G_END_DECLS
  80. #endif /* __GST_INTERPOLATION_CONTROL_SOURCE_H__ */