d3d11: Update build-time dependency
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-bad / gst-libs / gst / d3d11 / gstd3d11_fwd.h
1 /* GStreamer
2  * Copyright (C) 2019 Seungha Yang <seungha.yang@navercorp.com>
3  * Copyright (C) 2020 Seungha Yang <seungha@centricular.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef __GST_D3D11_FWD_H__
22 #define __GST_D3D11_FWD_H__
23
24 #include <gst/gst.h>
25 #include <gst/d3d11/gstd3d11config.h>
26 #include <gst/d3d11/d3d11-prelude.h>
27
28 #ifndef INITGUID
29 #include <initguid.h>
30 #endif
31
32 #include <d3d11.h>
33 #include <dxgi.h>
34
35 G_BEGIN_DECLS
36
37 typedef struct _GstD3D11Device GstD3D11Device;
38 typedef struct _GstD3D11DeviceClass GstD3D11DeviceClass;
39 typedef struct _GstD3D11DevicePrivate GstD3D11DevicePrivate;
40
41 typedef struct _GstD3D11AllocationParams GstD3D11AllocationParams;
42 typedef struct _GstD3D11Memory GstD3D11Memory;
43 typedef struct _GstD3D11MemoryPrivate GstD3D11MemoryPrivate;
44
45 typedef struct _GstD3D11Allocator GstD3D11Allocator;
46 typedef struct _GstD3D11AllocatorClass GstD3D11AllocatorClass;
47 typedef struct _GstD3D11AllocatorPrivate GstD3D11AllocatorPrivate;
48
49 typedef struct _GstD3D11PoolAllocator GstD3D11PoolAllocator;
50 typedef struct _GstD3D11PoolAllocatorClass GstD3D11PoolAllocatorClass;
51 typedef struct _GstD3D11PoolAllocatorPrivate GstD3D11PoolAllocatorPrivate;
52
53 typedef struct _GstD3D11BufferPool GstD3D11BufferPool;
54 typedef struct _GstD3D11BufferPoolClass GstD3D11BufferPoolClass;
55 typedef struct _GstD3D11BufferPoolPrivate GstD3D11BufferPoolPrivate;
56
57 typedef struct _GstD3D11StagingBufferPool GstD3D11StagingBufferPool;
58 typedef struct _GstD3D11StagingBufferPoolClass GstD3D11StagingBufferPoolClass;
59 typedef struct _GstD3D11StagingBufferPoolPrivate GstD3D11StagingBufferPoolPrivate;
60
61 typedef struct _GstD3D11Format GstD3D11Format;
62
63 G_END_DECLS
64
65 #endif /* __GST_D3D11_FWD_H__ */