gstpushsrc.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* GStreamer
  2. * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
  3. * 2000 Wim Taymans <wtay@chello.be>
  4. * 2005 Wim Taymans <wim@fluendo.com>
  5. *
  6. * gstpushsrc.h:
  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_PUSH_SRC_H__
  24. #define __GST_PUSH_SRC_H__
  25. #include <gst/gst.h>
  26. #include <gst/base/gstbasesrc.h>
  27. G_BEGIN_DECLS
  28. #define GST_TYPE_PUSH_SRC (gst_push_src_get_type())
  29. #define GST_PUSH_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PUSH_SRC,GstPushSrc))
  30. #define GST_PUSH_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PUSH_SRC,GstPushSrcClass))
  31. #define GST_PUSH_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_PUSH_SRC, GstPushSrcClass))
  32. #define GST_IS_PUSH_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PUSH_SRC))
  33. #define GST_IS_PUSH_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PUSH_SRC))
  34. typedef struct _GstPushSrc GstPushSrc;
  35. typedef struct _GstPushSrcClass GstPushSrcClass;
  36. /**
  37. * GstPushSrc:
  38. *
  39. * The opaque #GstPushSrc data structure.
  40. */
  41. struct _GstPushSrc {
  42. GstBaseSrc parent;
  43. /*< private >*/
  44. gpointer _gst_reserved[GST_PADDING];
  45. };
  46. /**
  47. * GstPushSrcClass:
  48. * @parent_class: Element parent class
  49. * @create: Ask the subclass to create a buffer. The subclass decides which
  50. * size this buffer should be. Other then that, refer to
  51. * #GstBaseSrc<!-- -->.create() for more details. If this method is
  52. * not implemented, @alloc followed by @fill will be called.
  53. * @alloc: Ask the subclass to allocate a buffer. The subclass decides which
  54. * size this buffer should be. The default implementation will create
  55. * a new buffer from the negotiated allocator.
  56. * @fill: Ask the subclass to fill the buffer with data.
  57. *
  58. * Subclasses can override any of the available virtual methods or not, as
  59. * needed. At the minimum, the @fill method should be overridden to produce
  60. * buffers.
  61. */
  62. struct _GstPushSrcClass {
  63. GstBaseSrcClass parent_class;
  64. /* ask the subclass to create a buffer, the default implementation
  65. * uses alloc and fill */
  66. GstFlowReturn (*create) (GstPushSrc *src, GstBuffer **buf);
  67. /* allocate memory for a buffer */
  68. GstFlowReturn (*alloc) (GstPushSrc *src, GstBuffer **buf);
  69. /* ask the subclass to fill a buffer */
  70. GstFlowReturn (*fill) (GstPushSrc *src, GstBuffer *buf);
  71. /*< private >*/
  72. gpointer _gst_reserved[GST_PADDING];
  73. };
  74. GType gst_push_src_get_type(void);
  75. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  76. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstPushSrc, gst_object_unref)
  77. #endif
  78. G_END_DECLS
  79. #endif /* __GST_PUSH_SRC_H__ */