gstflowcombiner.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* GStreamer
  2. *
  3. * Copyright (C) 2014 Samsung Electronics. All rights reserved.
  4. * Author: Thiago Santos <ts.santos@sisa.samsung.com>
  5. *
  6. * gstflowcombiner.h: utility to combine multiple flow returns into a single one
  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_FLOW_COMBINER_H__
  24. #define __GST_FLOW_COMBINER_H__
  25. #include <glib.h>
  26. #include <gst/gst.h>
  27. G_BEGIN_DECLS
  28. #define GST_TYPE_FLOW_COMBINER gst_flow_combiner_get_type()
  29. /**
  30. * GstFlowCombiner:
  31. *
  32. * Opaque helper structure to aggregate flow returns.
  33. *
  34. * Since: 1.4
  35. */
  36. typedef struct _GstFlowCombiner GstFlowCombiner;
  37. GstFlowCombiner * gst_flow_combiner_new (void);
  38. void gst_flow_combiner_free (GstFlowCombiner * combiner);
  39. GstFlowReturn gst_flow_combiner_update_flow (GstFlowCombiner * combiner, GstFlowReturn fret);
  40. GstFlowReturn gst_flow_combiner_update_pad_flow (GstFlowCombiner * combiner, GstPad * pad,
  41. GstFlowReturn fret);
  42. void gst_flow_combiner_add_pad (GstFlowCombiner * combiner, GstPad * pad);
  43. void gst_flow_combiner_remove_pad (GstFlowCombiner * combiner, GstPad * pad);
  44. void gst_flow_combiner_clear (GstFlowCombiner * combiner);
  45. void gst_flow_combiner_reset (GstFlowCombiner * combiner);
  46. GType gst_flow_combiner_get_type (void);
  47. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  48. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstFlowCombiner, gst_flow_combiner_free)
  49. #endif
  50. G_END_DECLS
  51. #endif /* __GST_FLOW_COMBINER_H__ */