2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gsttee.h: Header for GstTee element
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_TEE_H__
|
|
|
|
#define __GST_TEE_H__
|
|
|
|
|
2001-01-18 23:46:15 +00:00
|
|
|
#include <gst/gst.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-10-30 09:17:34 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#define GST_TYPE_TEE \
|
|
|
|
(gst_tee_get_type())
|
|
|
|
#define GST_TEE(obj) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TEE,GstTee))
|
2000-01-30 09:03:00 +00:00
|
|
|
#define GST_TEE_CLASS(klass) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TEE,GstTeeClass))
|
2000-01-30 09:03:00 +00:00
|
|
|
#define GST_IS_TEE(obj) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TEE))
|
2006-06-01 18:22:14 +00:00
|
|
|
#define GST_IS_TEE_CLASS(klass) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TEE))
|
2009-11-18 08:01:35 +00:00
|
|
|
#define GST_TEE_CAST(obj) ((GstTee*) obj)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef struct _GstTee GstTee;
|
|
|
|
typedef struct _GstTeeClass GstTeeClass;
|
|
|
|
|
2007-02-09 13:45:27 +00:00
|
|
|
/**
|
|
|
|
* GstTeePullMode:
|
|
|
|
* @GST_TEE_PULL_MODE_NEVER: Never activate in pull mode.
|
|
|
|
* @GST_TEE_PULL_MODE_SINGLE: Only one src pad can be active in pull mode.
|
|
|
|
*
|
|
|
|
* The different ways that tee can behave in pull mode. @TEE_PULL_MODE_NEVER
|
|
|
|
* disables pull mode.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GST_TEE_PULL_MODE_NEVER,
|
|
|
|
GST_TEE_PULL_MODE_SINGLE,
|
|
|
|
} GstTeePullMode;
|
|
|
|
|
2006-01-04 12:41:35 +00:00
|
|
|
/**
|
|
|
|
* GstTee:
|
|
|
|
*
|
|
|
|
* Opaque #GstTee data structure.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstTee {
|
2006-10-11 16:30:14 +00:00
|
|
|
GstElement element;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2006-01-04 12:41:35 +00:00
|
|
|
/*< private >*/
|
2006-10-11 16:30:14 +00:00
|
|
|
GstPad *sinkpad;
|
|
|
|
GstPad *allocpad;
|
2014-01-14 15:45:53 +00:00
|
|
|
|
|
|
|
GHashTable *pad_indexes;
|
|
|
|
guint next_pad_index;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2006-10-11 16:30:14 +00:00
|
|
|
gboolean has_chain;
|
|
|
|
gboolean silent;
|
|
|
|
gchar *last_message;
|
2005-10-15 15:30:24 +00:00
|
|
|
|
2011-11-18 11:35:46 +00:00
|
|
|
GstPadMode sink_mode;
|
2007-02-09 13:45:27 +00:00
|
|
|
GstTeePullMode pull_mode;
|
|
|
|
GstPad *pull_pad;
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstTeeClass {
|
2000-12-29 02:28:04 +00:00
|
|
|
GstElementClass parent_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2012-07-14 19:00:30 +00:00
|
|
|
G_GNUC_INTERNAL GType gst_tee_get_type (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-10-30 09:17:34 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif /* __GST_TEE_H__ */
|