gstappsink.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* GStreamer
  2. * Copyright (C) 2007 David Schleef <ds@schleef.org>
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef _GST_APP_SINK_H_
  20. #define _GST_APP_SINK_H_
  21. #include <gst/gst.h>
  22. #include <gst/base/gstbasesink.h>
  23. G_BEGIN_DECLS
  24. #define GST_TYPE_APP_SINK \
  25. (gst_app_sink_get_type())
  26. #define GST_APP_SINK(obj) \
  27. (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_APP_SINK,GstAppSink))
  28. #define GST_APP_SINK_CLASS(klass) \
  29. (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_APP_SINK,GstAppSinkClass))
  30. #define GST_IS_APP_SINK(obj) \
  31. (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_APP_SINK))
  32. #define GST_IS_APP_SINK_CLASS(klass) \
  33. (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_APP_SINK))
  34. #define GST_APP_SINK_CAST(obj) \
  35. ((GstAppSink*)(obj))
  36. typedef struct _GstAppSink GstAppSink;
  37. typedef struct _GstAppSinkClass GstAppSinkClass;
  38. typedef struct _GstAppSinkPrivate GstAppSinkPrivate;
  39. /* FIXME 2.0: Make the instance/class struct private */
  40. /**
  41. * GstAppSinkCallbacks: (skip)
  42. * @eos: Called when the end-of-stream has been reached. This callback
  43. * is called from the streaming thread.
  44. * @new_preroll: Called when a new preroll sample is available.
  45. * This callback is called from the streaming thread.
  46. * The new preroll sample can be retrieved with
  47. * gst_app_sink_pull_preroll() either from this callback
  48. * or from any other thread.
  49. * @new_sample: Called when a new sample is available.
  50. * This callback is called from the streaming thread.
  51. * The new sample can be retrieved with
  52. * gst_app_sink_pull_sample() either from this callback
  53. * or from any other thread.
  54. *
  55. * A set of callbacks that can be installed on the appsink with
  56. * gst_app_sink_set_callbacks().
  57. */
  58. typedef struct {
  59. void (*eos) (GstAppSink *appsink, gpointer user_data);
  60. GstFlowReturn (*new_preroll) (GstAppSink *appsink, gpointer user_data);
  61. GstFlowReturn (*new_sample) (GstAppSink *appsink, gpointer user_data);
  62. /*< private >*/
  63. gpointer _gst_reserved[GST_PADDING];
  64. } GstAppSinkCallbacks;
  65. struct _GstAppSink
  66. {
  67. GstBaseSink basesink;
  68. /*< private >*/
  69. GstAppSinkPrivate *priv;
  70. /*< private >*/
  71. gpointer _gst_reserved[GST_PADDING];
  72. };
  73. struct _GstAppSinkClass
  74. {
  75. GstBaseSinkClass basesink_class;
  76. /* signals */
  77. void (*eos) (GstAppSink *appsink);
  78. GstFlowReturn (*new_preroll) (GstAppSink *appsink);
  79. GstFlowReturn (*new_sample) (GstAppSink *appsink);
  80. /* actions */
  81. GstSample * (*pull_preroll) (GstAppSink *appsink);
  82. GstSample * (*pull_sample) (GstAppSink *appsink);
  83. /*< private >*/
  84. gpointer _gst_reserved[GST_PADDING];
  85. };
  86. GType gst_app_sink_get_type(void);
  87. void gst_app_sink_set_caps (GstAppSink *appsink, const GstCaps *caps);
  88. GstCaps * gst_app_sink_get_caps (GstAppSink *appsink);
  89. gboolean gst_app_sink_is_eos (GstAppSink *appsink);
  90. void gst_app_sink_set_emit_signals (GstAppSink *appsink, gboolean emit);
  91. gboolean gst_app_sink_get_emit_signals (GstAppSink *appsink);
  92. void gst_app_sink_set_max_buffers (GstAppSink *appsink, guint max);
  93. guint gst_app_sink_get_max_buffers (GstAppSink *appsink);
  94. void gst_app_sink_set_drop (GstAppSink *appsink, gboolean drop);
  95. gboolean gst_app_sink_get_drop (GstAppSink *appsink);
  96. void gst_app_sink_set_wait_on_eos (GstAppSink *appsink, gboolean wait);
  97. gboolean gst_app_sink_get_wait_on_eos (GstAppSink *appsink);
  98. GstSample * gst_app_sink_pull_preroll (GstAppSink *appsink);
  99. GstSample * gst_app_sink_pull_sample (GstAppSink *appsink);
  100. void gst_app_sink_set_callbacks (GstAppSink * appsink,
  101. GstAppSinkCallbacks *callbacks,
  102. gpointer user_data,
  103. GDestroyNotify notify);
  104. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  105. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstAppSink, gst_object_unref)
  106. #endif
  107. G_END_DECLS
  108. #endif