summaryrefslogtreecommitdiff
path: root/gst/proxy/gstproxysrc.h
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-12-19 01:16:35 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-12-19 01:16:35 +0530
commit11af685d64571ea696723f959b467656c974c945 (patch)
treef519ec6c877c3eaa25ade4c2b83dae8dc9d66e8a /gst/proxy/gstproxysrc.h
parenta07248aec482f81d1f143a1edad974f75e9f78c6 (diff)
downloadgstreamer-plugins-bad-11af685d64571ea696723f959b467656c974c945.tar.gz
Revert "New element 'proxy' to send data to in-process pipelines"
This reverts commit 8a056af05e23ad5b81cd1dc2699ae20abcf9b91a. Accidentally pushed this element, oops! Progress on this element is being tracked at: https://bugzilla.gnome.org/show_bug.cgi?id=788200
Diffstat (limited to 'gst/proxy/gstproxysrc.h')
-rw-r--r--gst/proxy/gstproxysrc.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/gst/proxy/gstproxysrc.h b/gst/proxy/gstproxysrc.h
deleted file mode 100644
index 2983fc85a..000000000
--- a/gst/proxy/gstproxysrc.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (C) 2015 Centricular Ltd.
- * Author: Sebastian Dröge <sebastian@centricular.com>
- * Author: Nirbheek Chauhan <nirbheek@centricular.com>
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice, this
- * list of conditions and the following disclaimer in the documentation and/or other
- * materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
- * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
- * OF SUCH DAMAGE.
- */
-
-#ifndef __GST_PROXY_SRC_H__
-#define __GST_PROXY_SRC_H__
-
-#include <gst/gst.h>
-
-G_BEGIN_DECLS
-
-#define GST_TYPE_PROXY_SRC (gst_proxy_src_get_type())
-#define GST_PROXY_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_PROXY_SRC, GstProxySrc))
-#define GST_IS_PROXY_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_PROXY_SRC))
-#define GST_PROXY_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass) , GST_TYPE_PROXY_SRC, GstProxySrcClass))
-#define GST_IS_PROXY_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass) , GST_TYPE_PROXY_SRC))
-#define GST_PROXY_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj) , GST_TYPE_PROXY_SRC, GstProxySrcClass))
-
-typedef struct _GstProxySrc GstProxySrc;
-typedef struct _GstProxySrcClass GstProxySrcClass;
-typedef struct _GstProxySrcPrivate GstProxySrcPrivate;
-
-struct _GstProxySrc {
- GstBin parent;
-
- /* < private > */
- GstProxySrcPrivate *priv;
- gpointer _gst_reserved[GST_PADDING];
-};
-
-struct _GstProxySrcClass {
- GstBinClass parent_class;
-};
-
-GType gst_proxy_src_get_type(void);
-
-G_END_DECLS
-
-#endif /* __GST_PROXY_SRC_H__ */