2012-07-06 08:22:22 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
2015-12-14 02:43:59 +00:00
|
|
|
* Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
|
2012-07-06 08:22:22 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-08 11:53:56 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2012-07-06 08:22:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GST_GL_MEMORY_H_
|
|
|
|
#define _GST_GL_MEMORY_H_
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
#include <gst/gl/gstglbasememory.h>
|
2017-07-07 15:15:12 +00:00
|
|
|
#include <gst/gl/gstglformat.h>
|
2012-07-06 08:22:22 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
#define GST_TYPE_GL_MEMORY_ALLOCATOR (gst_gl_memory_allocator_get_type())
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
GType gst_gl_memory_allocator_get_type(void);
|
2012-08-08 06:08:40 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
#define GST_IS_GL_MEMORY_ALLOCATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_GL_MEMORY_ALLOCATOR))
|
|
|
|
#define GST_IS_GL_MEMORY_ALLOCATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_GL_MEMORY_ALLOCATOR))
|
|
|
|
#define GST_GL_MEMORY_ALLOCATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_GL_MEMORY_ALLOCATOR, GstGLMemoryAllocatorClass))
|
|
|
|
#define GST_GL_MEMORY_ALLOCATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_GL_MEMORY_ALLOCATOR, GstGLMemoryAllocator))
|
|
|
|
#define GST_GL_MEMORY_ALLOCATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_GL_MEMORY_ALLOCATOR, GstGLMemoryAllocatorClass))
|
|
|
|
#define GST_GL_MEMORY_ALLOCATOR_CAST(obj) ((GstGLMemoryAllocator *)(obj))
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
#define GST_GL_MEMORY_CAST(obj) ((GstGLMemory *) obj)
|
2015-10-28 13:44:26 +00:00
|
|
|
|
2017-07-28 10:00:12 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_FEATURE_MEMORY_GL_MEMORY:
|
|
|
|
*
|
|
|
|
* Name of the caps feature for indicating the use of #GstGLMemory
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
#define GST_CAPS_FEATURE_MEMORY_GL_MEMORY "memory:GLMemory"
|
2017-07-28 10:00:12 +00:00
|
|
|
/**
|
2020-05-29 09:39:57 +00:00
|
|
|
* GST_GL_MEMORY_VIDEO_EXT_FORMATS: (skip)
|
2017-07-28 10:00:12 +00:00
|
|
|
*/
|
2019-06-05 01:26:08 +00:00
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
2020-05-29 09:39:57 +00:00
|
|
|
#define GST_GL_MEMORY_VIDEO_EXT_FORMATS \
|
2020-04-01 05:55:50 +00:00
|
|
|
", BGR10A2_LE, RGB10A2_LE, P010_10LE, P012_LE, P016_LE, Y212_LE, Y412_LE"
|
2019-06-05 01:26:08 +00:00
|
|
|
#else
|
2020-05-29 09:39:57 +00:00
|
|
|
#define GST_GL_MEMORY_VIDEO_EXT_FORMATS \
|
2020-04-01 05:55:50 +00:00
|
|
|
", P010_10BE, P012_BE, P016_BE, Y212_BE, Y412_BE"
|
2019-06-05 01:26:08 +00:00
|
|
|
#endif
|
|
|
|
|
2020-05-29 09:39:57 +00:00
|
|
|
/**
|
|
|
|
* GST_GL_MEMORY_VIDEO_FORMATS_STR:
|
|
|
|
*
|
|
|
|
* List of video formats that are supported by #GstGLMemory
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
#define GST_GL_MEMORY_VIDEO_FORMATS_STR \
|
2021-05-10 06:43:23 +00:00
|
|
|
"{ RGBA, BGRA, RGBx, BGRx, ARGB, ABGR, xRGB, xBGR, GBRA, GBR, RGBP, BGRP, RGB, BGR, RGB16, BGR16, " \
|
2019-10-12 04:00:46 +00:00
|
|
|
"AYUV, VUYA, Y410, I420, YV12, NV12, NV21, NV16, NV61, YUY2, UYVY, Y210, Y41B, " \
|
2021-05-18 19:20:36 +00:00
|
|
|
"Y42B, Y444, GRAY8, GRAY16_LE, GRAY16_BE, ARGB64, A420, AV12" \
|
2020-05-29 09:39:57 +00:00
|
|
|
GST_GL_MEMORY_VIDEO_EXT_FORMATS "}"
|
2015-10-28 13:44:26 +00:00
|
|
|
|
2012-07-06 08:22:22 +00:00
|
|
|
/**
|
|
|
|
* GstGLMemory:
|
2016-11-03 01:03:24 +00:00
|
|
|
* @mem: the parent #GstGLBaseMemory object
|
2015-06-10 06:36:15 +00:00
|
|
|
* @tex_id: the GL texture id for this memory
|
|
|
|
* @tex_target: the GL texture target for this memory
|
2018-04-02 06:34:58 +00:00
|
|
|
* @tex_format: the texture type
|
2015-06-10 06:36:15 +00:00
|
|
|
* @info: the texture's #GstVideoInfo
|
|
|
|
* @valign: data alignment for system memory mapping
|
|
|
|
* @plane: data plane in @info
|
|
|
|
* @tex_scaling: GL shader scaling parameters for @valign and/or width/height
|
2012-07-06 08:22:22 +00:00
|
|
|
*
|
|
|
|
* Represents information about a GL texture
|
|
|
|
*/
|
|
|
|
struct _GstGLMemory
|
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLBaseMemory mem;
|
|
|
|
|
|
|
|
guint tex_id;
|
|
|
|
GstGLTextureTarget tex_target;
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format;
|
2015-12-14 02:43:59 +00:00
|
|
|
GstVideoInfo info;
|
|
|
|
GstVideoAlignment valign;
|
|
|
|
guint plane;
|
|
|
|
gfloat tex_scaling[2];
|
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< protected >*/
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean texture_wrapped;
|
|
|
|
guint unpack_length;
|
|
|
|
guint tex_width;
|
2016-09-28 05:20:25 +00:00
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2016-09-28 05:20:25 +00:00
|
|
|
gpointer _padding[GST_PADDING];
|
2012-07-06 08:22:22 +00:00
|
|
|
};
|
|
|
|
|
2017-01-10 08:58:48 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_GL_VIDEO_ALLOCATION_PARAMS (gst_gl_video_allocation_params_get_type())
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2017-01-10 08:58:48 +00:00
|
|
|
GType gst_gl_video_allocation_params_get_type (void);
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
typedef struct _GstGLVideoAllocationParams GstGLVideoAllocationParams;
|
|
|
|
|
2017-07-28 10:00:12 +00:00
|
|
|
/**
|
|
|
|
* GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO:
|
|
|
|
*
|
|
|
|
* GL allocation flag indicating the allocation of 2D video frames
|
|
|
|
*/
|
2015-12-16 07:20:17 +00:00
|
|
|
#define GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO (1 << 3)
|
|
|
|
|
2016-11-03 01:03:24 +00:00
|
|
|
/**
|
|
|
|
* GstGLVideoAllocationParams:
|
|
|
|
* @parent: the parent #GstGLAllocationParams structure
|
|
|
|
* @v_info: the #GstVideoInfo to allocate
|
|
|
|
* @plane: the video plane index to allocate
|
|
|
|
* @valign: the #GstVideoAlignment to align the system representation to (may be %NULL for the default)
|
|
|
|
* @target: the #GstGLTextureTarget to allocate
|
2017-07-28 10:00:12 +00:00
|
|
|
* @tex_format: the #GstGLFormat to allocate
|
2016-11-03 01:03:24 +00:00
|
|
|
*/
|
2015-12-16 07:20:17 +00:00
|
|
|
struct _GstGLVideoAllocationParams
|
|
|
|
{
|
|
|
|
GstGLAllocationParams parent;
|
|
|
|
|
|
|
|
GstVideoInfo *v_info;
|
|
|
|
guint plane;
|
|
|
|
GstVideoAlignment *valign;
|
|
|
|
GstGLTextureTarget target;
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format;
|
2016-09-28 05:20:25 +00:00
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2016-09-28 05:20:25 +00:00
|
|
|
gpointer _padding[GST_PADDING];
|
2015-12-16 07:20:17 +00:00
|
|
|
};
|
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-16 07:20:17 +00:00
|
|
|
gboolean gst_gl_video_allocation_params_init_full (GstGLVideoAllocationParams * params,
|
|
|
|
gsize struct_size,
|
|
|
|
guint alloc_flags,
|
|
|
|
GstGLAllocationParamsCopyFunc copy,
|
|
|
|
GstGLAllocationParamsFreeFunc free,
|
|
|
|
GstGLContext * context,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstAllocationParams * alloc_params,
|
|
|
|
const GstVideoInfo * v_info,
|
2015-12-16 07:20:17 +00:00
|
|
|
guint plane,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstVideoAlignment * valign,
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format,
|
2015-12-16 07:20:17 +00:00
|
|
|
gpointer wrapped_data,
|
2016-05-03 14:19:44 +00:00
|
|
|
gpointer gl_handle,
|
2015-12-17 04:23:13 +00:00
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLVideoAllocationParams * gst_gl_video_allocation_params_new (GstGLContext * context,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstAllocationParams * alloc_params,
|
|
|
|
const GstVideoInfo * v_info,
|
2015-12-16 07:20:17 +00:00
|
|
|
guint plane,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstVideoAlignment * valign,
|
2016-06-28 03:51:22 +00:00
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLVideoAllocationParams * gst_gl_video_allocation_params_new_wrapped_data (GstGLContext * context,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstAllocationParams * alloc_params,
|
|
|
|
const GstVideoInfo * v_info,
|
2015-12-16 07:20:17 +00:00
|
|
|
guint plane,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstVideoAlignment * valign,
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format,
|
2015-12-16 07:20:17 +00:00
|
|
|
gpointer wrapped_data,
|
2015-12-17 04:23:13 +00:00
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLVideoAllocationParams * gst_gl_video_allocation_params_new_wrapped_texture (GstGLContext * context,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstAllocationParams * alloc_params,
|
|
|
|
const GstVideoInfo * v_info,
|
2015-12-16 07:20:17 +00:00
|
|
|
guint plane,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstVideoAlignment * valign,
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format,
|
2015-12-16 07:20:17 +00:00
|
|
|
guint tex_id,
|
2015-12-17 04:23:13 +00:00
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2016-05-03 14:19:44 +00:00
|
|
|
GstGLVideoAllocationParams * gst_gl_video_allocation_params_new_wrapped_gl_handle (GstGLContext * context,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstAllocationParams * alloc_params,
|
|
|
|
const GstVideoInfo * v_info,
|
2016-05-03 14:19:44 +00:00
|
|
|
guint plane,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstVideoAlignment * valign,
|
2016-05-03 14:19:44 +00:00
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format,
|
2016-05-03 14:19:44 +00:00
|
|
|
gpointer gl_handle,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
/* subclass usage */
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-16 07:20:17 +00:00
|
|
|
void gst_gl_video_allocation_params_free_data (GstGLVideoAllocationParams * params);
|
|
|
|
/* subclass usage */
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2016-03-06 08:32:21 +00:00
|
|
|
void gst_gl_video_allocation_params_copy_data (GstGLVideoAllocationParams * src_vid,
|
|
|
|
GstGLVideoAllocationParams * dest_vid);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
2012-09-27 05:53:46 +00:00
|
|
|
/**
|
2015-12-14 02:43:59 +00:00
|
|
|
* GstGLMemoryAllocator
|
2012-09-27 05:53:46 +00:00
|
|
|
*
|
2015-12-14 02:43:59 +00:00
|
|
|
* Opaque #GstGLMemoryAllocator struct
|
2012-09-27 05:53:46 +00:00
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
struct _GstGLMemoryAllocator
|
|
|
|
{
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLBaseMemoryAllocator parent;
|
2016-09-28 05:20:25 +00:00
|
|
|
|
|
|
|
gpointer _padding[GST_PADDING];
|
2015-12-14 02:43:59 +00:00
|
|
|
};
|
2015-10-28 13:44:26 +00:00
|
|
|
|
2012-09-27 05:53:46 +00:00
|
|
|
/**
|
2015-12-14 02:43:59 +00:00
|
|
|
* GstGLMemoryAllocatorClass:
|
2016-11-03 01:03:24 +00:00
|
|
|
* @map: provide a custom map implementation
|
|
|
|
* @copy: provide a custom copy implementation
|
|
|
|
* @unmap: provide a custom unmap implementation
|
2012-09-27 05:53:46 +00:00
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
struct _GstGLMemoryAllocatorClass
|
2012-08-08 06:08:40 +00:00
|
|
|
{
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLBaseMemoryAllocatorClass parent_class;
|
2015-12-14 02:43:59 +00:00
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< public >*/
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLBaseMemoryAllocatorMapFunction map;
|
|
|
|
GstGLBaseMemoryAllocatorCopyFunction copy;
|
|
|
|
GstGLBaseMemoryAllocatorUnmapFunction unmap;
|
2016-09-28 05:20:25 +00:00
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2016-09-28 05:20:25 +00:00
|
|
|
gpointer _padding[GST_PADDING];
|
2012-08-08 06:08:40 +00:00
|
|
|
};
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
#include <gst/gl/gstglbasememory.h>
|
|
|
|
|
2012-09-27 05:53:46 +00:00
|
|
|
/**
|
2015-12-14 02:43:59 +00:00
|
|
|
* GST_GL_MEMORY_ALLOCATOR_NAME:
|
2012-09-27 05:53:46 +00:00
|
|
|
*
|
2015-12-14 02:43:59 +00:00
|
|
|
* The name of the GL memory allocator
|
2012-09-27 05:53:46 +00:00
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
#define GST_GL_MEMORY_ALLOCATOR_NAME "GLMemory"
|
|
|
|
|
2021-01-06 00:16:18 +00:00
|
|
|
/**
|
|
|
|
* GST_TYPE_GL_MEMORY:
|
|
|
|
*
|
2021-04-11 22:42:13 +00:00
|
|
|
* Since: 1.20
|
2021-01-06 00:16:18 +00:00
|
|
|
*/
|
|
|
|
#define GST_TYPE_GL_MEMORY (gst_gl_memory_get_type())
|
|
|
|
GST_GL_API
|
|
|
|
GType gst_gl_memory_get_type(void);
|
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
void gst_gl_memory_init_once (void);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean gst_is_gl_memory (GstMemory * mem);
|
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
void gst_gl_memory_init (GstGLMemory * mem,
|
|
|
|
GstAllocator * allocator,
|
|
|
|
GstMemory * parent,
|
|
|
|
GstGLContext * context,
|
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstAllocationParams *params,
|
|
|
|
const GstVideoInfo * info,
|
2015-12-14 02:43:59 +00:00
|
|
|
guint plane,
|
2021-01-04 22:25:10 +00:00
|
|
|
const GstVideoAlignment *valign,
|
2015-12-17 04:23:13 +00:00
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
2015-12-14 02:43:59 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean gst_gl_memory_copy_into (GstGLMemory *gl_mem,
|
|
|
|
guint tex_id,
|
|
|
|
GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format,
|
2015-12-14 02:43:59 +00:00
|
|
|
gint width,
|
|
|
|
gint height);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean gst_gl_memory_copy_teximage (GstGLMemory * src,
|
|
|
|
guint tex_id,
|
|
|
|
GstGLTextureTarget out_target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat out_tex_format,
|
2018-02-05 03:58:06 +00:00
|
|
|
gint out_width,
|
|
|
|
gint out_height);
|
2015-12-14 02:43:59 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean gst_gl_memory_read_pixels (GstGLMemory * gl_mem,
|
2020-09-03 19:19:29 +00:00
|
|
|
gpointer write_pointer);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2016-01-07 07:47:37 +00:00
|
|
|
void gst_gl_memory_texsubimage (GstGLMemory * gl_mem,
|
|
|
|
gpointer read_pointer);
|
2015-12-14 02:43:59 +00:00
|
|
|
|
|
|
|
/* accessors */
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
gint gst_gl_memory_get_texture_width (GstGLMemory * gl_mem);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
gint gst_gl_memory_get_texture_height (GstGLMemory * gl_mem);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat gst_gl_memory_get_texture_format (GstGLMemory * gl_mem);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLTextureTarget gst_gl_memory_get_texture_target (GstGLMemory * gl_mem);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-14 02:43:59 +00:00
|
|
|
guint gst_gl_memory_get_texture_id (GstGLMemory * gl_mem);
|
2012-08-08 06:08:40 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-16 07:20:17 +00:00
|
|
|
gboolean gst_gl_memory_setup_buffer (GstGLMemoryAllocator * allocator,
|
|
|
|
GstBuffer * buffer,
|
2016-05-03 15:16:51 +00:00
|
|
|
GstGLVideoAllocationParams * params,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat *tex_formats,
|
2016-05-03 15:16:51 +00:00
|
|
|
gpointer *wrapped_data,
|
|
|
|
gsize n_wrapped_pointers);
|
2015-12-18 02:17:34 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-12-18 02:17:34 +00:00
|
|
|
GstGLMemoryAllocator * gst_gl_memory_allocator_get_default (GstGLContext *context);
|
|
|
|
|
2012-07-06 08:22:22 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* _GST_GL_MEMORY_H_ */
|