gstghostpad.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* GStreamer
  2. * Copyright (C) 1999,2000 Erik Walthinsen <[email protected]>
  3. * 2000 Wim Taymans <[email protected]>
  4. * 2005 Andy Wingo <[email protected]>
  5. *
  6. * gstghostpad.h: Proxy pads
  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_GHOST_PAD_H__
  24. #define __GST_GHOST_PAD_H__
  25. #include <gst/gstpad.h>
  26. G_BEGIN_DECLS
  27. #define GST_TYPE_PROXY_PAD (gst_proxy_pad_get_type ())
  28. #define GST_IS_PROXY_PAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PROXY_PAD))
  29. #define GST_IS_PROXY_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PROXY_PAD))
  30. #define GST_PROXY_PAD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PROXY_PAD, GstProxyPad))
  31. #define GST_PROXY_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PROXY_PAD, GstProxyPadClass))
  32. typedef struct _GstProxyPad GstProxyPad;
  33. typedef struct _GstProxyPadPrivate GstProxyPadPrivate;
  34. typedef struct _GstProxyPadClass GstProxyPadClass;
  35. struct _GstProxyPad
  36. {
  37. GstPad pad;
  38. /*< private >*/
  39. GstProxyPadPrivate *priv;
  40. };
  41. struct _GstProxyPadClass
  42. {
  43. GstPadClass parent_class;
  44. /*< private >*/
  45. gpointer _gst_reserved[1];
  46. };
  47. GType gst_proxy_pad_get_type (void);
  48. GstProxyPad* gst_proxy_pad_get_internal (GstProxyPad *pad);
  49. GstIterator* gst_proxy_pad_iterate_internal_links_default (GstPad *pad, GstObject *parent) G_GNUC_MALLOC;
  50. GstFlowReturn gst_proxy_pad_chain_default (GstPad *pad, GstObject *parent,
  51. GstBuffer *buffer);
  52. GstFlowReturn gst_proxy_pad_chain_list_default (GstPad *pad, GstObject *parent,
  53. GstBufferList *list);
  54. GstFlowReturn gst_proxy_pad_getrange_default (GstPad *pad, GstObject *parent,
  55. guint64 offset, guint size,
  56. GstBuffer **buffer);
  57. #define GST_TYPE_GHOST_PAD (gst_ghost_pad_get_type ())
  58. #define GST_IS_GHOST_PAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_GHOST_PAD))
  59. #define GST_IS_GHOST_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_GHOST_PAD))
  60. #define GST_GHOST_PAD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_GHOST_PAD, GstGhostPad))
  61. #define GST_GHOST_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_GHOST_PAD, GstGhostPadClass))
  62. #define GST_GHOST_PAD_CAST(obj) ((GstGhostPad*)(obj))
  63. /**
  64. * GstGhostPad:
  65. *
  66. * Opaque #GstGhostPad structure.
  67. */
  68. typedef struct _GstGhostPad GstGhostPad;
  69. typedef struct _GstGhostPadPrivate GstGhostPadPrivate;
  70. typedef struct _GstGhostPadClass GstGhostPadClass;
  71. struct _GstGhostPad
  72. {
  73. GstProxyPad pad;
  74. /*< private >*/
  75. GstGhostPadPrivate *priv;
  76. };
  77. struct _GstGhostPadClass
  78. {
  79. GstProxyPadClass parent_class;
  80. /*< private >*/
  81. gpointer _gst_reserved[GST_PADDING];
  82. };
  83. GType gst_ghost_pad_get_type (void);
  84. GstPad* gst_ghost_pad_new (const gchar *name, GstPad *target) G_GNUC_MALLOC;
  85. GstPad* gst_ghost_pad_new_no_target (const gchar *name, GstPadDirection dir) G_GNUC_MALLOC;
  86. GstPad* gst_ghost_pad_new_from_template (const gchar *name, GstPad * target, GstPadTemplate * templ) G_GNUC_MALLOC;
  87. GstPad* gst_ghost_pad_new_no_target_from_template (const gchar *name, GstPadTemplate * templ) G_GNUC_MALLOC;
  88. GstPad* gst_ghost_pad_get_target (GstGhostPad *gpad);
  89. gboolean gst_ghost_pad_set_target (GstGhostPad *gpad, GstPad *newtarget);
  90. gboolean gst_ghost_pad_construct (GstGhostPad *gpad);
  91. gboolean gst_ghost_pad_activate_mode_default (GstPad * pad, GstObject * parent,
  92. GstPadMode mode, gboolean active);
  93. gboolean gst_ghost_pad_internal_activate_mode_default (GstPad * pad, GstObject * parent,
  94. GstPadMode mode, gboolean active);
  95. G_END_DECLS
  96. #endif /* __GST_GHOST_PAD_H__ */