1 /* 2 * GStreamer 3 * Copyright (C) 2019 Seungha Yang <seungha.yang@navercorp.com> 4 * Copyright (C) 2020 Seungha Yang <seungha@centricular.com> 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Library General Public 8 * License as published by the Free Software Foundation; either 9 * version 2 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Library General Public License for more details. 15 * 16 * You should have received a copy of the GNU Library General Public 17 * License along with this library; if not, write to the 18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 19 * Boston, MA 02110-1301, USA. 20 */ 21 22 #ifndef __GST_D3D11_BUFFER_POOL_H__ 23 #define __GST_D3D11_BUFFER_POOL_H__ 24 25 #include <gst/gst.h> 26 #include <gst/video/video.h> 27 #include <gst/d3d11/gstd3d11_fwd.h> 28 29 G_BEGIN_DECLS 30 31 #define GST_TYPE_D3D11_BUFFER_POOL (gst_d3d11_buffer_pool_get_type()) 32 #define GST_D3D11_BUFFER_POOL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_D3D11_BUFFER_POOL, GstD3D11BufferPool)) 33 #define GST_D3D11_BUFFER_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS((klass), GST_TYPE_D3D11_BUFFER_POOL, GstD3D11BufferPoolClass)) 34 #define GST_IS_D3D11_BUFFER_POOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_D3D11_BUFFER_POOL)) 35 #define GST_IS_D3D11_BUFFER_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_D3D11_BUFFER_POOL)) 36 #define GST_D3D11_BUFFER_POOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GST_TYPE_D3D11_BUFFER_POOL, GstD3D11BufferPoolClass)) 37 38 struct _GstD3D11BufferPool 39 { 40 GstBufferPool parent; 41 42 GstD3D11Device *device; 43 44 /*< private >*/ 45 GstD3D11BufferPoolPrivate *priv; 46 47 gpointer _gst_reserved[GST_PADDING]; 48 }; 49 50 struct _GstD3D11BufferPoolClass 51 { 52 GstBufferPoolClass bufferpool_class; 53 54 /*< private >*/ 55 gpointer _gst_reserved[GST_PADDING]; 56 }; 57 58 GST_D3D11_API 59 GType gst_d3d11_buffer_pool_get_type (void); 60 61 GST_D3D11_API 62 GstBufferPool * gst_d3d11_buffer_pool_new (GstD3D11Device * device); 63 64 GST_D3D11_API 65 GstD3D11AllocationParams * gst_buffer_pool_config_get_d3d11_allocation_params (GstStructure * config); 66 67 GST_D3D11_API 68 void gst_buffer_pool_config_set_d3d11_allocation_params (GstStructure * config, 69 GstD3D11AllocationParams * params); 70 71 G_END_DECLS 72 73 #endif /* __GST_D3D11_BUFFER_POOL_H__ */ 74