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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-03 04:13:00 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2017-07-07 15:15:12 +00:00
|
|
|
#include "gstglmemory.h"
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2017-07-07 15:15:12 +00:00
|
|
|
#include "gl.h"
|
|
|
|
#include "gstglfuncs.h"
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2012-09-27 05:53:46 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstglmemory
|
2017-07-26 09:04:09 +00:00
|
|
|
* @title: GstGLMemory
|
2012-09-27 05:53:46 +00:00
|
|
|
* @short_description: memory subclass for GL textures
|
|
|
|
* @see_also: #GstMemory, #GstAllocator, #GstGLBufferPool
|
|
|
|
*
|
2016-03-06 08:32:21 +00:00
|
|
|
* GstGLMemory is a #GstGLBaseMemory subclass providing support for the mapping of
|
2017-03-08 18:01:13 +00:00
|
|
|
* OpenGL textures.
|
2012-09-27 05:53:46 +00:00
|
|
|
*
|
2016-03-06 08:32:21 +00:00
|
|
|
* #GstGLMemory is created or wrapped through gst_gl_base_memory_alloc()
|
|
|
|
* with #GstGLVideoAllocationParams.
|
2012-09-27 05:53:46 +00:00
|
|
|
*
|
|
|
|
* Data is uploaded or downloaded from the GPU as is necessary.
|
|
|
|
*/
|
|
|
|
|
2014-05-30 00:27:14 +00:00
|
|
|
#define USING_OPENGL(context) (gst_gl_context_check_gl_version (context, GST_GL_API_OPENGL, 1, 0))
|
|
|
|
#define USING_OPENGL3(context) (gst_gl_context_check_gl_version (context, GST_GL_API_OPENGL3, 3, 1))
|
|
|
|
#define USING_GLES(context) (gst_gl_context_check_gl_version (context, GST_GL_API_GLES, 1, 0))
|
|
|
|
#define USING_GLES2(context) (gst_gl_context_check_gl_version (context, GST_GL_API_GLES2, 2, 0))
|
|
|
|
#define USING_GLES3(context) (gst_gl_context_check_gl_version (context, GST_GL_API_GLES2, 3, 0))
|
2012-12-06 07:40:26 +00:00
|
|
|
|
2014-07-31 04:07:29 +00:00
|
|
|
#define GL_MEM_WIDTH(gl_mem) _get_plane_width (&gl_mem->info, gl_mem->plane)
|
|
|
|
#define GL_MEM_HEIGHT(gl_mem) _get_plane_height (&gl_mem->info, gl_mem->plane)
|
|
|
|
#define GL_MEM_STRIDE(gl_mem) GST_VIDEO_INFO_PLANE_STRIDE (&gl_mem->info, gl_mem->plane)
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
static GstAllocator *_gl_memory_allocator;
|
|
|
|
|
2012-09-16 11:36:09 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_GL_MEMORY);
|
2015-02-12 14:02:31 +00:00
|
|
|
#define GST_CAT_DEFAULT GST_CAT_GL_MEMORY
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2014-04-11 01:04:43 +00:00
|
|
|
/* compatability definitions... */
|
2014-05-30 02:23:09 +00:00
|
|
|
#ifndef GL_UNPACK_ROW_LENGTH
|
|
|
|
#define GL_UNPACK_ROW_LENGTH 0x0CF2
|
|
|
|
#endif
|
2015-06-10 06:36:15 +00:00
|
|
|
|
2015-10-28 13:44:26 +00:00
|
|
|
#ifndef GL_TEXTURE_RECTANGLE
|
|
|
|
#define GL_TEXTURE_RECTANGLE 0x84F5
|
|
|
|
#endif
|
|
|
|
#ifndef GL_TEXTURE_EXTERNAL_OES
|
|
|
|
#define GL_TEXTURE_EXTERNAL_OES 0x8D65
|
|
|
|
#endif
|
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
#ifndef GL_READ_FRAMEBUFFER
|
|
|
|
#define GL_READ_FRAMEBUFFER 0x8CA8
|
|
|
|
#endif
|
|
|
|
#ifndef GL_DRAW_FRAMEBUFFER
|
|
|
|
#define GL_DRAW_FRAMEBUFFER 0x8CA9
|
|
|
|
#endif
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
G_DEFINE_TYPE (GstGLMemoryAllocator, gst_gl_memory_allocator,
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_TYPE_GL_BASE_MEMORY_ALLOCATOR);
|
2014-04-11 01:04:43 +00:00
|
|
|
|
2012-07-06 08:22:22 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-04-02 06:43:52 +00:00
|
|
|
/* in */
|
2012-07-06 08:22:22 +00:00
|
|
|
GstGLMemory *src;
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat out_format;
|
2014-04-02 06:43:52 +00:00
|
|
|
guint out_width, out_height;
|
2015-10-28 13:44:26 +00:00
|
|
|
GstGLTextureTarget tex_target;
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format;
|
2014-04-02 06:43:52 +00:00
|
|
|
/* inout */
|
|
|
|
guint tex_id;
|
|
|
|
/* out */
|
2013-11-13 12:24:00 +00:00
|
|
|
gboolean result;
|
2012-07-06 08:22:22 +00:00
|
|
|
} GstGLMemoryCopyParams;
|
|
|
|
|
2014-04-02 06:43:52 +00:00
|
|
|
static inline guint
|
|
|
|
_get_plane_width (GstVideoInfo * info, guint plane)
|
|
|
|
{
|
|
|
|
if (GST_VIDEO_INFO_IS_YUV (info))
|
|
|
|
/* For now component width and plane width are the same and the
|
|
|
|
* plane-component mapping matches
|
|
|
|
*/
|
|
|
|
return GST_VIDEO_INFO_COMP_WIDTH (info, plane);
|
|
|
|
else /* RGB, GRAY */
|
|
|
|
return GST_VIDEO_INFO_WIDTH (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline guint
|
|
|
|
_get_plane_height (GstVideoInfo * info, guint plane)
|
|
|
|
{
|
|
|
|
if (GST_VIDEO_INFO_IS_YUV (info))
|
|
|
|
/* For now component width and plane width are the same and the
|
|
|
|
* plane-component mapping matches
|
|
|
|
*/
|
|
|
|
return GST_VIDEO_INFO_COMP_HEIGHT (info, plane);
|
|
|
|
else /* RGB, GRAY */
|
|
|
|
return GST_VIDEO_INFO_HEIGHT (info);
|
|
|
|
}
|
|
|
|
|
2014-04-11 07:24:39 +00:00
|
|
|
static inline void
|
2015-06-10 06:36:15 +00:00
|
|
|
_calculate_unpack_length (GstGLMemory * gl_mem, GstGLContext * context)
|
2014-04-11 07:24:39 +00:00
|
|
|
{
|
|
|
|
guint n_gl_bytes;
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
guint tex_format, tex_type;
|
2014-04-11 07:24:39 +00:00
|
|
|
|
|
|
|
gl_mem->tex_scaling[0] = 1.0f;
|
|
|
|
gl_mem->tex_scaling[1] = 1.0f;
|
|
|
|
gl_mem->unpack_length = 1;
|
2014-07-31 04:07:29 +00:00
|
|
|
gl_mem->tex_width = GL_MEM_WIDTH (gl_mem);
|
2014-04-11 07:24:39 +00:00
|
|
|
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
gst_gl_format_type_from_sized_gl_format (gl_mem->tex_format, &tex_format,
|
|
|
|
&tex_type);
|
|
|
|
n_gl_bytes = gst_gl_format_type_n_bytes (tex_format, tex_type);
|
2014-04-21 08:47:08 +00:00
|
|
|
if (n_gl_bytes == 0) {
|
2017-03-13 03:28:47 +00:00
|
|
|
GST_ERROR ("Unsupported texture type %d", gl_mem->tex_format);
|
2014-04-21 08:47:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-05-30 02:23:09 +00:00
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
if (USING_OPENGL (context) || USING_GLES3 (context)
|
|
|
|
|| USING_OPENGL3 (context)) {
|
2014-07-31 04:07:29 +00:00
|
|
|
gl_mem->unpack_length = GL_MEM_STRIDE (gl_mem) / n_gl_bytes;
|
2015-06-10 06:36:15 +00:00
|
|
|
} else if (USING_GLES2 (context)) {
|
2014-04-02 06:43:52 +00:00
|
|
|
guint j = 8;
|
|
|
|
|
|
|
|
while (j >= n_gl_bytes) {
|
2014-07-31 04:07:29 +00:00
|
|
|
/* GST_ROUND_UP_j(GL_MEM_WIDTH (gl_mem) * n_gl_bytes) */
|
|
|
|
guint round_up_j =
|
|
|
|
((GL_MEM_WIDTH (gl_mem) * n_gl_bytes) + j - 1) & ~(j - 1);
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2014-07-31 04:07:29 +00:00
|
|
|
if (round_up_j == GL_MEM_STRIDE (gl_mem)) {
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_GL_MEMORY, "Found alignment of %u based on "
|
|
|
|
"width (with plane width:%u, plane stride:%u and pixel stride:%u. "
|
2014-07-31 04:07:29 +00:00
|
|
|
"RU%u(%u*%u) = %u)", j, GL_MEM_WIDTH (gl_mem),
|
|
|
|
GL_MEM_STRIDE (gl_mem), n_gl_bytes, j, GL_MEM_WIDTH (gl_mem),
|
|
|
|
n_gl_bytes, round_up_j);
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2014-04-11 07:24:39 +00:00
|
|
|
gl_mem->unpack_length = j;
|
2014-04-02 06:43:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
j >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j < n_gl_bytes) {
|
|
|
|
/* Failed to find a suitable alignment, try based on plane_stride and
|
|
|
|
* scale in the shader. Useful for alignments that are greater than 8.
|
|
|
|
*/
|
|
|
|
j = 8;
|
|
|
|
|
|
|
|
while (j >= n_gl_bytes) {
|
2014-07-31 04:07:29 +00:00
|
|
|
/* GST_ROUND_UP_j((GL_MEM_STRIDE (gl_mem)) */
|
|
|
|
guint round_up_j = ((GL_MEM_STRIDE (gl_mem)) + j - 1) & ~(j - 1);
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2014-07-31 04:07:29 +00:00
|
|
|
if (round_up_j == (GL_MEM_STRIDE (gl_mem))) {
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_GL_MEMORY, "Found alignment of %u based "
|
|
|
|
"on stride (with plane stride:%u and pixel stride:%u. "
|
2014-07-31 04:07:29 +00:00
|
|
|
"RU%u(%u) = %u)", j, GL_MEM_STRIDE (gl_mem), n_gl_bytes, j,
|
|
|
|
GL_MEM_STRIDE (gl_mem), round_up_j);
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2014-04-11 07:24:39 +00:00
|
|
|
gl_mem->unpack_length = j;
|
2014-04-02 06:43:52 +00:00
|
|
|
gl_mem->tex_scaling[0] =
|
2014-07-31 04:07:29 +00:00
|
|
|
(gfloat) (GL_MEM_WIDTH (gl_mem) * n_gl_bytes) /
|
|
|
|
(gfloat) GL_MEM_STRIDE (gl_mem);
|
|
|
|
gl_mem->tex_width = GL_MEM_STRIDE (gl_mem) / n_gl_bytes;
|
2014-04-02 06:43:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
j >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j < n_gl_bytes) {
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY, "Failed to find matching "
|
|
|
|
"alignment. Image may look corrupted. plane width:%u, "
|
|
|
|
"plane stride:%u and pixel stride:%u", GL_MEM_WIDTH (gl_mem),
|
|
|
|
GL_MEM_STRIDE (gl_mem), n_gl_bytes);
|
2014-04-02 06:43:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-10 01:33:52 +00:00
|
|
|
|
|
|
|
if (gl_mem->tex_target == GST_GL_TEXTURE_TARGET_RECTANGLE) {
|
|
|
|
guint w_sub =
|
|
|
|
GST_VIDEO_FORMAT_INFO_W_SUB (gl_mem->info.finfo, gl_mem->plane);
|
|
|
|
guint h_sub =
|
|
|
|
GST_VIDEO_FORMAT_INFO_H_SUB (gl_mem->info.finfo, gl_mem->plane);
|
|
|
|
|
|
|
|
if (w_sub)
|
|
|
|
gl_mem->tex_scaling[0] /= (1 << w_sub);
|
|
|
|
if (h_sub)
|
|
|
|
gl_mem->tex_scaling[1] /= (1 << h_sub);
|
|
|
|
}
|
2014-04-02 06:43:52 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
static guint
|
|
|
|
_new_texture (GstGLContext * context, guint target, guint internal_format,
|
|
|
|
guint format, guint type, guint width, guint height)
|
2015-01-27 00:53:51 +00:00
|
|
|
{
|
2015-06-10 06:36:15 +00:00
|
|
|
const GstGLFuncs *gl = context->gl_vtable;
|
|
|
|
guint tex_id;
|
2015-01-27 00:53:51 +00:00
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
gl->GenTextures (1, &tex_id);
|
|
|
|
gl->BindTexture (target, tex_id);
|
2015-10-28 13:44:26 +00:00
|
|
|
if (target == GL_TEXTURE_2D || target == GL_TEXTURE_RECTANGLE)
|
|
|
|
gl->TexImage2D (target, 0, internal_format, width, height, 0, format, type,
|
|
|
|
NULL);
|
2015-01-27 00:53:51 +00:00
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
gl->TexParameteri (target, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
gl->TexParameteri (target, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
gl->TexParameteri (target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
gl->TexParameteri (target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2015-01-27 00:53:51 +00:00
|
|
|
|
2015-10-28 13:44:26 +00:00
|
|
|
gl->BindTexture (target, 0);
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
return tex_id;
|
2015-01-27 00:53:51 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
static gboolean
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_create (GstGLMemory * gl_mem, GError ** error)
|
2014-04-02 06:43:52 +00:00
|
|
|
{
|
2015-06-10 06:36:15 +00:00
|
|
|
GstGLContext *context = gl_mem->mem.context;
|
|
|
|
GLenum internal_format;
|
|
|
|
GLenum tex_format;
|
|
|
|
GLenum tex_type;
|
2014-04-02 06:43:52 +00:00
|
|
|
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
internal_format = gl_mem->tex_format;
|
|
|
|
gst_gl_format_type_from_sized_gl_format (internal_format, &tex_format,
|
|
|
|
&tex_type);
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2015-09-17 13:17:09 +00:00
|
|
|
if (!gl_mem->texture_wrapped) {
|
2015-06-10 06:36:15 +00:00
|
|
|
gl_mem->tex_id =
|
2015-10-28 13:44:26 +00:00
|
|
|
_new_texture (context, gst_gl_texture_target_to_gl (gl_mem->tex_target),
|
|
|
|
internal_format, tex_format, tex_type, gl_mem->tex_width,
|
|
|
|
GL_MEM_HEIGHT (gl_mem));
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_TRACE ("Generating texture id:%u format:%u type:%u dimensions:%ux%u",
|
|
|
|
gl_mem->tex_id, tex_format, tex_type, gl_mem->tex_width,
|
|
|
|
GL_MEM_HEIGHT (gl_mem));
|
2014-04-02 06:43:52 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
return TRUE;
|
2014-04-02 06:43:52 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 07:39:32 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_init:
|
|
|
|
* @mem: the #GstGLBaseMemory to initialize
|
|
|
|
* @allocator: the #GstAllocator to initialize with
|
|
|
|
* @parent: (allow-none): the parent #GstMemory to initialize with
|
|
|
|
* @context: the #GstGLContext to initialize with
|
2016-03-06 08:32:21 +00:00
|
|
|
* @target: the #GstGLTextureTarget for this #GstGLMemory
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat for this #GstGLMemory
|
2015-12-16 07:39:32 +00:00
|
|
|
* @params: (allow-none): the @GstAllocationParams to initialize with
|
2016-03-06 08:32:21 +00:00
|
|
|
* @info: the #GstVideoInfo for this #GstGLMemory
|
|
|
|
* @plane: the plane number (starting from 0) for this #GstGLMemory
|
|
|
|
* @valign: (allow-none): optional #GstVideoAlignment parameters
|
2015-12-16 07:39:32 +00:00
|
|
|
* @notify: (allow-none): a #GDestroyNotify
|
|
|
|
* @user_data: (allow-none): user data to call @notify with
|
|
|
|
*
|
2016-03-06 08:32:21 +00:00
|
|
|
* Initializes @mem with the required parameters. @info is assumed to have
|
|
|
|
* already have been modified with gst_video_info_align().
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
2015-12-16 07:39:32 +00:00
|
|
|
*/
|
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, GstAllocationParams * params,
|
2016-06-28 03:51:22 +00:00
|
|
|
GstVideoInfo * info, guint plane, GstVideoAlignment * valign,
|
|
|
|
gpointer user_data, GDestroyNotify notify)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
2015-10-28 13:44:26 +00:00
|
|
|
const gchar *target_str;
|
2015-06-10 06:36:15 +00:00
|
|
|
gsize size;
|
2012-09-16 11:36:09 +00:00
|
|
|
|
2014-07-31 05:18:04 +00:00
|
|
|
g_return_if_fail (plane < GST_VIDEO_INFO_N_PLANES (info));
|
|
|
|
|
2015-01-14 01:39:11 +00:00
|
|
|
mem->info = *info;
|
|
|
|
if (valign)
|
|
|
|
mem->valign = *valign;
|
|
|
|
else
|
|
|
|
gst_video_alignment_reset (&mem->valign);
|
|
|
|
|
2015-09-15 10:34:12 +00:00
|
|
|
/* double-check alignment requirements (caller should've taken care of this) */
|
|
|
|
if (params) {
|
|
|
|
guint max_align, n;
|
|
|
|
|
|
|
|
max_align = gst_memory_alignment;
|
|
|
|
max_align |= params->align;
|
|
|
|
for (n = 0; n < GST_VIDEO_MAX_PLANES; ++n)
|
|
|
|
max_align |= mem->valign.stride_align[n];
|
|
|
|
|
|
|
|
if (params->align < max_align && max_align > gst_memory_alignment) {
|
|
|
|
GST_WARNING ("allocation params alignment %" G_GSIZE_FORMAT " is smaller "
|
|
|
|
"than the max required video alignment %u", params->align, max_align);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
size = gst_gl_get_plane_data_size (info, valign, plane);
|
2015-02-25 23:07:03 +00:00
|
|
|
|
2015-10-28 13:44:26 +00:00
|
|
|
mem->tex_target = target;
|
2017-03-13 03:28:47 +00:00
|
|
|
mem->tex_format = tex_format;
|
2014-07-31 04:07:29 +00:00
|
|
|
mem->plane = plane;
|
2012-09-16 11:36:09 +00:00
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
_calculate_unpack_length (mem, context);
|
2015-01-27 01:15:43 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_base_memory_init ((GstGLBaseMemory *) mem, allocator, parent, context,
|
2015-12-17 04:23:13 +00:00
|
|
|
params, size, user_data, notify);
|
2014-04-11 07:24:39 +00:00
|
|
|
|
2015-10-28 13:44:26 +00:00
|
|
|
target_str = gst_gl_texture_target_to_string (target);
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_GL_MEMORY, "new GL texture context:%"
|
|
|
|
GST_PTR_FORMAT " memory:%p target:%s format:%u dimensions:%ux%u "
|
|
|
|
"stride:%u size:%" G_GSIZE_FORMAT, context, mem, target_str,
|
2017-03-13 03:28:47 +00:00
|
|
|
mem->tex_format, mem->tex_width, GL_MEM_HEIGHT (mem), GL_MEM_STRIDE (mem),
|
2015-12-14 02:43:59 +00:00
|
|
|
mem->mem.mem.size);
|
2015-06-10 06:36:15 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_read_pixels:
|
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
* @read_pointer: the data pointer to pass to glReadPixels
|
|
|
|
*
|
|
|
|
* Reads the texture in #GstGLMemory into @read_pointer if no buffer is bound
|
|
|
|
* to %GL_PIXEL_PACK_BUFFER. Otherwise @read_pointer is the byte offset into
|
|
|
|
* the currently bound %GL_PIXEL_PACK_BUFFER buffer to store the result of
|
|
|
|
* glReadPixels. See the OpenGL specification for glReadPixels for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* Returns: whether theread operation succeeded
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean
|
|
|
|
gst_gl_memory_read_pixels (GstGLMemory * gl_mem, gpointer read_pointer)
|
2015-06-10 06:36:15 +00:00
|
|
|
{
|
|
|
|
GstGLContext *context = gl_mem->mem.context;
|
|
|
|
const GstGLFuncs *gl = context->gl_vtable;
|
|
|
|
guint format, type;
|
|
|
|
guint fbo;
|
|
|
|
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
gst_gl_format_type_from_sized_gl_format (gl_mem->tex_format, &format, &type);
|
2015-06-10 06:36:15 +00:00
|
|
|
|
2015-06-11 08:26:50 +00:00
|
|
|
/* FIXME: avoid creating a framebuffer every download/copy */
|
2015-06-10 06:36:15 +00:00
|
|
|
gl->GenFramebuffers (1, &fbo);
|
|
|
|
gl->BindFramebuffer (GL_FRAMEBUFFER, fbo);
|
|
|
|
|
|
|
|
gl->FramebufferTexture2D (GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
2015-10-28 13:44:26 +00:00
|
|
|
gst_gl_texture_target_to_gl (gl_mem->tex_target), gl_mem->tex_id, 0);
|
2015-06-10 06:36:15 +00:00
|
|
|
|
2017-05-25 02:09:04 +00:00
|
|
|
if (!gst_gl_context_check_framebuffer_status (context, GL_FRAMEBUFFER)) {
|
2015-06-10 06:36:15 +00:00
|
|
|
GST_CAT_WARNING (GST_CAT_GL_MEMORY,
|
|
|
|
"Could not create framebuffer to read pixels for memory %p", gl_mem);
|
|
|
|
gl->DeleteFramebuffers (1, &fbo);
|
|
|
|
return FALSE;
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2016-03-31 08:38:12 +00:00
|
|
|
if (USING_GLES2 (context) || USING_GLES3 (context)) {
|
|
|
|
if (format == GL_RGBA && type == GL_UNSIGNED_BYTE) {
|
|
|
|
/* explicitly supported */
|
|
|
|
} else {
|
|
|
|
gint supported_format, supported_type;
|
|
|
|
|
|
|
|
gl->GetIntegerv (GL_IMPLEMENTATION_COLOR_READ_FORMAT, &supported_format);
|
|
|
|
gl->GetIntegerv (GL_IMPLEMENTATION_COLOR_READ_TYPE, &supported_type);
|
|
|
|
|
|
|
|
if (supported_format != format || supported_type != type) {
|
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY, "cannot read pixels with "
|
|
|
|
"unsupported format and type. Supported format 0x%x type 0x%x",
|
|
|
|
supported_format, supported_type);
|
|
|
|
gl->BindFramebuffer (GL_FRAMEBUFFER, 0);
|
|
|
|
gl->DeleteFramebuffers (1, &fbo);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-11 02:30:05 +00:00
|
|
|
gst_gl_query_start_log (GST_GL_BASE_MEMORY_CAST (gl_mem)->query,
|
|
|
|
GST_CAT_GL_MEMORY, GST_LEVEL_LOG, NULL, "%s", "glReadPixels took");
|
2015-06-10 06:36:15 +00:00
|
|
|
gl->ReadPixels (0, 0, gl_mem->tex_width, GL_MEM_HEIGHT (gl_mem), format,
|
|
|
|
type, read_pointer);
|
2016-01-11 02:30:05 +00:00
|
|
|
gst_gl_query_end (GST_GL_BASE_MEMORY_CAST (gl_mem)->query);
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
gl->BindFramebuffer (GL_FRAMEBUFFER, 0);
|
|
|
|
gl->DeleteFramebuffers (1, &fbo);
|
|
|
|
|
|
|
|
return TRUE;
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
static gpointer
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_download_get_tex_image (GstGLMemory * gl_mem, GstMapInfo * info,
|
2015-06-10 06:36:15 +00:00
|
|
|
gsize size)
|
|
|
|
{
|
|
|
|
GstGLContext *context = gl_mem->mem.context;
|
|
|
|
const GstGLFuncs *gl = context->gl_vtable;
|
|
|
|
|
|
|
|
if (size != -1 && size != ((GstMemory *) gl_mem)->maxsize)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (USING_GLES2 (context) || USING_GLES3 (context))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* taken care of by read pixels */
|
2017-03-13 03:28:47 +00:00
|
|
|
if (gl_mem->tex_format != GST_GL_LUMINANCE
|
|
|
|
&& gl_mem->tex_format != GST_GL_LUMINANCE_ALPHA)
|
2015-06-10 06:36:15 +00:00
|
|
|
return NULL;
|
|
|
|
|
2015-06-11 08:26:50 +00:00
|
|
|
if (info->flags & GST_MAP_READ
|
2015-12-14 02:43:59 +00:00
|
|
|
&& GST_MEMORY_FLAG_IS_SET (gl_mem,
|
|
|
|
GST_GL_BASE_MEMORY_TRANSFER_NEED_DOWNLOAD)) {
|
2015-06-11 08:26:50 +00:00
|
|
|
guint format, type;
|
2015-10-28 13:44:26 +00:00
|
|
|
guint target;
|
2015-06-11 08:26:50 +00:00
|
|
|
|
2015-07-20 08:19:02 +00:00
|
|
|
GST_CAT_TRACE (GST_CAT_GL_MEMORY, "attempting download of texture %u "
|
|
|
|
"using glGetTexImage", gl_mem->tex_id);
|
|
|
|
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
gst_gl_format_type_from_sized_gl_format (gl_mem->tex_format, &format,
|
|
|
|
&type);
|
2015-06-10 06:36:15 +00:00
|
|
|
|
2015-10-28 13:44:26 +00:00
|
|
|
target = gst_gl_texture_target_to_gl (gl_mem->tex_target);
|
|
|
|
gl->BindTexture (target, gl_mem->tex_id);
|
2016-01-11 02:30:05 +00:00
|
|
|
gst_gl_query_start_log (GST_GL_BASE_MEMORY_CAST (gl_mem)->query,
|
|
|
|
GST_CAT_GL_MEMORY, GST_LEVEL_LOG, NULL, "%s", "glGetTexImage took");
|
2015-10-28 13:44:26 +00:00
|
|
|
gl->GetTexImage (target, 0, format, type, gl_mem->mem.data);
|
2016-01-11 02:30:05 +00:00
|
|
|
gst_gl_query_end (GST_GL_BASE_MEMORY_CAST (gl_mem)->query);
|
2015-10-28 13:44:26 +00:00
|
|
|
gl->BindTexture (target, 0);
|
2015-06-11 08:26:50 +00:00
|
|
|
}
|
2015-06-10 06:36:15 +00:00
|
|
|
|
|
|
|
return gl_mem->mem.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_download_read_pixels (GstGLMemory * gl_mem, GstMapInfo * info,
|
2015-06-10 06:36:15 +00:00
|
|
|
gsize size)
|
|
|
|
{
|
|
|
|
if (size != -1 && size != ((GstMemory *) gl_mem)->maxsize)
|
|
|
|
return NULL;
|
|
|
|
|
2015-06-11 08:26:50 +00:00
|
|
|
if (info->flags & GST_MAP_READ
|
2015-12-14 02:43:59 +00:00
|
|
|
&& GST_MEMORY_FLAG_IS_SET (gl_mem,
|
|
|
|
GST_GL_BASE_MEMORY_TRANSFER_NEED_DOWNLOAD)) {
|
|
|
|
GST_CAT_TRACE (GST_CAT_GL_MEMORY,
|
|
|
|
"attempting download of texture %u " "using glReadPixels",
|
|
|
|
gl_mem->tex_id);
|
|
|
|
if (!gst_gl_memory_read_pixels (gl_mem, gl_mem->mem.data))
|
2015-06-11 08:26:50 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-06-10 06:36:15 +00:00
|
|
|
|
|
|
|
return gl_mem->mem.data;
|
2015-02-25 23:07:03 +00:00
|
|
|
}
|
|
|
|
|
2014-03-16 14:06:37 +00:00
|
|
|
static gpointer
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_map_cpu_access (GstGLMemory * gl_mem, GstMapInfo * info, gsize size)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
2015-07-20 08:19:02 +00:00
|
|
|
gpointer data = NULL;
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
if (!gst_gl_base_memory_alloc_data (GST_GL_BASE_MEMORY_CAST (gl_mem)))
|
|
|
|
return NULL;
|
2012-09-16 11:36:09 +00:00
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
if (!data)
|
2015-12-14 02:43:59 +00:00
|
|
|
data = _gl_tex_download_get_tex_image (gl_mem, info, size);
|
2015-06-10 06:36:15 +00:00
|
|
|
|
|
|
|
if (!data)
|
2015-12-14 02:43:59 +00:00
|
|
|
data = _gl_tex_download_read_pixels (gl_mem, info, size);
|
2015-06-10 06:36:15 +00:00
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
static void
|
|
|
|
_upload_cpu_write (GstGLMemory * gl_mem, GstMapInfo * info, gsize maxsize)
|
2016-01-07 07:47:37 +00:00
|
|
|
{
|
|
|
|
gst_gl_memory_texsubimage (gl_mem, gl_mem->mem.data);
|
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_texsubimage:
|
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
* @read_pointer: the data pointer to pass to glTexSubImage
|
|
|
|
*
|
|
|
|
* See gst_gl_memory_read_pixels() for what @read_pointer signifies.
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2016-01-07 07:47:37 +00:00
|
|
|
void
|
|
|
|
gst_gl_memory_texsubimage (GstGLMemory * gl_mem, gpointer read_pointer)
|
2015-06-10 06:36:15 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLContext *context = gl_mem->mem.context;
|
|
|
|
const GstGLFuncs *gl;
|
|
|
|
GLenum gl_format, gl_type, gl_target;
|
2015-06-10 06:36:15 +00:00
|
|
|
gpointer data;
|
2015-12-14 02:43:59 +00:00
|
|
|
gsize plane_start;
|
2012-09-16 11:36:09 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
if (!GST_MEMORY_FLAG_IS_SET (gl_mem, GST_GL_BASE_MEMORY_TRANSFER_NEED_UPLOAD))
|
|
|
|
return;
|
2015-01-27 01:15:43 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gl = context->gl_vtable;
|
2015-10-28 13:44:26 +00:00
|
|
|
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
gst_gl_format_type_from_sized_gl_format (gl_mem->tex_format, &gl_format,
|
|
|
|
&gl_type);
|
2015-06-22 13:06:04 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gl_target = gst_gl_texture_target_to_gl (gl_mem->tex_target);
|
2014-11-22 16:25:23 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
if (USING_OPENGL (context) || USING_GLES3 (context)
|
|
|
|
|| USING_OPENGL3 (context)) {
|
|
|
|
gl->PixelStorei (GL_UNPACK_ROW_LENGTH, gl_mem->unpack_length);
|
|
|
|
} else if (USING_GLES2 (context)) {
|
|
|
|
gl->PixelStorei (GL_UNPACK_ALIGNMENT, gl_mem->unpack_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_CAT_LOG (GST_CAT_GL_MEMORY, "upload for texture id:%u, %ux%u",
|
|
|
|
gl_mem->tex_id, gl_mem->tex_width, GL_MEM_HEIGHT (gl_mem));
|
2012-09-16 11:36:09 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
/* find the start of the plane data including padding */
|
|
|
|
plane_start =
|
|
|
|
gst_gl_get_plane_start (&gl_mem->info, &gl_mem->valign,
|
|
|
|
gl_mem->plane) + gl_mem->mem.mem.offset;
|
|
|
|
|
2016-01-07 07:47:37 +00:00
|
|
|
data = (gpointer) ((gintptr) plane_start + (gintptr) read_pointer);
|
2015-12-14 02:43:59 +00:00
|
|
|
|
|
|
|
gl->BindTexture (gl_target, gl_mem->tex_id);
|
2016-01-11 02:30:05 +00:00
|
|
|
gst_gl_query_start_log (GST_GL_BASE_MEMORY_CAST (gl_mem)->query,
|
|
|
|
GST_CAT_GL_MEMORY, GST_LEVEL_LOG, NULL, "%s", "glTexSubImage took");
|
2015-12-14 02:43:59 +00:00
|
|
|
gl->TexSubImage2D (gl_target, 0, 0, 0, gl_mem->tex_width,
|
|
|
|
GL_MEM_HEIGHT (gl_mem), gl_format, gl_type, data);
|
2016-01-11 02:30:05 +00:00
|
|
|
gst_gl_query_end (GST_GL_BASE_MEMORY_CAST (gl_mem)->query);
|
2015-12-14 02:43:59 +00:00
|
|
|
|
|
|
|
/* Reset to default values */
|
2016-03-17 11:43:12 +00:00
|
|
|
if (USING_OPENGL (context) || USING_GLES3 (context)
|
|
|
|
|| USING_OPENGL3 (context)) {
|
2015-12-14 02:43:59 +00:00
|
|
|
gl->PixelStorei (GL_UNPACK_ROW_LENGTH, 0);
|
|
|
|
} else if (USING_GLES2 (context)) {
|
|
|
|
gl->PixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
gl->BindTexture (gl_target, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
_default_gl_tex_map (GstGLMemory * gl_mem, GstMapInfo * info, gsize size)
|
|
|
|
{
|
|
|
|
if ((info->flags & GST_MAP_GL) == GST_MAP_GL) {
|
|
|
|
_upload_cpu_write (gl_mem, info, size);
|
|
|
|
return &gl_mem->tex_id;
|
|
|
|
} else {
|
|
|
|
return _gl_tex_map_cpu_access (gl_mem, info, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
_gl_tex_map (GstGLMemory * gl_mem, GstMapInfo * info, gsize maxsize)
|
|
|
|
{
|
|
|
|
GstGLMemoryAllocatorClass *alloc_class;
|
|
|
|
gpointer data;
|
|
|
|
|
|
|
|
alloc_class = GST_GL_MEMORY_ALLOCATOR_GET_CLASS (gl_mem->mem.mem.allocator);
|
|
|
|
|
|
|
|
if ((info->flags & GST_MAP_GL) == GST_MAP_GL) {
|
|
|
|
if (gl_mem->tex_target == GST_GL_TEXTURE_TARGET_EXTERNAL_OES)
|
|
|
|
return &gl_mem->tex_id;
|
2012-09-16 11:36:09 +00:00
|
|
|
} else { /* not GL */
|
2015-10-28 13:44:26 +00:00
|
|
|
if (gl_mem->tex_target == GST_GL_TEXTURE_TARGET_EXTERNAL_OES) {
|
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY, "Cannot map External OES textures");
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-09-16 11:36:09 +00:00
|
|
|
}
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
g_return_val_if_fail (alloc_class->map != NULL, NULL);
|
|
|
|
data = alloc_class->map (GST_GL_BASE_MEMORY_CAST (gl_mem), info, maxsize);
|
|
|
|
|
2012-09-16 11:36:09 +00:00
|
|
|
return data;
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
static void
|
2015-12-14 02:43:59 +00:00
|
|
|
_default_gl_tex_unmap (GstGLMemory * gl_mem, GstMapInfo * info)
|
2015-01-27 00:53:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-03-16 14:06:37 +00:00
|
|
|
static void
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_unmap (GstGLMemory * gl_mem, GstMapInfo * info)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLMemoryAllocatorClass *alloc_class;
|
|
|
|
|
|
|
|
alloc_class = GST_GL_MEMORY_ALLOCATOR_GET_CLASS (gl_mem->mem.mem.allocator);
|
|
|
|
g_return_if_fail (alloc_class->unmap != NULL);
|
|
|
|
|
|
|
|
alloc_class->unmap (GST_GL_BASE_MEMORY_CAST (gl_mem), info);
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
2017-07-28 10:00:12 +00:00
|
|
|
* gst_gl_memory_copy_teximage:
|
2018-02-05 03:58:06 +00:00
|
|
|
* @src: the source #GstGLMemory
|
2016-03-06 08:32:21 +00:00
|
|
|
* @tex_id: the destination texture id
|
|
|
|
* @out_target: the destination #GstGLTextureTarget
|
2017-03-13 03:28:47 +00:00
|
|
|
* @out_tex_format: the destination #GstGLFormat
|
2016-03-06 08:32:21 +00:00
|
|
|
* @out_width: the destination width
|
|
|
|
* @out_height: the destination height
|
|
|
|
*
|
|
|
|
* Copies the texture in #GstGLMemory into the texture specified by @tex_id,
|
2017-03-13 03:28:47 +00:00
|
|
|
* @out_target, @out_tex_format, @out_width and @out_height.
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Returns: whether the copy succeeded.
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
gboolean
|
|
|
|
gst_gl_memory_copy_teximage (GstGLMemory * src, guint tex_id,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLTextureTarget out_target, GstGLFormat out_tex_format,
|
2015-12-14 02:43:59 +00:00
|
|
|
gint out_width, gint out_height)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
2014-04-02 06:43:52 +00:00
|
|
|
const GstGLFuncs *gl;
|
2017-03-13 03:28:47 +00:00
|
|
|
guint out_tex_target;
|
2015-12-14 02:43:59 +00:00
|
|
|
GstMapInfo sinfo;
|
|
|
|
guint src_tex_id;
|
2017-02-22 12:09:45 +00:00
|
|
|
guint fbo[2];
|
|
|
|
guint n_fbos;
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gl = src->mem.context->gl_vtable;
|
|
|
|
out_tex_target = gst_gl_texture_target_to_gl (out_target);
|
2013-09-15 04:23:43 +00:00
|
|
|
|
2013-01-16 04:21:44 +00:00
|
|
|
if (!gl->GenFramebuffers) {
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY, "Framebuffer objects not supported");
|
2013-09-15 04:23:43 +00:00
|
|
|
goto error;
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2016-06-28 03:51:22 +00:00
|
|
|
if (USING_GLES2 (src->mem.context)
|
2017-03-13 03:28:47 +00:00
|
|
|
&& (src->tex_format == GST_GL_LUMINANCE
|
|
|
|
|| src->tex_format == GST_GL_LUMINANCE_ALPHA)) {
|
2016-06-28 03:51:22 +00:00
|
|
|
GST_CAT_FIXME (GST_CAT_GL_MEMORY,
|
|
|
|
"Cannot copy Luminance/Luminance Alpha textures in GLES");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
if (!gst_memory_map (GST_MEMORY_CAST (src), &sinfo,
|
|
|
|
GST_MAP_READ | GST_MAP_GL)) {
|
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY,
|
|
|
|
"Failed to map source memory for copying");
|
|
|
|
goto error;
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
2016-06-28 03:51:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
src_tex_id = *(guint *) sinfo.data;
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_GL_MEMORY, "copying memory %p, tex %u into "
|
|
|
|
"texture %i", src, src_tex_id, tex_id);
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2013-11-13 12:24:00 +00:00
|
|
|
/* FIXME: try and avoid creating and destroying fbo's every copy... */
|
2017-05-09 09:25:20 +00:00
|
|
|
if (!gl->BlitFramebuffer || (!gl->DrawBuffer && !gl->DrawBuffers)
|
|
|
|
|| !gl->ReadBuffer) {
|
2017-02-22 12:09:45 +00:00
|
|
|
/* create a framebuffer object */
|
|
|
|
n_fbos = 1;
|
|
|
|
gl->GenFramebuffers (n_fbos, &fbo[0]);
|
|
|
|
gl->BindFramebuffer (GL_FRAMEBUFFER, fbo[0]);
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
gl->FramebufferTexture2D (GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
|
|
|
gst_gl_texture_target_to_gl (src->tex_target), src_tex_id, 0);
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2017-05-25 10:06:03 +00:00
|
|
|
if (!gst_gl_context_check_framebuffer_status (src->mem.context,
|
|
|
|
GL_FRAMEBUFFER))
|
2017-02-22 12:09:45 +00:00
|
|
|
goto fbo_error;
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
gl->BindTexture (out_tex_target, tex_id);
|
|
|
|
gst_gl_query_start_log (GST_GL_BASE_MEMORY_CAST (src)->query,
|
|
|
|
GST_CAT_GL_MEMORY, GST_LEVEL_LOG, NULL, "%s", "CopyTexImage2D took");
|
2017-03-13 03:28:47 +00:00
|
|
|
gl->CopyTexImage2D (out_tex_target, 0, out_tex_format, 0, 0, out_width,
|
2017-02-22 12:09:45 +00:00
|
|
|
out_height, 0);
|
|
|
|
gst_gl_query_end (GST_GL_BASE_MEMORY_CAST (src)->query);
|
2014-04-02 06:43:52 +00:00
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
gl->BindTexture (out_tex_target, 0);
|
|
|
|
gl->BindFramebuffer (GL_FRAMEBUFFER, 0);
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
gl->DeleteFramebuffers (n_fbos, &fbo[0]);
|
|
|
|
} else {
|
2017-05-09 09:25:20 +00:00
|
|
|
GLenum multipleRT[] = {
|
|
|
|
GL_COLOR_ATTACHMENT0,
|
|
|
|
GL_COLOR_ATTACHMENT1,
|
|
|
|
GL_COLOR_ATTACHMENT2
|
|
|
|
};
|
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
/* create a framebuffer object */
|
|
|
|
n_fbos = 2;
|
|
|
|
gl->GenFramebuffers (n_fbos, &fbo[0]);
|
|
|
|
|
|
|
|
gl->BindFramebuffer (GL_READ_FRAMEBUFFER, fbo[0]);
|
|
|
|
gl->FramebufferTexture2D (GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
|
|
|
gst_gl_texture_target_to_gl (src->tex_target), src_tex_id, 0);
|
|
|
|
|
2017-05-25 10:06:03 +00:00
|
|
|
if (!gst_gl_context_check_framebuffer_status (src->mem.context,
|
|
|
|
GL_READ_FRAMEBUFFER))
|
2017-02-22 12:09:45 +00:00
|
|
|
goto fbo_error;
|
|
|
|
|
|
|
|
gl->BindFramebuffer (GL_DRAW_FRAMEBUFFER, fbo[1]);
|
|
|
|
|
|
|
|
gl->FramebufferTexture2D (GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
|
|
|
gst_gl_texture_target_to_gl (src->tex_target), tex_id, 0);
|
|
|
|
|
2017-05-25 10:06:03 +00:00
|
|
|
if (!gst_gl_context_check_framebuffer_status (src->mem.context,
|
|
|
|
GL_DRAW_FRAMEBUFFER))
|
2017-02-22 12:09:45 +00:00
|
|
|
goto fbo_error;
|
|
|
|
|
|
|
|
gl->BindTexture (out_tex_target, tex_id);
|
|
|
|
gst_gl_query_start_log (GST_GL_BASE_MEMORY_CAST (src)->query,
|
|
|
|
GST_CAT_GL_MEMORY, GST_LEVEL_LOG, NULL, "%s", "BlitFramebuffer took");
|
|
|
|
gl->ReadBuffer (GL_COLOR_ATTACHMENT0);
|
2017-05-09 09:25:20 +00:00
|
|
|
if (gl->DrawBuffers)
|
|
|
|
gl->DrawBuffers (1, multipleRT);
|
|
|
|
else
|
|
|
|
gl->DrawBuffer (GL_COLOR_ATTACHMENT0);
|
2017-02-22 12:09:45 +00:00
|
|
|
gl->BlitFramebuffer (0, 0, out_width, out_height,
|
|
|
|
0, 0, out_width, out_height, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
|
|
|
gst_gl_query_end (GST_GL_BASE_MEMORY_CAST (src)->query);
|
|
|
|
|
|
|
|
gl->BindTexture (out_tex_target, 0);
|
|
|
|
gl->BindFramebuffer (GL_DRAW_FRAMEBUFFER, 0);
|
|
|
|
gl->BindFramebuffer (GL_READ_FRAMEBUFFER, 0);
|
|
|
|
|
|
|
|
gl->DeleteFramebuffers (n_fbos, &fbo[0]);
|
2017-05-09 09:25:20 +00:00
|
|
|
|
|
|
|
if (gl->DrawBuffer)
|
2017-06-28 03:17:37 +00:00
|
|
|
gl->DrawBuffer (GL_BACK);
|
2017-02-22 12:09:45 +00:00
|
|
|
}
|
2012-08-08 06:08:40 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_memory_unmap (GST_MEMORY_CAST (src), &sinfo);
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
return TRUE;
|
2013-09-15 04:23:43 +00:00
|
|
|
|
2017-02-22 12:09:45 +00:00
|
|
|
fbo_error:
|
|
|
|
{
|
|
|
|
gl->BindTexture (out_tex_target, 0);
|
|
|
|
if (!gl->BlitFramebuffer) {
|
|
|
|
gl->BindFramebuffer (GL_FRAMEBUFFER, 0);
|
|
|
|
} else {
|
|
|
|
gl->BindFramebuffer (GL_DRAW_FRAMEBUFFER, 0);
|
|
|
|
gl->BindFramebuffer (GL_READ_FRAMEBUFFER, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
gl->DeleteFramebuffers (n_fbos, &fbo[0]);
|
|
|
|
|
|
|
|
gst_memory_unmap (GST_MEMORY_CAST (src), &sinfo);
|
|
|
|
}
|
2013-09-15 04:23:43 +00:00
|
|
|
error:
|
2015-12-14 02:43:59 +00:00
|
|
|
return FALSE;
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
static void
|
|
|
|
_gl_tex_copy_thread (GstGLContext * context, gpointer data)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLMemoryCopyParams *copy_params;
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
copy_params = (GstGLMemoryCopyParams *) data;
|
|
|
|
|
|
|
|
if (!copy_params->tex_id) {
|
|
|
|
guint internal_format, out_gl_format, out_gl_type, out_tex_target;
|
|
|
|
|
|
|
|
out_tex_target = gst_gl_texture_target_to_gl (copy_params->tex_target);
|
gl/memory: store the internal format as the texture format
Instead of having special cases at each GL texture creation, upload,
readback or copy for all non-8-bits-per-components.
Simply store the more specific format and retrieve the generic
component/type tuple from that.
Introduce a helper function for retrieving the generic GL format (RGBA,
RGB, RG, R, L, A) and type (BYTE, SHORT, SHORT_5_6_5) from a sized
GL format enum (RGBA8, RGB565, RG8, etc).
2018-03-14 07:12:21 +00:00
|
|
|
internal_format = copy_params->src->tex_format;
|
|
|
|
gst_gl_format_type_from_sized_gl_format (internal_format, &out_gl_format,
|
|
|
|
&out_gl_type);
|
2015-12-14 02:43:59 +00:00
|
|
|
|
|
|
|
copy_params->tex_id =
|
|
|
|
_new_texture (context, out_tex_target,
|
|
|
|
internal_format, out_gl_format, out_gl_type, copy_params->out_width,
|
|
|
|
copy_params->out_height);
|
2015-10-28 13:44:26 +00:00
|
|
|
}
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
copy_params->result = gst_gl_memory_copy_teximage (copy_params->src,
|
2017-03-13 03:28:47 +00:00
|
|
|
copy_params->tex_id, copy_params->tex_target, copy_params->tex_format,
|
2015-12-14 02:43:59 +00:00
|
|
|
copy_params->out_width, copy_params->out_height);
|
|
|
|
}
|
2015-02-25 23:07:03 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
static GstMemory *
|
|
|
|
_default_gl_tex_copy (GstGLMemory * src, gssize offset, gssize size)
|
|
|
|
{
|
2015-12-16 07:36:13 +00:00
|
|
|
GstAllocationParams params = { 0, GST_MEMORY_CAST (src)->align, 0, 0 };
|
|
|
|
GstGLBaseMemoryAllocator *base_mem_allocator;
|
|
|
|
GstAllocator *allocator;
|
|
|
|
GstGLMemory *dest = NULL;
|
|
|
|
|
|
|
|
allocator = GST_MEMORY_CAST (src)->allocator;
|
|
|
|
base_mem_allocator = (GstGLBaseMemoryAllocator *) allocator;
|
|
|
|
|
|
|
|
if (src->tex_target == GST_GL_TEXTURE_TARGET_EXTERNAL_OES) {
|
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY, "Cannot copy External OES textures");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If not doing a full copy, then copy to sysmem, the 2D represention of the
|
|
|
|
* texture would become wrong */
|
|
|
|
if (offset > 0 || size < GST_MEMORY_CAST (src)->size) {
|
|
|
|
return base_mem_allocator->fallback_mem_copy (GST_MEMORY_CAST (src), offset,
|
|
|
|
size);
|
|
|
|
}
|
|
|
|
|
|
|
|
dest = g_new0 (GstGLMemory, 1);
|
|
|
|
|
|
|
|
gst_gl_memory_init (dest, allocator, NULL, src->mem.context, src->tex_target,
|
2017-03-13 03:28:47 +00:00
|
|
|
src->tex_format, ¶ms, &src->info, src->plane, &src->valign, NULL,
|
|
|
|
NULL);
|
2015-12-16 07:36:13 +00:00
|
|
|
|
2016-06-28 03:51:22 +00:00
|
|
|
if (!GST_MEMORY_FLAG_IS_SET (src, GST_GL_BASE_MEMORY_TRANSFER_NEED_UPLOAD)) {
|
2015-12-16 07:36:13 +00:00
|
|
|
GstMapInfo dinfo;
|
|
|
|
|
|
|
|
if (!gst_memory_map (GST_MEMORY_CAST (dest), &dinfo,
|
|
|
|
GST_MAP_WRITE | GST_MAP_GL)) {
|
|
|
|
GST_CAT_WARNING (GST_CAT_GL_MEMORY,
|
2016-06-28 03:51:22 +00:00
|
|
|
"Failed not map destination for writing");
|
2015-12-16 07:36:13 +00:00
|
|
|
gst_memory_unref (GST_MEMORY_CAST (dest));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gst_gl_memory_copy_into ((GstGLMemory *) src,
|
|
|
|
((GstGLMemory *) dest)->tex_id, src->tex_target,
|
2017-03-13 03:28:47 +00:00
|
|
|
src->tex_format, src->tex_width, GL_MEM_HEIGHT (src))) {
|
2015-12-16 07:36:13 +00:00
|
|
|
GST_CAT_WARNING (GST_CAT_GL_MEMORY, "Could not copy GL Memory");
|
|
|
|
gst_memory_unmap (GST_MEMORY_CAST (dest), &dinfo);
|
2016-06-28 03:51:22 +00:00
|
|
|
goto memcpy;
|
2015-12-16 07:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_memory_unmap (GST_MEMORY_CAST (dest), &dinfo);
|
2016-06-28 03:51:22 +00:00
|
|
|
} else {
|
|
|
|
memcpy:
|
|
|
|
if (!gst_gl_base_memory_memcpy ((GstGLBaseMemory *) src,
|
|
|
|
(GstGLBaseMemory *) dest, offset, size)) {
|
|
|
|
GST_CAT_WARNING (GST_CAT_GL_MEMORY, "Could not copy GL Memory");
|
|
|
|
gst_memory_unref (GST_MEMORY_CAST (dest));
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-12-16 07:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (GstMemory *) dest;
|
2015-12-14 02:43:59 +00:00
|
|
|
}
|
2015-02-25 23:07:03 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
static GstMemory *
|
|
|
|
_gl_tex_copy (GstGLMemory * src, gssize offset, gssize size)
|
|
|
|
{
|
|
|
|
GstGLMemoryAllocatorClass *alloc_class;
|
2015-02-25 23:07:03 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
alloc_class = GST_GL_MEMORY_ALLOCATOR_GET_CLASS (src->mem.mem.allocator);
|
2013-07-03 04:13:00 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
if (src->tex_target == GST_GL_TEXTURE_TARGET_EXTERNAL_OES) {
|
|
|
|
GST_CAT_ERROR (GST_CAT_GL_MEMORY, "Cannot copy External OES textures");
|
|
|
|
return NULL;
|
2012-09-16 11:36:09 +00:00
|
|
|
}
|
2012-07-06 08:22:22 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
g_return_val_if_fail (alloc_class->copy, NULL);
|
|
|
|
return (GstMemory *) alloc_class->copy (GST_GL_BASE_MEMORY_CAST (src), offset,
|
|
|
|
size);
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2014-03-16 14:06:37 +00:00
|
|
|
static GstMemory *
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_alloc (GstAllocator * allocator, gsize size,
|
2012-08-08 06:08:40 +00:00
|
|
|
GstAllocationParams * params)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
2015-12-16 07:39:32 +00:00
|
|
|
g_warning ("Use gst_gl_base_memory_alloc to allocate from this allocator");
|
2012-07-07 15:09:56 +00:00
|
|
|
|
2012-08-08 06:08:40 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-04-02 06:43:52 +00:00
|
|
|
static void
|
2015-12-14 02:43:59 +00:00
|
|
|
_gl_tex_destroy (GstGLMemory * gl_mem)
|
2014-04-02 06:43:52 +00:00
|
|
|
{
|
2015-06-10 06:36:15 +00:00
|
|
|
const GstGLFuncs *gl = gl_mem->mem.context->gl_vtable;
|
2014-04-02 06:43:52 +00:00
|
|
|
|
|
|
|
if (gl_mem->tex_id && !gl_mem->texture_wrapped)
|
|
|
|
gl->DeleteTextures (1, &gl_mem->tex_id);
|
2015-06-10 06:36:15 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
static GstGLMemory *
|
|
|
|
_default_gl_tex_alloc (GstGLMemoryAllocator * allocator,
|
|
|
|
GstGLVideoAllocationParams * params)
|
|
|
|
{
|
2015-12-30 01:09:29 +00:00
|
|
|
guint alloc_flags = params->parent.alloc_flags;
|
2015-12-16 07:20:17 +00:00
|
|
|
GstGLMemory *mem;
|
|
|
|
|
2015-12-30 01:09:29 +00:00
|
|
|
g_return_val_if_fail (alloc_flags & GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO,
|
|
|
|
NULL);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
|
|
|
mem = g_new0 (GstGLMemory, 1);
|
|
|
|
|
2015-12-30 01:09:29 +00:00
|
|
|
if (alloc_flags & GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_GPU_HANDLE) {
|
2016-05-03 14:19:44 +00:00
|
|
|
mem->tex_id = GPOINTER_TO_UINT (params->parent.gl_handle);
|
2015-12-16 07:20:17 +00:00
|
|
|
mem->texture_wrapped = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_gl_memory_init (mem, GST_ALLOCATOR_CAST (allocator), NULL,
|
2017-03-13 03:28:47 +00:00
|
|
|
params->parent.context, params->target, params->tex_format,
|
2016-06-28 03:51:22 +00:00
|
|
|
params->parent.alloc_params, params->v_info, params->plane,
|
|
|
|
params->valign, params->parent.user_data, params->parent.notify);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
2015-12-30 01:09:29 +00:00
|
|
|
if (alloc_flags & GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_GPU_HANDLE) {
|
2015-12-16 07:20:17 +00:00
|
|
|
GST_MINI_OBJECT_FLAG_SET (mem, GST_GL_BASE_MEMORY_TRANSFER_NEED_DOWNLOAD);
|
|
|
|
}
|
2015-12-30 01:09:29 +00:00
|
|
|
if (alloc_flags & GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_SYSMEM) {
|
2015-12-16 07:20:17 +00:00
|
|
|
mem->mem.data = params->parent.wrapped_data;
|
|
|
|
GST_MINI_OBJECT_FLAG_SET (mem, GST_GL_BASE_MEMORY_TRANSFER_NEED_UPLOAD);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2015-06-10 06:36:15 +00:00
|
|
|
static void
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_memory_allocator_class_init (GstGLMemoryAllocatorClass * klass)
|
2015-06-10 06:36:15 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLBaseMemoryAllocatorClass *gl_base;
|
2015-06-10 06:36:15 +00:00
|
|
|
GstAllocatorClass *allocator_class;
|
2012-09-16 11:36:09 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gl_base = (GstGLBaseMemoryAllocatorClass *) klass;
|
2015-06-10 06:36:15 +00:00
|
|
|
allocator_class = (GstAllocatorClass *) klass;
|
2015-01-27 01:15:43 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
klass->map = (GstGLBaseMemoryAllocatorMapFunction) _default_gl_tex_map;
|
|
|
|
klass->unmap = (GstGLBaseMemoryAllocatorUnmapFunction) _default_gl_tex_unmap;
|
|
|
|
klass->copy = (GstGLBaseMemoryAllocatorCopyFunction) _default_gl_tex_copy;
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
gl_base->alloc =
|
|
|
|
(GstGLBaseMemoryAllocatorAllocFunction) _default_gl_tex_alloc;
|
2015-12-14 02:43:59 +00:00
|
|
|
gl_base->create = (GstGLBaseMemoryAllocatorCreateFunction) _gl_tex_create;
|
|
|
|
gl_base->map = (GstGLBaseMemoryAllocatorMapFunction) _gl_tex_map;
|
|
|
|
gl_base->unmap = (GstGLBaseMemoryAllocatorUnmapFunction) _gl_tex_unmap;
|
|
|
|
gl_base->copy = (GstGLBaseMemoryAllocatorCopyFunction) _gl_tex_copy;
|
|
|
|
gl_base->destroy = (GstGLBaseMemoryAllocatorDestroyFunction) _gl_tex_destroy;
|
2015-06-10 06:36:15 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
allocator_class->alloc = _gl_tex_alloc;
|
2015-06-10 06:36:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_memory_allocator_init (GstGLMemoryAllocator * allocator)
|
2015-06-10 06:36:15 +00:00
|
|
|
{
|
|
|
|
GstAllocator *alloc = GST_ALLOCATOR_CAST (allocator);
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
alloc->mem_type = GST_GL_MEMORY_ALLOCATOR_NAME;
|
2015-06-10 06:36:15 +00:00
|
|
|
|
|
|
|
GST_OBJECT_FLAG_SET (allocator, GST_ALLOCATOR_FLAG_CUSTOM_ALLOC);
|
2012-07-06 08:22:22 +00:00
|
|
|
}
|
|
|
|
|
2013-11-23 11:56:10 +00:00
|
|
|
/**
|
2015-12-14 02:43:59 +00:00
|
|
|
* gst_gl_memory_copy_into:
|
2013-11-23 11:56:10 +00:00
|
|
|
* @gl_mem:a #GstGLMemory
|
|
|
|
* @tex_id:OpenGL texture id
|
2016-03-06 08:32:21 +00:00
|
|
|
* @target: the #GstGLTextureTarget
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat
|
2014-04-02 06:43:52 +00:00
|
|
|
* @width: width of @tex_id
|
|
|
|
* @height: height of @tex_id
|
2013-11-23 11:56:10 +00:00
|
|
|
*
|
2014-04-02 06:43:52 +00:00
|
|
|
* Copies @gl_mem into the texture specfified by @tex_id. The format of @tex_id
|
2017-03-13 03:28:47 +00:00
|
|
|
* is specified by @tex_format, @width and @height.
|
2014-04-02 06:43:52 +00:00
|
|
|
*
|
2013-11-23 11:56:10 +00:00
|
|
|
* Returns: Whether the copy suceeded
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.8
|
2013-11-23 11:56:10 +00:00
|
|
|
*/
|
2013-11-13 12:24:00 +00:00
|
|
|
gboolean
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_memory_copy_into (GstGLMemory * gl_mem, guint tex_id,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLTextureTarget target, GstGLFormat tex_format, gint width, gint height)
|
2013-11-13 12:24:00 +00:00
|
|
|
{
|
|
|
|
GstGLMemoryCopyParams copy_params;
|
|
|
|
|
|
|
|
copy_params.src = gl_mem;
|
|
|
|
copy_params.tex_id = tex_id;
|
2015-12-14 02:43:59 +00:00
|
|
|
copy_params.tex_target = target;
|
2017-03-13 03:28:47 +00:00
|
|
|
copy_params.tex_format = tex_format;
|
2014-04-02 06:43:52 +00:00
|
|
|
copy_params.out_width = width;
|
|
|
|
copy_params.out_height = height;
|
2013-11-13 12:24:00 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_context_thread_add (gl_mem->mem.context, _gl_tex_copy_thread,
|
2013-11-13 12:24:00 +00:00
|
|
|
©_params);
|
|
|
|
|
|
|
|
return copy_params.result;
|
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_get_texture_width:
|
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
*
|
|
|
|
* Returns: the texture width of @gl_mem
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
gint
|
|
|
|
gst_gl_memory_get_texture_width (GstGLMemory * gl_mem)
|
2015-06-11 08:26:50 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
g_return_val_if_fail (gst_is_gl_memory ((GstMemory *) gl_mem), 0);
|
2015-06-11 08:26:50 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
return gl_mem->tex_width;
|
2015-06-11 08:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_get_texture_height:
|
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
*
|
|
|
|
* Returns: the texture height of @gl_mem
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
gint
|
|
|
|
gst_gl_memory_get_texture_height (GstGLMemory * gl_mem)
|
2015-06-11 08:26:50 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
g_return_val_if_fail (gst_is_gl_memory ((GstMemory *) gl_mem), 0);
|
2015-06-11 08:26:50 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
return _get_plane_height (&gl_mem->info, gl_mem->plane);
|
2015-06-11 08:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
2017-03-13 03:28:47 +00:00
|
|
|
* gst_gl_memory_get_texture_format:
|
2016-03-06 08:32:21 +00:00
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
*
|
2017-03-13 03:28:47 +00:00
|
|
|
* Returns: the #GstGLFormat of @gl_mem
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
2017-03-13 03:28:47 +00:00
|
|
|
* Since: 1.12
|
2016-03-06 08:32:21 +00:00
|
|
|
*/
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat
|
|
|
|
gst_gl_memory_get_texture_format (GstGLMemory * gl_mem)
|
2015-06-11 08:26:50 +00:00
|
|
|
{
|
2015-12-14 02:43:59 +00:00
|
|
|
g_return_val_if_fail (gst_is_gl_memory ((GstMemory *) gl_mem), 0);
|
2015-06-11 08:26:50 +00:00
|
|
|
|
2017-03-13 03:28:47 +00:00
|
|
|
return gl_mem->tex_format;
|
2015-06-11 08:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_get_texture_target:
|
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
*
|
|
|
|
* Returns: the #GstGLTextureTarget of @gl_mem
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
GstGLTextureTarget
|
|
|
|
gst_gl_memory_get_texture_target (GstGLMemory * gl_mem)
|
2014-07-31 04:07:29 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_is_gl_memory ((GstMemory *) gl_mem), 0);
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
return gl_mem->tex_target;
|
2014-07-31 04:07:29 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_get_texture_id:
|
|
|
|
* @gl_mem: a #GstGLMemory
|
|
|
|
*
|
|
|
|
* Returns: the OpenGL texture handle of @gl_mem
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-14 02:43:59 +00:00
|
|
|
guint
|
|
|
|
gst_gl_memory_get_texture_id (GstGLMemory * gl_mem)
|
2014-07-31 04:07:29 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_is_gl_memory ((GstMemory *) gl_mem), 0);
|
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
return gl_mem->tex_id;
|
2014-07-31 04:07:29 +00:00
|
|
|
}
|
|
|
|
|
2012-07-06 08:22:22 +00:00
|
|
|
/**
|
2015-12-14 02:43:59 +00:00
|
|
|
* gst_gl_memory_init_once:
|
2012-07-06 08:22:22 +00:00
|
|
|
*
|
2015-12-14 02:43:59 +00:00
|
|
|
* Initializes the GL Base Texture allocator. It is safe to call this function
|
2012-08-08 06:08:40 +00:00
|
|
|
* multiple times. This must be called before any other GstGLMemory operation.
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.4
|
2012-07-06 08:22:22 +00:00
|
|
|
*/
|
|
|
|
void
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_memory_init_once (void)
|
2012-07-06 08:22:22 +00:00
|
|
|
{
|
|
|
|
static volatile gsize _init = 0;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&_init)) {
|
2015-12-14 02:43:59 +00:00
|
|
|
gst_gl_base_memory_init_once ();
|
2012-07-07 15:09:56 +00:00
|
|
|
|
2015-12-14 02:43:59 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (GST_CAT_GL_MEMORY, "glbasetexture", 0,
|
|
|
|
"OpenGL Base Texture Memory");
|
2015-12-16 07:20:17 +00:00
|
|
|
|
|
|
|
_gl_memory_allocator = g_object_new (GST_TYPE_GL_MEMORY_ALLOCATOR, NULL);
|
2017-05-15 17:31:31 +00:00
|
|
|
gst_object_ref_sink (_gl_memory_allocator);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
|
|
|
gst_allocator_register (GST_GL_MEMORY_ALLOCATOR_NAME, _gl_memory_allocator);
|
|
|
|
|
2012-07-06 08:22:22 +00:00
|
|
|
g_once_init_leave (&_init, 1);
|
|
|
|
}
|
|
|
|
}
|
2012-08-08 06:08:40 +00:00
|
|
|
|
2012-09-16 11:36:09 +00:00
|
|
|
/**
|
|
|
|
* gst_is_gl_memory:
|
|
|
|
* @mem:a #GstMemory
|
2017-03-08 18:01:13 +00:00
|
|
|
*
|
2012-09-27 05:53:46 +00:00
|
|
|
* Returns: whether the memory at @mem is a #GstGLMemory
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.4
|
2012-09-16 11:36:09 +00:00
|
|
|
*/
|
2012-08-08 06:08:40 +00:00
|
|
|
gboolean
|
|
|
|
gst_is_gl_memory (GstMemory * mem)
|
|
|
|
{
|
2015-06-10 06:36:15 +00:00
|
|
|
return mem != NULL && mem->allocator != NULL
|
2015-12-14 02:43:59 +00:00
|
|
|
&& g_type_is_a (G_OBJECT_TYPE (mem->allocator),
|
|
|
|
GST_TYPE_GL_MEMORY_ALLOCATOR);
|
2014-04-02 06:43:52 +00:00
|
|
|
}
|
2015-12-16 07:20:17 +00:00
|
|
|
|
2017-01-10 08:58:48 +00:00
|
|
|
G_DEFINE_BOXED_TYPE (GstGLVideoAllocationParams, gst_gl_video_allocation_params,
|
|
|
|
(GBoxedCopyFunc) gst_gl_allocation_params_copy,
|
|
|
|
(GBoxedFreeFunc) gst_gl_allocation_params_free);
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
static void
|
|
|
|
_gst_gl_video_allocation_params_set_video_alignment (GstGLVideoAllocationParams
|
|
|
|
* params, GstVideoAlignment * valign)
|
|
|
|
{
|
|
|
|
g_return_if_fail (params != NULL);
|
|
|
|
|
|
|
|
if (!params->valign)
|
|
|
|
params->valign = g_new0 (GstVideoAlignment, 1);
|
|
|
|
|
|
|
|
if (valign) {
|
|
|
|
*params->valign = *valign;
|
|
|
|
} else {
|
|
|
|
gst_video_alignment_reset (params->valign);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
2018-02-05 03:58:06 +00:00
|
|
|
* gst_gl_video_allocation_params_init_full: (skip)
|
2016-03-06 08:32:21 +00:00
|
|
|
* @params: a #GstGLVideoAllocationParams to initialize
|
|
|
|
* @struct_size: the size of the struct in @params
|
|
|
|
* @alloc_flags: some allocation flags
|
|
|
|
* @copy: a copy function
|
|
|
|
* @free: a free function
|
|
|
|
* @context: a #GstGLContext
|
|
|
|
* @alloc_params: (allow-none): the #GstAllocationParams for @wrapped_data
|
|
|
|
* @v_info: the #GstVideoInfo for @wrapped_data
|
|
|
|
* @plane: the video plane @wrapped_data represents
|
|
|
|
* @valign: (allow-none): any #GstVideoAlignment applied to symem mappings of @wrapped_data
|
|
|
|
* @target: the #GstGLTextureTarget
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat
|
2016-03-06 08:32:21 +00:00
|
|
|
* @wrapped_data: (allow-none): the optional data pointer to wrap
|
|
|
|
* @gl_handle: the optional OpenGL handle to wrap or 0
|
|
|
|
* @user_data: (allow-none): user data to call @notify with
|
|
|
|
* @notify: (allow-none): a #GDestroyNotify
|
|
|
|
*
|
|
|
|
* Intended for subclass usage
|
|
|
|
*
|
|
|
|
* Returns: initializes @params with the parameters specified
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
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,
|
|
|
|
GstAllocationParams * alloc_params, GstVideoInfo * v_info,
|
|
|
|
guint plane, GstVideoAlignment * valign, GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format, gpointer wrapped_data, gpointer gl_handle,
|
2016-06-28 03:51:22 +00:00
|
|
|
gpointer user_data, GDestroyNotify notify)
|
2015-12-16 07:20:17 +00:00
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (params != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (copy != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (free != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_GL_CONTEXT (context), FALSE);
|
|
|
|
g_return_val_if_fail (v_info != NULL, FALSE);
|
|
|
|
|
|
|
|
memset (params, 0, sizeof (*params));
|
|
|
|
|
|
|
|
if (!gst_gl_allocation_params_init ((GstGLAllocationParams *) params,
|
|
|
|
struct_size, alloc_flags, copy, free, context, 0, alloc_params,
|
2015-12-17 04:23:13 +00:00
|
|
|
wrapped_data, gl_handle, user_data, notify))
|
2015-12-16 07:20:17 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
params->v_info = g_new0 (GstVideoInfo, 1);
|
|
|
|
*params->v_info = *v_info;
|
|
|
|
for (i = 0; i < GST_VIDEO_MAX_PLANES; i++) {
|
|
|
|
params->v_info->offset[i] = v_info->offset[i];
|
|
|
|
params->v_info->stride[i] = v_info->stride[i];
|
|
|
|
}
|
|
|
|
_gst_gl_video_allocation_params_set_video_alignment (params, valign);
|
|
|
|
params->target = target;
|
2017-03-13 03:28:47 +00:00
|
|
|
params->tex_format = tex_format;
|
2015-12-16 07:20:17 +00:00
|
|
|
params->plane = plane;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gl_video_allocation_params_new:
|
|
|
|
* @context: a #GstGLContext
|
2016-06-28 03:51:22 +00:00
|
|
|
* @alloc_params: (allow-none): the #GstAllocationParams for sysmem mappings of the texture
|
|
|
|
* @v_info: the #GstVideoInfo for the texture
|
|
|
|
* @plane: the video plane of @v_info to allocate
|
|
|
|
* @valign: (allow-none): any #GstVideoAlignment applied to symem mappings of the texture
|
|
|
|
* @target: the #GstGLTextureTarget for the created textures
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat for the created textures
|
2015-12-16 07:20:17 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GstGLVideoAllocationParams for allocating #GstGLMemory's
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.8
|
2015-12-16 07:20:17 +00:00
|
|
|
*/
|
|
|
|
GstGLVideoAllocationParams *
|
|
|
|
gst_gl_video_allocation_params_new (GstGLContext * context,
|
|
|
|
GstAllocationParams * alloc_params, GstVideoInfo * v_info, guint plane,
|
2016-06-28 03:51:22 +00:00
|
|
|
GstVideoAlignment * valign, GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format)
|
2015-12-16 07:20:17 +00:00
|
|
|
{
|
|
|
|
GstGLVideoAllocationParams *params = g_new0 (GstGLVideoAllocationParams, 1);
|
|
|
|
|
|
|
|
if (!gst_gl_video_allocation_params_init_full (params,
|
|
|
|
sizeof (GstGLVideoAllocationParams),
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_ALLOC |
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO,
|
|
|
|
(GstGLAllocationParamsCopyFunc)
|
|
|
|
gst_gl_video_allocation_params_copy_data,
|
|
|
|
(GstGLAllocationParamsFreeFunc)
|
|
|
|
gst_gl_video_allocation_params_free_data, context, alloc_params,
|
2017-03-13 03:28:47 +00:00
|
|
|
v_info, plane, valign, target, tex_format, NULL, 0, NULL, NULL)) {
|
2015-12-16 07:20:17 +00:00
|
|
|
g_free (params);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gl_video_allocation_params_new_wrapped_data:
|
|
|
|
* @context: a #GstGLContext
|
|
|
|
* @alloc_params: (allow-none): the #GstAllocationParams for @wrapped_data
|
|
|
|
* @v_info: the #GstVideoInfo for @wrapped_data
|
|
|
|
* @plane: the video plane @wrapped_data represents
|
|
|
|
* @valign: (allow-none): any #GstVideoAlignment applied to symem mappings of @wrapped_data
|
|
|
|
* @target: the #GstGLTextureTarget for @wrapped_data
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat for @wrapped_data
|
2015-12-16 07:20:17 +00:00
|
|
|
* @wrapped_data: the data pointer to wrap
|
|
|
|
* @user_data: (allow-none): user data to call @notify with
|
2015-12-17 04:23:13 +00:00
|
|
|
* @notify: (allow-none): a #GDestroyNotify
|
2015-12-16 07:20:17 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GstGLVideoAllocationParams for wrapping @wrapped_data
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.8
|
2015-12-16 07:20:17 +00:00
|
|
|
*/
|
|
|
|
GstGLVideoAllocationParams *
|
|
|
|
gst_gl_video_allocation_params_new_wrapped_data (GstGLContext * context,
|
|
|
|
GstAllocationParams * alloc_params, GstVideoInfo * v_info, guint plane,
|
|
|
|
GstVideoAlignment * valign, GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format, gpointer wrapped_data, gpointer user_data,
|
2016-06-28 03:51:22 +00:00
|
|
|
GDestroyNotify notify)
|
2015-12-16 07:20:17 +00:00
|
|
|
{
|
|
|
|
GstGLVideoAllocationParams *params = g_new0 (GstGLVideoAllocationParams, 1);
|
|
|
|
|
|
|
|
if (!gst_gl_video_allocation_params_init_full (params,
|
|
|
|
sizeof (GstGLVideoAllocationParams),
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_SYSMEM |
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO,
|
|
|
|
(GstGLAllocationParamsCopyFunc)
|
|
|
|
gst_gl_video_allocation_params_copy_data,
|
|
|
|
(GstGLAllocationParamsFreeFunc)
|
|
|
|
gst_gl_video_allocation_params_free_data, context, alloc_params,
|
2017-03-13 03:28:47 +00:00
|
|
|
v_info, plane, valign, target, tex_format, wrapped_data, 0, user_data,
|
2016-06-28 03:51:22 +00:00
|
|
|
notify)) {
|
2015-12-16 07:20:17 +00:00
|
|
|
g_free (params);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-03 14:19:44 +00:00
|
|
|
* gst_gl_video_allocation_params_new_wrapped_gl_handle:
|
2015-12-16 07:20:17 +00:00
|
|
|
* @context: a #GstGLContext
|
|
|
|
* @alloc_params: (allow-none): the #GstAllocationParams for @tex_id
|
|
|
|
* @v_info: the #GstVideoInfo for @tex_id
|
|
|
|
* @plane: the video plane @tex_id represents
|
|
|
|
* @valign: (allow-none): any #GstVideoAlignment applied to symem mappings of @tex_id
|
|
|
|
* @target: the #GstGLTextureTarget for @tex_id
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat for @tex_id
|
2016-05-03 14:19:44 +00:00
|
|
|
* @gl_handle: the GL handle to wrap
|
2015-12-16 07:20:17 +00:00
|
|
|
* @user_data: (allow-none): user data to call @notify with
|
2015-12-17 04:23:13 +00:00
|
|
|
* @notify: (allow-none): a #GDestroyNotify
|
2015-12-16 07:20:17 +00:00
|
|
|
*
|
2016-05-03 14:19:44 +00:00
|
|
|
* @gl_handle is defined by the specific OpenGL handle being wrapped
|
|
|
|
* For #GstGLMemory and #GstGLMemoryPBO it is an OpenGL texture id.
|
|
|
|
* Other memory types may define it to require a different type of parameter.
|
|
|
|
*
|
|
|
|
* Returns: a new #GstGLVideoAllocationParams for wrapping @gl_handle
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.8
|
2015-12-16 07:20:17 +00:00
|
|
|
*/
|
|
|
|
GstGLVideoAllocationParams *
|
2016-05-03 14:19:44 +00:00
|
|
|
gst_gl_video_allocation_params_new_wrapped_gl_handle (GstGLContext * context,
|
2015-12-16 07:20:17 +00:00
|
|
|
GstAllocationParams * alloc_params, GstVideoInfo * v_info, guint plane,
|
|
|
|
GstVideoAlignment * valign, GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format, gpointer gl_handle, gpointer user_data,
|
2016-06-28 03:51:22 +00:00
|
|
|
GDestroyNotify notify)
|
2015-12-16 07:20:17 +00:00
|
|
|
{
|
|
|
|
GstGLVideoAllocationParams *params = g_new0 (GstGLVideoAllocationParams, 1);
|
|
|
|
|
|
|
|
if (!gst_gl_video_allocation_params_init_full (params,
|
|
|
|
sizeof (GstGLVideoAllocationParams),
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_GPU_HANDLE |
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO,
|
|
|
|
(GstGLAllocationParamsCopyFunc)
|
|
|
|
gst_gl_video_allocation_params_copy_data,
|
|
|
|
(GstGLAllocationParamsFreeFunc)
|
|
|
|
gst_gl_video_allocation_params_free_data, context, alloc_params,
|
2017-03-13 03:28:47 +00:00
|
|
|
v_info, plane, valign, target, tex_format, NULL, gl_handle, user_data,
|
2016-06-28 03:51:22 +00:00
|
|
|
notify)) {
|
2015-12-16 07:20:17 +00:00
|
|
|
g_free (params);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
2016-05-03 14:19:44 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_video_allocation_params_new_wrapped_texture:
|
|
|
|
* @context: a #GstGLContext
|
|
|
|
* @alloc_params: (allow-none): the #GstAllocationParams for @tex_id
|
|
|
|
* @v_info: the #GstVideoInfo for @tex_id
|
|
|
|
* @plane: the video plane @tex_id represents
|
|
|
|
* @valign: (allow-none): any #GstVideoAlignment applied to symem mappings of @tex_id
|
|
|
|
* @target: the #GstGLTextureTarget for @tex_id
|
2017-03-13 03:28:47 +00:00
|
|
|
* @tex_format: the #GstGLFormat for @tex_id
|
2016-05-03 14:19:44 +00:00
|
|
|
* @tex_id: the GL texture to wrap
|
|
|
|
* @user_data: (allow-none): user data to call @notify with
|
|
|
|
* @notify: (allow-none): a #GDestroyNotify
|
|
|
|
*
|
|
|
|
* Returns: a new #GstGLVideoAllocationParams for wrapping @tex_id
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
|
|
|
GstGLVideoAllocationParams *
|
|
|
|
gst_gl_video_allocation_params_new_wrapped_texture (GstGLContext * context,
|
|
|
|
GstAllocationParams * alloc_params, GstVideoInfo * v_info, guint plane,
|
|
|
|
GstVideoAlignment * valign, GstGLTextureTarget target,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat tex_format, guint tex_id, gpointer user_data,
|
2016-06-28 03:51:22 +00:00
|
|
|
GDestroyNotify notify)
|
2016-05-03 14:19:44 +00:00
|
|
|
{
|
|
|
|
return gst_gl_video_allocation_params_new_wrapped_gl_handle (context,
|
2017-03-13 03:28:47 +00:00
|
|
|
alloc_params, v_info, plane, valign, target, tex_format,
|
2016-06-28 03:51:22 +00:00
|
|
|
GUINT_TO_POINTER (tex_id), user_data, notify);
|
2016-05-03 14:19:44 +00:00
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_video_allocation_params_free_data:
|
|
|
|
* @params: a #GstGLVideoAllocationParams
|
|
|
|
*
|
|
|
|
* Unset and free any dynamically allocated resources. Intended for subclass
|
|
|
|
* usage only to chain up at the end of a subclass free function.
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-16 07:20:17 +00:00
|
|
|
void
|
|
|
|
gst_gl_video_allocation_params_free_data (GstGLVideoAllocationParams * params)
|
|
|
|
{
|
|
|
|
g_free (params->v_info);
|
|
|
|
g_free (params->valign);
|
|
|
|
|
|
|
|
gst_gl_allocation_params_free_data (¶ms->parent);
|
|
|
|
}
|
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_video_allocation_params_copy_data:
|
|
|
|
* @src_vid: source #GstGLVideoAllocationParams to copy from
|
|
|
|
* @dest_vid: destination #GstGLVideoAllocationParams to copy into
|
|
|
|
*
|
|
|
|
* Copy and set any dynamically allocated resources in @dest_vid. Intended
|
|
|
|
* for subclass usage only to chain up at the end of a subclass copy function.
|
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-16 07:20:17 +00:00
|
|
|
void
|
|
|
|
gst_gl_video_allocation_params_copy_data (GstGLVideoAllocationParams * src_vid,
|
|
|
|
GstGLVideoAllocationParams * dest_vid)
|
|
|
|
{
|
|
|
|
GstGLAllocationParams *src = (GstGLAllocationParams *) src_vid;
|
|
|
|
GstGLAllocationParams *dest = (GstGLAllocationParams *) dest_vid;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
gst_gl_allocation_params_copy_data (src, dest);
|
|
|
|
|
|
|
|
dest_vid->v_info = g_new0 (GstVideoInfo, 1);
|
|
|
|
*dest_vid->v_info = *src_vid->v_info;
|
|
|
|
for (i = 0; i < GST_VIDEO_MAX_PLANES; i++) {
|
|
|
|
dest_vid->v_info->offset[i] = src_vid->v_info->offset[i];
|
|
|
|
dest_vid->v_info->stride[i] = src_vid->v_info->stride[i];
|
|
|
|
}
|
|
|
|
_gst_gl_video_allocation_params_set_video_alignment (dest_vid,
|
|
|
|
src_vid->valign);
|
|
|
|
dest_vid->target = src_vid->target;
|
2017-03-13 03:28:47 +00:00
|
|
|
dest_vid->tex_format = src_vid->tex_format;
|
2015-12-16 07:20:17 +00:00
|
|
|
dest_vid->plane = src_vid->plane;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gl_memory_setup_buffer:
|
|
|
|
* @allocator: the @GstGLMemoryAllocator to allocate from
|
|
|
|
* @buffer: a #GstBuffer to setup
|
|
|
|
* @params: the #GstGLVideoAllocationParams to allocate with
|
2018-04-20 19:54:23 +00:00
|
|
|
* @tex_formats: (allow-none) (array length=n_wrapped_pointers):
|
|
|
|
* a list of #GstGLFormat's to allocate with.
|
|
|
|
* @wrapped_data: (array length=n_wrapped_pointers) (element-type gpointer):
|
|
|
|
* a list of wrapped data pointers
|
2017-03-13 03:28:47 +00:00
|
|
|
* @n_wrapped_pointers: the number of elements in @tex_formats and @wrapped_data
|
2015-12-16 07:20:17 +00:00
|
|
|
*
|
|
|
|
* Returns: whether the buffer was correctly setup
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.8
|
2015-12-16 07:20:17 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_gl_memory_setup_buffer (GstGLMemoryAllocator * allocator,
|
2016-05-03 15:16:51 +00:00
|
|
|
GstBuffer * buffer, GstGLVideoAllocationParams * params,
|
2017-03-13 03:28:47 +00:00
|
|
|
GstGLFormat * tex_formats, gpointer * wrapped_data,
|
2016-06-28 03:51:22 +00:00
|
|
|
gsize n_wrapped_pointers)
|
2015-12-16 07:20:17 +00:00
|
|
|
{
|
|
|
|
GstGLBaseMemoryAllocator *base_allocator;
|
|
|
|
guint n_mem, i, v, views;
|
2016-01-11 02:30:05 +00:00
|
|
|
guint alloc_flags = params->parent.alloc_flags;
|
2015-12-16 07:20:17 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (params != NULL, FALSE);
|
2016-01-11 02:30:05 +00:00
|
|
|
g_return_val_if_fail (alloc_flags & GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO,
|
|
|
|
FALSE);
|
2015-12-16 07:20:17 +00:00
|
|
|
|
|
|
|
base_allocator = GST_GL_BASE_MEMORY_ALLOCATOR (allocator);
|
|
|
|
n_mem = GST_VIDEO_INFO_N_PLANES (params->v_info);
|
|
|
|
|
|
|
|
if (GST_VIDEO_INFO_MULTIVIEW_MODE (params->v_info) ==
|
|
|
|
GST_VIDEO_MULTIVIEW_MODE_SEPARATED)
|
|
|
|
views = params->v_info->views;
|
|
|
|
else
|
|
|
|
views = 1;
|
|
|
|
|
2017-06-07 16:00:08 +00:00
|
|
|
if (n_wrapped_pointers == views)
|
|
|
|
n_mem = 1;
|
|
|
|
|
|
|
|
/* Sanity check for the code below; there should be as many pointers as the
|
|
|
|
* number of memory we are going to create */
|
2016-05-03 15:16:51 +00:00
|
|
|
g_return_val_if_fail (!wrapped_data
|
2017-06-07 16:00:08 +00:00
|
|
|
|| n_mem * views == n_wrapped_pointers, FALSE);
|
2016-05-03 15:16:51 +00:00
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
for (v = 0; v < views; v++) {
|
|
|
|
for (i = 0; i < n_mem; i++) {
|
|
|
|
GstGLMemory *gl_mem;
|
|
|
|
|
2017-03-13 03:28:47 +00:00
|
|
|
if (tex_formats) {
|
|
|
|
params->tex_format = tex_formats[i];
|
2016-06-28 03:51:22 +00:00
|
|
|
} else {
|
2017-03-13 03:28:47 +00:00
|
|
|
params->tex_format =
|
|
|
|
gst_gl_format_from_video_info (params->parent.context,
|
|
|
|
params->v_info, i);
|
2016-06-28 03:51:22 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 07:20:17 +00:00
|
|
|
params->plane = i;
|
2016-05-03 15:16:51 +00:00
|
|
|
if (alloc_flags & GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_SYSMEM) {
|
|
|
|
g_return_val_if_fail (wrapped_data != NULL, FALSE);
|
|
|
|
params->parent.wrapped_data = wrapped_data[i];
|
|
|
|
} else if (alloc_flags &
|
|
|
|
GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_GPU_HANDLE) {
|
|
|
|
g_return_val_if_fail (wrapped_data != NULL, FALSE);
|
|
|
|
params->parent.gl_handle = wrapped_data[i];
|
|
|
|
}
|
2015-12-16 07:20:17 +00:00
|
|
|
|
|
|
|
if (!(gl_mem = (GstGLMemory *) gst_gl_base_memory_alloc (base_allocator,
|
|
|
|
(GstGLAllocationParams *) params)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gst_buffer_append_memory (buffer, (GstMemory *) gl_mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_buffer_add_video_meta_full (buffer, v,
|
|
|
|
GST_VIDEO_INFO_FORMAT (params->v_info),
|
|
|
|
GST_VIDEO_INFO_WIDTH (params->v_info),
|
|
|
|
GST_VIDEO_INFO_HEIGHT (params->v_info), n_mem, params->v_info->offset,
|
|
|
|
params->v_info->stride);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2015-12-18 02:17:34 +00:00
|
|
|
|
2016-03-06 08:32:21 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_memory_allocator_get_default:
|
|
|
|
* @context: a #GstGLContext
|
|
|
|
*
|
2016-11-03 05:14:37 +00:00
|
|
|
* Returns: (transfer full): the default #GstGLMemoryAllocator supported by
|
|
|
|
* @context
|
2016-03-06 08:32:21 +00:00
|
|
|
*
|
|
|
|
* Since: 1.8
|
|
|
|
*/
|
2015-12-18 02:17:34 +00:00
|
|
|
GstGLMemoryAllocator *
|
|
|
|
gst_gl_memory_allocator_get_default (GstGLContext * context)
|
|
|
|
{
|
|
|
|
GstGLMemoryAllocator *allocator = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_GL_CONTEXT (context), NULL);
|
|
|
|
|
2015-12-30 01:09:29 +00:00
|
|
|
/* we can only use the pbo allocator with GL > 3.0 contexts */
|
|
|
|
if (gst_gl_context_check_gl_version (context,
|
|
|
|
GST_GL_API_OPENGL | GST_GL_API_OPENGL3 | GST_GL_API_GLES2, 3, 0)) {
|
2015-12-18 02:17:34 +00:00
|
|
|
allocator = (GstGLMemoryAllocator *)
|
|
|
|
gst_allocator_find (GST_GL_MEMORY_PBO_ALLOCATOR_NAME);
|
|
|
|
} else {
|
|
|
|
allocator = (GstGLMemoryAllocator *)
|
|
|
|
gst_allocator_find (GST_GL_MEMORY_ALLOCATOR_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
return allocator;
|
|
|
|
}
|