• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
2  * Copyright (C) <2019> Seungha Yang <seungha.yang@navercorp.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 #ifndef __GST_D3D11_COLOR_CONVERT_H__
21 #define __GST_D3D11_COLOR_CONVERT_H__
22 
23 #include <gst/gst.h>
24 
25 #include "gstd3d11basefilter.h"
26 
27 G_BEGIN_DECLS
28 
29 #define GST_TYPE_D3D11_BASE_CONVERT             (gst_d3d11_base_convert_get_type())
30 #define GST_D3D11_BASE_CONVERT(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_D3D11_BASE_CONVERT,GstD3D11BaseConvert))
31 #define GST_D3D11_BASE_CONVERT_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_D3D11_BASE_CONVERT,GstD3D11BaseConvertClass))
32 #define GST_D3D11_BASE_CONVERT_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj), GST_TYPE_D3D11_BASE_CONVERT,GstD3D11BaseConvertClass))
33 #define GST_IS_D3D11_BASE_CONVERT(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_D3D11_BASE_CONVERT))
34 #define GST_IS_D3D11_BASE_CONVERT_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_D3D11_BASE_CONVERT))
35 
36 typedef struct _GstD3D11BaseConvert GstD3D11BaseConvert;
37 typedef struct _GstD3D11BaseConvertClass GstD3D11BaseConvertClass;
38 
39 struct _GstD3D11BaseConvertClass
40 {
41   GstD3D11BaseFilterClass parent_class;
42 };
43 
44 GType gst_d3d11_base_convert_get_type (void);
45 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstD3D11BaseConvert, gst_object_unref)
46 
47 #define GST_TYPE_D3D11_CONVERT (gst_d3d11_convert_get_type())
48 G_DECLARE_FINAL_TYPE (GstD3D11Convert, gst_d3d11_convert,
49     GST, D3D11_CONVERT, GstD3D11BaseConvert)
50 
51 #define GST_TYPE_D3D11_COLOR_CONVERT (gst_d3d11_color_convert_get_type())
52 G_DECLARE_FINAL_TYPE (GstD3D11ColorConvert, gst_d3d11_color_convert,
53     GST, D3D11_COLOR_CONVERT, GstD3D11BaseConvert)
54 
55 #define GST_TYPE_D3D11_SCALE (gst_d3d11_scale_get_type())
56 G_DECLARE_FINAL_TYPE (GstD3D11Scale, gst_d3d11_scale,
57     GST, D3D11_SCALE, GstD3D11BaseConvert)
58 
59 G_END_DECLS
60 
61 #endif /* __GST_D3D11_COLOR_CONVERT_H__ */
62