• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
2  * Copyright (C) 2015-2017 YouView TV Ltd
3  *   Author: Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
4  *
5  * gstipcslavepipeline.h:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 #ifndef _GST_IPC_SLAVE_PIPELINE_H_
23 #define _GST_IPC_SLAVE_PIPELINE_H_
24 
25 #include <gst/gst.h>
26 
27 G_BEGIN_DECLS
28 
29 #define GST_TYPE_IPC_SLAVE_PIPELINE \
30     (gst_ipc_slave_pipeline_get_type())
31 #define GST_IPC_SLAVE_PIPELINE(obj) \
32     (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_IPC_SLAVE_PIPELINE,GstIpcSlavePipeline))
33 #define GST_IPC_SLAVE_PIPELINE_CAST(obj) \
34     ((GstIpcSlavePipeline *) obj)
35 #define GST_IPC_SLAVE_PIPELINE_CLASS(klass) \
36     (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_IPC_SLAVE_PIPELINE,GstIpcSlavePipelineClass))
37 #define GST_IS_IPC_SLAVE_PIPELINE(obj) \
38     (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_IPC_SLAVE_PIPELINE))
39 #define GST_IS_IPC_SLAVE_PIPELINE_CLASS(obj) \
40     (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_IPC_SLAVE_PIPELINE))
41 
42 typedef struct _GstIpcSlavePipeline GstIpcSlavePipeline;
43 typedef struct _GstIpcSlavePipelineClass GstIpcSlavePipelineClass;
44 
45 struct _GstIpcSlavePipeline
46 {
47   GstPipeline pipeline;
48 };
49 
50 struct _GstIpcSlavePipelineClass
51 {
52   GstPipelineClass pipeline_class;
53 };
54 
55 G_GNUC_INTERNAL GType gst_ipc_slave_pipeline_get_type (void);
56 
57 G_END_DECLS
58 
59 #endif
60