2012-09-10 23:00:57 +00:00
|
|
|
/*
|
|
|
|
* GStreamer EGL/GLES Sink
|
|
|
|
* Copyright (C) 2012 Collabora Ltd.
|
|
|
|
* @author: Reynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
|
2012-10-16 15:05:02 +00:00
|
|
|
* @author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2012-09-10 23:00:57 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the
|
|
|
|
* GNU Lesser General Public License Version 2.1 (the "LGPL"), in
|
|
|
|
* which case the following provisions apply instead of the ones
|
|
|
|
* mentioned above:
|
|
|
|
*
|
|
|
|
* 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-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2012-09-10 23:00:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:element-eglglessink
|
|
|
|
*
|
2012-10-09 14:00:24 +00:00
|
|
|
* EglGlesSink renders video frames on a EGL surface it sets up
|
|
|
|
* from a window it either creates (on X11) or gets a handle to
|
|
|
|
* through it's xOverlay interface. All the display/surface logic
|
|
|
|
* in this sink uses EGL to interact with the native window system.
|
|
|
|
* The rendering logic, in turn, uses OpenGL ES v2.
|
|
|
|
*
|
|
|
|
* This sink has been tested to work on X11/Mesa and on Android
|
|
|
|
* (From Gingerbread on to Jelly Bean) and while it's currently
|
|
|
|
* using an slow copy-over rendering path it has proven to be fast
|
2012-10-18 03:33:26 +00:00
|
|
|
* enough on the devices we have tried it on.
|
2012-09-13 01:11:39 +00:00
|
|
|
*
|
2012-09-10 23:00:57 +00:00
|
|
|
* <refsect2>
|
2012-10-09 14:00:24 +00:00
|
|
|
* <title>Supported EGL/OpenGL ES versions</title>
|
2012-09-10 23:00:57 +00:00
|
|
|
* <para>
|
2012-10-09 14:00:24 +00:00
|
|
|
* This Sink uses EGLv1 and GLESv2
|
2012-09-10 23:00:57 +00:00
|
|
|
* </para>
|
|
|
|
* </refsect2>
|
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Example launch line</title>
|
|
|
|
* |[
|
|
|
|
* gst-launch -v -m videotestsrc ! eglglessink
|
|
|
|
* ]|
|
|
|
|
* </refsect2>
|
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Example launch line with internal window creation disabled</title>
|
|
|
|
* <para>
|
2012-10-09 14:00:24 +00:00
|
|
|
* By setting the can_create_window property to FALSE you can force the
|
|
|
|
* sink to wait for a window handle through it's xOverlay interface even
|
|
|
|
* if internal window creation is supported by the platform. Window creation
|
|
|
|
* is only supported in X11 right now but it should be trivial to add support
|
|
|
|
* for different platforms.
|
2012-09-10 23:00:57 +00:00
|
|
|
* </para>
|
|
|
|
* |[
|
2012-09-11 01:59:57 +00:00
|
|
|
* gst-launch -v -m videotestsrc ! eglglessink can_create_window=FALSE
|
2012-09-10 23:00:57 +00:00
|
|
|
* ]|
|
|
|
|
* </refsect2>
|
2012-10-09 14:00:24 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Scaling</title>
|
|
|
|
* <para>
|
|
|
|
* The sink will try it's best to consider the incoming frame's and display's
|
|
|
|
* pixel aspect ratio and fill the corresponding surface without altering the
|
|
|
|
* decoded frame's geometry when scaling. You can disable this logic by setting
|
|
|
|
* the force_aspect_ratio property to FALSE, in which case the sink will just
|
|
|
|
* fill the entire surface it has access to regardles of the PAR/DAR relationship.
|
|
|
|
* </para>
|
|
|
|
* <para>
|
|
|
|
* Querying the display aspect ratio is only supported with EGL versions >= 1.2.
|
|
|
|
* The sink will just assume the DAR to be 1/1 if it can't get access to this
|
|
|
|
* information.
|
|
|
|
* </para>
|
|
|
|
* <para>
|
|
|
|
* Here is an example launch line with the PAR/DAR aware scaling disabled:
|
|
|
|
* </para>
|
|
|
|
* |[
|
|
|
|
* gst-launch -v -m videotestsrc ! eglglessink force_aspect_ratio=FALSE
|
|
|
|
* ]|
|
|
|
|
* </refsect2>
|
2012-09-10 23:00:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2013-02-21 16:43:49 +00:00
|
|
|
#define EGL_EGLEXT_PROTOTYPES
|
|
|
|
#define GL_GLEXT_PROTOTYPES
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/video.h>
|
2012-10-22 09:18:39 +00:00
|
|
|
#include <gst/video/video-frame.h>
|
2012-09-10 23:00:57 +00:00
|
|
|
#include <gst/video/gstvideosink.h>
|
2012-10-22 09:41:44 +00:00
|
|
|
#include <gst/video/gstvideometa.h>
|
2012-12-28 11:27:43 +00:00
|
|
|
#include <gst/video/gstvideopool.h>
|
2012-10-22 09:18:39 +00:00
|
|
|
#include <gst/video/videooverlay.h>
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2013-04-18 10:24:18 +00:00
|
|
|
#include "gstegladaptation.h"
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2013-02-12 17:36:10 +00:00
|
|
|
#ifdef USE_EGL_RPI
|
|
|
|
#include <bcm_host.h>
|
|
|
|
#endif
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
#include "gsteglglessink.h"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_eglglessink_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_eglglessink_debug
|
|
|
|
|
2013-01-03 09:40:34 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (GST_CAT_PERFORMANCE);
|
2013-01-01 11:05:03 +00:00
|
|
|
|
2012-10-09 14:48:09 +00:00
|
|
|
/* Input capabilities. */
|
2012-09-10 23:00:57 +00:00
|
|
|
static GstStaticPadTemplate gst_eglglessink_sink_template_factory =
|
2013-04-10 17:53:48 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2013-09-23 12:36:40 +00:00
|
|
|
GST_STATIC_CAPS (
|
|
|
|
#ifndef HAVE_IOS
|
|
|
|
GST_VIDEO_CAPS_MAKE_WITH_FEATURES (GST_CAPS_FEATURE_MEMORY_EGL_IMAGE,
|
2013-04-10 17:53:48 +00:00
|
|
|
"{ " "RGBA, BGRA, ARGB, ABGR, " "RGBx, BGRx, xRGB, xBGR, "
|
|
|
|
"AYUV, Y444, I420, YV12, " "NV12, NV21, Y42B, Y41B, "
|
|
|
|
"RGB, BGR, RGB16 }") ";"
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-04-10 17:53:48 +00:00
|
|
|
GST_VIDEO_CAPS_MAKE_WITH_FEATURES
|
|
|
|
(GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META,
|
|
|
|
"{ " "RGBA, BGRA, ARGB, ABGR, " "RGBx, BGRx, xRGB, xBGR, "
|
|
|
|
"AYUV, Y444, I420, YV12, " "NV12, NV21, Y42B, Y41B, "
|
2013-09-23 12:36:40 +00:00
|
|
|
"RGB, BGR, RGB16 }") ";"
|
|
|
|
GST_VIDEO_CAPS_MAKE ("{ "
|
2013-04-10 17:53:48 +00:00
|
|
|
"RGBA, BGRA, ARGB, ABGR, " "RGBx, BGRx, xRGB, xBGR, "
|
|
|
|
"AYUV, Y444, I420, YV12, " "NV12, NV21, Y42B, Y41B, "
|
|
|
|
"RGB, BGR, RGB16 }")));
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
/* Filter signals and args */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2012-09-24 09:01:17 +00:00
|
|
|
PROP_CREATE_WINDOW,
|
|
|
|
PROP_FORCE_ASPECT_RATIO,
|
2012-09-10 23:00:57 +00:00
|
|
|
};
|
|
|
|
|
2012-09-24 10:05:22 +00:00
|
|
|
static void gst_eglglessink_finalize (GObject * object);
|
2012-09-10 23:00:57 +00:00
|
|
|
static void gst_eglglessink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_eglglessink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
2012-09-24 10:05:22 +00:00
|
|
|
static GstStateChangeReturn gst_eglglessink_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2013-03-28 16:48:04 +00:00
|
|
|
static void gst_eglglessink_set_context (GstElement * element,
|
|
|
|
GstContext * context);
|
2013-01-01 09:44:45 +00:00
|
|
|
static GstFlowReturn gst_eglglessink_prepare (GstBaseSink * bsink,
|
|
|
|
GstBuffer * buf);
|
2012-09-10 23:00:57 +00:00
|
|
|
static GstFlowReturn gst_eglglessink_show_frame (GstVideoSink * vsink,
|
|
|
|
GstBuffer * buf);
|
|
|
|
static gboolean gst_eglglessink_setcaps (GstBaseSink * bsink, GstCaps * caps);
|
2012-10-22 09:18:39 +00:00
|
|
|
static GstCaps *gst_eglglessink_getcaps (GstBaseSink * bsink, GstCaps * filter);
|
2012-10-22 09:41:44 +00:00
|
|
|
static gboolean gst_eglglessink_propose_allocation (GstBaseSink * bsink,
|
|
|
|
GstQuery * query);
|
2013-03-28 16:48:04 +00:00
|
|
|
static gboolean gst_eglglessink_query (GstBaseSink * bsink, GstQuery * query);
|
2012-10-22 09:18:39 +00:00
|
|
|
|
|
|
|
/* VideoOverlay interface cruft */
|
|
|
|
static void gst_eglglessink_videooverlay_init (GstVideoOverlayInterface *
|
|
|
|
iface);
|
|
|
|
|
|
|
|
/* Actual VideoOverlay interface funcs */
|
|
|
|
static void gst_eglglessink_expose (GstVideoOverlay * overlay);
|
|
|
|
static void gst_eglglessink_set_window_handle (GstVideoOverlay * overlay,
|
2012-09-10 23:00:57 +00:00
|
|
|
guintptr id);
|
2012-10-22 09:18:39 +00:00
|
|
|
static void gst_eglglessink_set_render_rectangle (GstVideoOverlay * overlay,
|
|
|
|
gint x, gint y, gint width, gint height);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-10-18 03:33:26 +00:00
|
|
|
/* Utility */
|
2013-04-10 20:27:27 +00:00
|
|
|
static gboolean gst_eglglessink_create_window (GstEglGlesSink *
|
2012-09-10 23:00:57 +00:00
|
|
|
eglglessink, gint width, gint height);
|
2013-05-15 14:49:22 +00:00
|
|
|
static gboolean gst_eglglessink_setup_vbo (GstEglGlesSink * eglglessink);
|
2012-10-16 13:40:11 +00:00
|
|
|
static gboolean
|
2012-10-17 13:04:11 +00:00
|
|
|
gst_eglglessink_configure_caps (GstEglGlesSink * eglglessink, GstCaps * caps);
|
2013-01-01 09:44:45 +00:00
|
|
|
static GstFlowReturn gst_eglglessink_upload (GstEglGlesSink * sink,
|
2012-09-10 23:00:57 +00:00
|
|
|
GstBuffer * buf);
|
2013-01-01 09:44:45 +00:00
|
|
|
static GstFlowReturn gst_eglglessink_render (GstEglGlesSink * sink);
|
2012-12-30 09:18:05 +00:00
|
|
|
static GstFlowReturn gst_eglglessink_queue_object (GstEglGlesSink * sink,
|
|
|
|
GstMiniObject * obj);
|
2012-09-14 23:49:48 +00:00
|
|
|
static inline gboolean egl_init (GstEglGlesSink * eglglessink);
|
2013-09-04 09:52:51 +00:00
|
|
|
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-09-04 09:52:51 +00:00
|
|
|
typedef GstBuffer *(*GstEGLImageBufferPoolSendBlockingAllocate) (GstBufferPool *
|
|
|
|
pool, gpointer data);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
/* EGLImage memory, buffer pool, etc */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstVideoBufferPool parent;
|
|
|
|
|
|
|
|
GstAllocator *allocator;
|
|
|
|
GstAllocationParams params;
|
|
|
|
GstVideoInfo info;
|
|
|
|
gboolean add_metavideo;
|
|
|
|
gboolean want_eglimage;
|
2013-09-04 09:58:24 +00:00
|
|
|
GstBuffer *last_buffer;
|
2013-09-04 09:52:51 +00:00
|
|
|
GstEGLImageBufferPoolSendBlockingAllocate send_blocking_allocate_func;
|
|
|
|
gpointer send_blocking_allocate_data;
|
|
|
|
GDestroyNotify send_blocking_allocate_destroy;
|
2013-04-10 20:27:27 +00:00
|
|
|
} GstEGLImageBufferPool;
|
|
|
|
|
|
|
|
typedef GstVideoBufferPoolClass GstEGLImageBufferPoolClass;
|
|
|
|
|
|
|
|
#define GST_EGL_IMAGE_BUFFER_POOL(p) ((GstEGLImageBufferPool*)(p))
|
|
|
|
|
|
|
|
GType gst_egl_image_buffer_pool_get_type (void);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstEGLImageBufferPool, gst_egl_image_buffer_pool,
|
|
|
|
GST_TYPE_VIDEO_BUFFER_POOL);
|
|
|
|
|
2013-09-04 09:58:24 +00:00
|
|
|
static GstBufferPool
|
|
|
|
* gst_egl_image_buffer_pool_new (GstEGLImageBufferPoolSendBlockingAllocate
|
|
|
|
blocking_allocate_func, gpointer blocking_allocate_data,
|
|
|
|
GDestroyNotify destroy_func);
|
2013-09-04 09:52:51 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_egl_image_buffer_pool_get_video_infos (GstEGLImageBufferPool * pool,
|
|
|
|
GstVideoFormat * format, gint * width, gint * height)
|
|
|
|
{
|
|
|
|
g_return_if_fail (pool != NULL);
|
|
|
|
|
|
|
|
if (format)
|
|
|
|
*format = pool->info.finfo->format;
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
*width = pool->info.width;
|
|
|
|
|
|
|
|
if (height)
|
|
|
|
*height = pool->info.height;
|
|
|
|
}
|
|
|
|
|
2013-09-04 09:58:24 +00:00
|
|
|
static void
|
|
|
|
gst_egl_image_buffer_pool_replace_last_buffer (GstEGLImageBufferPool * pool,
|
|
|
|
GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
g_return_if_fail (pool != NULL);
|
|
|
|
|
|
|
|
gst_buffer_replace (&pool->last_buffer, buffer);
|
|
|
|
}
|
|
|
|
|
2013-09-04 09:52:51 +00:00
|
|
|
static GstBuffer *
|
|
|
|
gst_eglglessink_egl_image_buffer_pool_send_blocking (GstBufferPool * bpool,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
|
|
|
GstQuery *query = NULL;
|
|
|
|
GstStructure *s = NULL;
|
|
|
|
const GValue *v = NULL;
|
|
|
|
GstBuffer *buffer = NULL;
|
|
|
|
GstVideoFormat format = GST_VIDEO_FORMAT_UNKNOWN;
|
|
|
|
gint width = 0;
|
|
|
|
gint height = 0;
|
|
|
|
|
|
|
|
GstEGLImageBufferPool *pool = GST_EGL_IMAGE_BUFFER_POOL (bpool);
|
|
|
|
GstEglGlesSink *eglglessink = GST_EGLGLESSINK (data);
|
|
|
|
|
|
|
|
gst_egl_image_buffer_pool_get_video_infos (pool, &format, &width, &height);
|
|
|
|
|
|
|
|
s = gst_structure_new ("eglglessink-allocate-eglimage",
|
|
|
|
"format", GST_TYPE_VIDEO_FORMAT, format,
|
|
|
|
"width", G_TYPE_INT, width, "height", G_TYPE_INT, height, NULL);
|
|
|
|
query = gst_query_new_custom (GST_QUERY_CUSTOM, s);
|
|
|
|
|
|
|
|
ret =
|
|
|
|
gst_eglglessink_queue_object (eglglessink, GST_MINI_OBJECT_CAST (query));
|
|
|
|
|
|
|
|
if (ret == GST_FLOW_OK && gst_structure_has_field (s, "buffer")) {
|
|
|
|
v = gst_structure_get_value (s, "buffer");
|
|
|
|
buffer = GST_BUFFER_CAST (g_value_get_pointer (v));
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_query_unref (query);
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_eglglessink_egl_image_buffer_pool_on_destroy (gpointer data)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink = GST_EGLGLESSINK (data);
|
|
|
|
gst_object_unref (eglglessink);
|
|
|
|
}
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
static const gchar **
|
|
|
|
gst_egl_image_buffer_pool_get_options (GstBufferPool * bpool)
|
|
|
|
{
|
|
|
|
static const gchar *options[] = { GST_BUFFER_POOL_OPTION_VIDEO_META, NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_egl_image_buffer_pool_set_config (GstBufferPool * bpool,
|
|
|
|
GstStructure * config)
|
|
|
|
{
|
|
|
|
GstEGLImageBufferPool *pool = GST_EGL_IMAGE_BUFFER_POOL (bpool);
|
|
|
|
GstCaps *caps;
|
|
|
|
GstVideoInfo info;
|
|
|
|
|
|
|
|
if (pool->allocator)
|
|
|
|
gst_object_unref (pool->allocator);
|
|
|
|
pool->allocator = NULL;
|
|
|
|
|
|
|
|
if (!GST_BUFFER_POOL_CLASS
|
|
|
|
(gst_egl_image_buffer_pool_parent_class)->set_config (bpool, config))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!gst_buffer_pool_config_get_params (config, &caps, NULL, NULL, NULL)
|
|
|
|
|| !caps)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!gst_video_info_from_caps (&info, caps))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!gst_buffer_pool_config_get_allocator (config, &pool->allocator,
|
|
|
|
&pool->params))
|
|
|
|
return FALSE;
|
|
|
|
if (pool->allocator)
|
|
|
|
gst_object_ref (pool->allocator);
|
|
|
|
|
|
|
|
pool->add_metavideo =
|
|
|
|
gst_buffer_pool_config_has_option (config,
|
|
|
|
GST_BUFFER_POOL_OPTION_VIDEO_META);
|
|
|
|
|
|
|
|
pool->want_eglimage = (pool->allocator
|
|
|
|
&& g_strcmp0 (pool->allocator->mem_type, GST_EGL_IMAGE_MEMORY_TYPE) == 0);
|
|
|
|
|
|
|
|
pool->info = info;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_egl_image_buffer_pool_alloc_buffer (GstBufferPool * bpool,
|
|
|
|
GstBuffer ** buffer, GstBufferPoolAcquireParams * params)
|
|
|
|
{
|
|
|
|
GstEGLImageBufferPool *pool = GST_EGL_IMAGE_BUFFER_POOL (bpool);
|
|
|
|
|
|
|
|
*buffer = NULL;
|
|
|
|
|
|
|
|
if (!pool->add_metavideo || !pool->want_eglimage)
|
|
|
|
return
|
|
|
|
GST_BUFFER_POOL_CLASS
|
|
|
|
(gst_egl_image_buffer_pool_parent_class)->alloc_buffer (bpool,
|
|
|
|
buffer, params);
|
|
|
|
|
|
|
|
if (!pool->allocator)
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
|
|
|
|
switch (pool->info.finfo->format) {
|
|
|
|
case GST_VIDEO_FORMAT_RGB:
|
|
|
|
case GST_VIDEO_FORMAT_BGR:
|
|
|
|
case GST_VIDEO_FORMAT_RGB16:
|
|
|
|
case GST_VIDEO_FORMAT_NV12:
|
|
|
|
case GST_VIDEO_FORMAT_NV21:
|
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
|
|
|
case GST_VIDEO_FORMAT_RGBx:
|
|
|
|
case GST_VIDEO_FORMAT_BGRx:
|
|
|
|
case GST_VIDEO_FORMAT_xRGB:
|
|
|
|
case GST_VIDEO_FORMAT_xBGR:
|
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
|
|
|
case GST_VIDEO_FORMAT_YV12:
|
|
|
|
case GST_VIDEO_FORMAT_I420:
|
|
|
|
case GST_VIDEO_FORMAT_Y444:
|
|
|
|
case GST_VIDEO_FORMAT_Y42B:
|
|
|
|
case GST_VIDEO_FORMAT_Y41B:{
|
|
|
|
|
2013-09-04 09:52:51 +00:00
|
|
|
if (pool->send_blocking_allocate_func)
|
|
|
|
*buffer = pool->send_blocking_allocate_func (bpool,
|
|
|
|
pool->send_blocking_allocate_data);
|
2013-04-10 20:27:27 +00:00
|
|
|
|
|
|
|
if (!*buffer) {
|
|
|
|
GST_WARNING ("Fallback memory allocation");
|
|
|
|
return
|
|
|
|
GST_BUFFER_POOL_CLASS
|
|
|
|
(gst_egl_image_buffer_pool_parent_class)->alloc_buffer (bpool,
|
|
|
|
buffer, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return
|
|
|
|
GST_BUFFER_POOL_CLASS
|
|
|
|
(gst_egl_image_buffer_pool_parent_class)->alloc_buffer (bpool,
|
|
|
|
buffer, params);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_egl_image_buffer_pool_acquire_buffer (GstBufferPool * bpool,
|
|
|
|
GstBuffer ** buffer, GstBufferPoolAcquireParams * params)
|
|
|
|
{
|
|
|
|
GstFlowReturn ret;
|
|
|
|
GstEGLImageBufferPool *pool;
|
|
|
|
|
|
|
|
ret =
|
|
|
|
GST_BUFFER_POOL_CLASS
|
|
|
|
(gst_egl_image_buffer_pool_parent_class)->acquire_buffer (bpool,
|
|
|
|
buffer, params);
|
|
|
|
if (ret != GST_FLOW_OK || !*buffer)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
pool = GST_EGL_IMAGE_BUFFER_POOL (bpool);
|
|
|
|
|
|
|
|
/* XXX: Don't return the memory we just rendered, glEGLImageTargetTexture2DOES()
|
|
|
|
* keeps the EGLImage unmappable until the next one is uploaded
|
|
|
|
*/
|
2013-09-04 09:58:24 +00:00
|
|
|
if (*buffer && *buffer == pool->last_buffer) {
|
2013-04-10 20:27:27 +00:00
|
|
|
GstBuffer *oldbuf = *buffer;
|
|
|
|
|
|
|
|
ret =
|
|
|
|
GST_BUFFER_POOL_CLASS
|
|
|
|
(gst_egl_image_buffer_pool_parent_class)->acquire_buffer (bpool,
|
|
|
|
buffer, params);
|
|
|
|
gst_object_replace ((GstObject **) & oldbuf->pool, (GstObject *) pool);
|
|
|
|
gst_buffer_unref (oldbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_egl_image_buffer_pool_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstEGLImageBufferPool *pool = GST_EGL_IMAGE_BUFFER_POOL (object);
|
|
|
|
|
|
|
|
if (pool->allocator)
|
|
|
|
gst_object_unref (pool->allocator);
|
|
|
|
pool->allocator = NULL;
|
|
|
|
|
2013-09-04 09:58:24 +00:00
|
|
|
gst_egl_image_buffer_pool_replace_last_buffer (pool, NULL);
|
2013-04-10 20:27:27 +00:00
|
|
|
|
2013-09-04 09:52:51 +00:00
|
|
|
if (pool->send_blocking_allocate_destroy)
|
|
|
|
pool->send_blocking_allocate_destroy (pool->send_blocking_allocate_data);
|
|
|
|
pool->send_blocking_allocate_destroy = NULL;
|
|
|
|
pool->send_blocking_allocate_data = NULL;
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
G_OBJECT_CLASS (gst_egl_image_buffer_pool_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_egl_image_buffer_pool_class_init (GstEGLImageBufferPoolClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
|
|
|
GstBufferPoolClass *gstbufferpool_class = (GstBufferPoolClass *) klass;
|
|
|
|
|
|
|
|
gobject_class->finalize = gst_egl_image_buffer_pool_finalize;
|
|
|
|
gstbufferpool_class->get_options = gst_egl_image_buffer_pool_get_options;
|
|
|
|
gstbufferpool_class->set_config = gst_egl_image_buffer_pool_set_config;
|
|
|
|
gstbufferpool_class->alloc_buffer = gst_egl_image_buffer_pool_alloc_buffer;
|
|
|
|
gstbufferpool_class->acquire_buffer =
|
|
|
|
gst_egl_image_buffer_pool_acquire_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_egl_image_buffer_pool_init (GstEGLImageBufferPool * pool)
|
|
|
|
{
|
|
|
|
}
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-04-10 20:27:27 +00:00
|
|
|
|
2012-10-22 09:18:39 +00:00
|
|
|
#define parent_class gst_eglglessink_parent_class
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstEglGlesSink, gst_eglglessink, GST_TYPE_VIDEO_SINK,
|
|
|
|
G_IMPLEMENT_INTERFACE (GST_TYPE_VIDEO_OVERLAY,
|
|
|
|
gst_eglglessink_videooverlay_init));
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-09-14 23:49:48 +00:00
|
|
|
static inline gboolean
|
|
|
|
egl_init (GstEglGlesSink * eglglessink)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
2013-04-10 17:53:48 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
|
2013-09-23 12:36:40 +00:00
|
|
|
if (!gst_egl_adaptation_init_display (eglglessink->egl_context)) {
|
2012-09-13 03:11:49 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Couldn't init EGL display");
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
2012-09-13 01:11:39 +00:00
|
|
|
|
2013-04-10 17:53:48 +00:00
|
|
|
caps =
|
|
|
|
gst_egl_adaptation_fill_supported_fbuffer_configs
|
|
|
|
(eglglessink->egl_context);
|
|
|
|
if (!caps) {
|
2012-09-13 03:55:33 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Display support NONE of our configs");
|
|
|
|
goto HANDLE_ERROR;
|
2013-04-10 17:53:48 +00:00
|
|
|
} else {
|
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
|
|
|
gst_caps_replace (&eglglessink->sinkcaps, caps);
|
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
|
|
|
gst_caps_unref (caps);
|
2012-09-13 03:55:33 +00:00
|
|
|
}
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-09-14 23:49:48 +00:00
|
|
|
eglglessink->egl_started = TRUE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
HANDLE_ERROR:
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Failed to perform EGL init");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
static gpointer
|
|
|
|
render_thread_func (GstEglGlesSink * eglglessink)
|
2012-09-14 23:49:48 +00:00
|
|
|
{
|
2012-11-01 12:51:09 +00:00
|
|
|
GstMessage *message;
|
|
|
|
GValue val = { 0 };
|
2012-10-16 13:40:11 +00:00
|
|
|
GstDataQueueItem *item = NULL;
|
2012-12-30 13:22:43 +00:00
|
|
|
GstFlowReturn last_flow = GST_FLOW_OK;
|
2012-09-14 23:49:48 +00:00
|
|
|
|
2012-11-12 10:48:38 +00:00
|
|
|
g_value_init (&val, GST_TYPE_G_THREAD);
|
|
|
|
g_value_set_boxed (&val, g_thread_self ());
|
2012-11-01 12:51:09 +00:00
|
|
|
message = gst_message_new_stream_status (GST_OBJECT_CAST (eglglessink),
|
|
|
|
GST_STREAM_STATUS_TYPE_ENTER, GST_ELEMENT_CAST (eglglessink));
|
|
|
|
gst_message_set_stream_status_object (message, &val);
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "posting ENTER stream status");
|
|
|
|
gst_element_post_message (GST_ELEMENT_CAST (eglglessink), message);
|
|
|
|
g_value_unset (&val);
|
|
|
|
|
2013-09-23 12:36:40 +00:00
|
|
|
gst_egl_adaptation_bind_API (eglglessink->egl_context);
|
2012-12-28 18:36:30 +00:00
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
while (gst_data_queue_pop (eglglessink->queue, &item)) {
|
2013-01-03 09:40:34 +00:00
|
|
|
GstMiniObject *object = item->object;
|
2012-09-14 23:49:48 +00:00
|
|
|
|
2013-01-03 09:40:34 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Handling object %" GST_PTR_FORMAT, object);
|
|
|
|
|
|
|
|
if (GST_IS_CAPS (object)) {
|
|
|
|
GstCaps *caps = GST_CAPS_CAST (object);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
if (caps != eglglessink->configured_caps) {
|
|
|
|
if (!gst_eglglessink_configure_caps (eglglessink, caps)) {
|
2012-12-30 13:22:43 +00:00
|
|
|
last_flow = GST_FLOW_NOT_NEGOTIATED;
|
2012-10-16 13:40:11 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-01-03 09:40:34 +00:00
|
|
|
} else if (GST_IS_QUERY (object)) {
|
|
|
|
GstQuery *query = GST_QUERY_CAST (object);
|
2012-12-28 11:27:43 +00:00
|
|
|
GstStructure *s = (GstStructure *) gst_query_get_structure (query);
|
|
|
|
|
|
|
|
if (gst_structure_has_name (s, "eglglessink-allocate-eglimage")) {
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GstVideoFormat format;
|
|
|
|
gint width, height;
|
|
|
|
GValue v = { 0, };
|
|
|
|
|
|
|
|
if (!gst_structure_get_enum (s, "format", GST_TYPE_VIDEO_FORMAT,
|
|
|
|
(gint *) & format)
|
|
|
|
|| !gst_structure_get_int (s, "width", &width)
|
|
|
|
|| !gst_structure_get_int (s, "height", &height)) {
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer =
|
2013-09-04 09:48:34 +00:00
|
|
|
gst_egl_image_allocator_alloc_eglimage (GST_EGL_IMAGE_BUFFER_POOL
|
|
|
|
(eglglessink->pool)->allocator, eglglessink->egl_context->display,
|
|
|
|
gst_egl_adaptation_context_get_egl_context
|
|
|
|
(eglglessink->egl_context), format, width, height);
|
2012-12-28 11:27:43 +00:00
|
|
|
g_value_init (&v, G_TYPE_POINTER);
|
|
|
|
g_value_set_pointer (&v, buffer);
|
|
|
|
gst_structure_set_value (s, "buffer", &v);
|
|
|
|
g_value_unset (&v);
|
|
|
|
} else {
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2012-12-30 13:22:43 +00:00
|
|
|
last_flow = GST_FLOW_OK;
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-01-03 09:40:34 +00:00
|
|
|
} else if (GST_IS_BUFFER (object)) {
|
2012-12-30 09:18:05 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER_CAST (item->object);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-12-30 09:18:05 +00:00
|
|
|
if (eglglessink->configured_caps) {
|
2013-01-01 09:44:45 +00:00
|
|
|
last_flow = gst_eglglessink_upload (eglglessink, buf);
|
|
|
|
} else {
|
|
|
|
last_flow = GST_FLOW_OK;
|
|
|
|
GST_DEBUG_OBJECT (eglglessink,
|
|
|
|
"No caps configured yet, not drawing anything");
|
|
|
|
}
|
2013-01-03 09:40:34 +00:00
|
|
|
} else if (!object) {
|
2013-01-01 09:44:45 +00:00
|
|
|
if (eglglessink->configured_caps) {
|
|
|
|
last_flow = gst_eglglessink_render (eglglessink);
|
2012-12-30 09:18:05 +00:00
|
|
|
} else {
|
2012-12-30 13:22:43 +00:00
|
|
|
last_flow = GST_FLOW_OK;
|
2012-12-30 09:18:05 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink,
|
|
|
|
"No caps configured yet, not drawing anything");
|
|
|
|
}
|
2012-12-28 11:27:43 +00:00
|
|
|
} else {
|
|
|
|
g_assert_not_reached ();
|
2012-10-19 09:59:10 +00:00
|
|
|
}
|
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
item->destroy (item);
|
|
|
|
g_mutex_lock (&eglglessink->render_lock);
|
|
|
|
eglglessink->last_flow = last_flow;
|
2013-01-03 09:40:34 +00:00
|
|
|
eglglessink->dequeued_object = object;
|
2013-01-01 09:44:45 +00:00
|
|
|
g_cond_broadcast (&eglglessink->render_cond);
|
|
|
|
g_mutex_unlock (&eglglessink->render_lock);
|
2012-12-30 13:22:43 +00:00
|
|
|
|
|
|
|
if (last_flow != GST_FLOW_OK)
|
2012-10-16 13:40:11 +00:00
|
|
|
break;
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Successfully handled object");
|
2012-10-16 13:40:11 +00:00
|
|
|
}
|
|
|
|
|
2012-12-30 13:22:43 +00:00
|
|
|
if (last_flow == GST_FLOW_OK) {
|
|
|
|
g_mutex_lock (&eglglessink->render_lock);
|
2012-10-22 09:18:39 +00:00
|
|
|
eglglessink->last_flow = GST_FLOW_FLUSHING;
|
2013-01-03 09:40:34 +00:00
|
|
|
eglglessink->dequeued_object = NULL;
|
2012-12-30 13:22:43 +00:00
|
|
|
g_cond_broadcast (&eglglessink->render_cond);
|
|
|
|
g_mutex_unlock (&eglglessink->render_lock);
|
|
|
|
}
|
2012-10-03 08:53:25 +00:00
|
|
|
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Shutting down thread");
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
/* EGL/GLES cleanup */
|
2013-04-10 20:27:27 +00:00
|
|
|
gst_egl_adaptation_cleanup (eglglessink->egl_context);
|
2012-10-18 04:36:49 +00:00
|
|
|
|
|
|
|
if (eglglessink->configured_caps) {
|
|
|
|
gst_caps_unref (eglglessink->configured_caps);
|
|
|
|
eglglessink->configured_caps = NULL;
|
|
|
|
}
|
|
|
|
|
2012-11-12 10:48:38 +00:00
|
|
|
g_value_init (&val, GST_TYPE_G_THREAD);
|
|
|
|
g_value_set_boxed (&val, g_thread_self ());
|
2012-11-01 12:51:09 +00:00
|
|
|
message = gst_message_new_stream_status (GST_OBJECT_CAST (eglglessink),
|
|
|
|
GST_STREAM_STATUS_TYPE_LEAVE, GST_ELEMENT_CAST (eglglessink));
|
|
|
|
gst_message_set_stream_status_object (message, &val);
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "posting LEAVE stream status");
|
|
|
|
gst_element_post_message (GST_ELEMENT_CAST (eglglessink), message);
|
|
|
|
g_value_unset (&val);
|
|
|
|
|
2012-10-18 04:36:49 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_start (GstEglGlesSink * eglglessink)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Starting");
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
if (!eglglessink->egl_started) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "EGL uninitialized. Bailing out");
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ask for a window to render to */
|
|
|
|
if (!eglglessink->have_window)
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_video_overlay_prepare_window_handle (GST_VIDEO_OVERLAY (eglglessink));
|
2012-10-16 13:40:11 +00:00
|
|
|
|
|
|
|
if (!eglglessink->have_window && !eglglessink->create_window) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Window handle unavailable and we "
|
|
|
|
"were instructed not to create an internal one. Bailing out.");
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
eglglessink->last_flow = GST_FLOW_OK;
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->display_region.w = 0;
|
|
|
|
eglglessink->display_region.h = 0;
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
gst_data_queue_set_flushing (eglglessink->queue, FALSE);
|
|
|
|
|
|
|
|
#if !GLIB_CHECK_VERSION (2, 31, 0)
|
|
|
|
eglglessink->thread =
|
|
|
|
g_thread_create ((GThreadFunc) render_thread_func, eglglessink, TRUE,
|
|
|
|
&error);
|
|
|
|
#else
|
|
|
|
eglglessink->thread = g_thread_try_new ("eglglessink-render",
|
|
|
|
(GThreadFunc) render_thread_func, eglglessink, &error);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!eglglessink->thread || error != NULL)
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Started");
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
HANDLE_ERROR:
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Couldn't start");
|
|
|
|
g_clear_error (&error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_stop (GstEglGlesSink * eglglessink)
|
|
|
|
{
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Stopping");
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
gst_data_queue_set_flushing (eglglessink->queue, TRUE);
|
2012-10-25 12:28:49 +00:00
|
|
|
g_mutex_lock (&eglglessink->render_lock);
|
|
|
|
g_cond_broadcast (&eglglessink->render_cond);
|
|
|
|
g_mutex_unlock (&eglglessink->render_lock);
|
2012-10-16 13:40:11 +00:00
|
|
|
|
|
|
|
if (eglglessink->thread) {
|
|
|
|
g_thread_join (eglglessink->thread);
|
|
|
|
eglglessink->thread = NULL;
|
|
|
|
}
|
2012-10-22 09:18:39 +00:00
|
|
|
eglglessink->last_flow = GST_FLOW_FLUSHING;
|
2012-10-16 13:40:11 +00:00
|
|
|
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-09-04 09:58:24 +00:00
|
|
|
if (eglglessink->pool)
|
|
|
|
gst_egl_image_buffer_pool_replace_last_buffer (GST_EGL_IMAGE_BUFFER_POOL
|
|
|
|
(eglglessink->pool), NULL);
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-01-03 16:28:49 +00:00
|
|
|
|
2012-09-24 10:27:28 +00:00
|
|
|
if (eglglessink->using_own_window) {
|
2013-04-10 20:27:27 +00:00
|
|
|
gst_egl_adaptation_destroy_native_window (eglglessink->egl_context,
|
|
|
|
&eglglessink->own_window_data);
|
2012-09-24 10:27:28 +00:00
|
|
|
eglglessink->have_window = FALSE;
|
|
|
|
}
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->used_window = 0;
|
2012-09-24 10:36:12 +00:00
|
|
|
if (eglglessink->current_caps) {
|
|
|
|
gst_caps_unref (eglglessink->current_caps);
|
|
|
|
eglglessink->current_caps = NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Stopped");
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_eglglessink_videooverlay_init (GstVideoOverlayInterface * iface)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
|
|
|
iface->set_window_handle = gst_eglglessink_set_window_handle;
|
|
|
|
iface->expose = gst_eglglessink_expose;
|
2012-09-21 03:09:06 +00:00
|
|
|
iface->set_render_rectangle = gst_eglglessink_set_render_rectangle;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
static gboolean
|
2012-09-10 23:00:57 +00:00
|
|
|
gst_eglglessink_create_window (GstEglGlesSink * eglglessink, gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2013-04-10 20:27:27 +00:00
|
|
|
gboolean window_created = FALSE;
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-09-27 11:57:14 +00:00
|
|
|
if (!eglglessink->create_window) {
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "This sink can't create a window by itself");
|
2013-04-18 10:27:28 +00:00
|
|
|
return FALSE;
|
2012-09-10 23:00:57 +00:00
|
|
|
} else
|
|
|
|
GST_INFO_OBJECT (eglglessink, "Attempting internal window creation");
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
window_created =
|
|
|
|
gst_egl_adaptation_create_native_window (eglglessink->egl_context, width,
|
|
|
|
height, &eglglessink->own_window_data);
|
|
|
|
if (!window_created) {
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Could not create window");
|
|
|
|
}
|
2013-04-10 20:27:27 +00:00
|
|
|
return window_created;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_eglglessink_expose (GstVideoOverlay * overlay)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
2012-09-13 01:11:39 +00:00
|
|
|
GstFlowReturn ret;
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
eglglessink = GST_EGLGLESSINK (overlay);
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Expose catched, redisplay");
|
|
|
|
|
2012-10-01 02:06:19 +00:00
|
|
|
/* Render from last seen buffer */
|
2012-12-30 09:18:05 +00:00
|
|
|
ret = gst_eglglessink_queue_object (eglglessink, NULL);
|
2012-09-13 01:11:39 +00:00
|
|
|
if (ret == GST_FLOW_ERROR)
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Redisplay failed");
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2012-09-11 14:51:28 +00:00
|
|
|
static gboolean
|
2013-05-15 14:49:22 +00:00
|
|
|
gst_eglglessink_setup_vbo (GstEglGlesSink * eglglessink)
|
2012-09-11 14:51:28 +00:00
|
|
|
{
|
2012-12-26 13:39:03 +00:00
|
|
|
gdouble render_width, render_height;
|
|
|
|
gdouble texture_width, texture_height;
|
2012-10-17 13:04:11 +00:00
|
|
|
gdouble x1, x2, y1, y2;
|
2012-10-22 09:41:44 +00:00
|
|
|
gdouble tx1, tx2, ty1, ty2;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-05-15 14:49:22 +00:00
|
|
|
GST_INFO_OBJECT (eglglessink, "VBO setup. have_vbo:%d",
|
|
|
|
eglglessink->egl_context->have_vbo);
|
2012-09-11 14:51:28 +00:00
|
|
|
|
2013-05-15 14:49:22 +00:00
|
|
|
if (eglglessink->egl_context->have_vbo) {
|
2013-04-10 20:27:27 +00:00
|
|
|
glDeleteBuffers (1, &eglglessink->egl_context->position_buffer);
|
|
|
|
glDeleteBuffers (1, &eglglessink->egl_context->index_buffer);
|
2013-04-10 17:53:48 +00:00
|
|
|
eglglessink->egl_context->have_vbo = FALSE;
|
2012-09-24 10:27:28 +00:00
|
|
|
}
|
|
|
|
|
2012-12-26 13:39:03 +00:00
|
|
|
render_width = eglglessink->render_region.w;
|
|
|
|
render_height = eglglessink->render_region.h;
|
|
|
|
|
|
|
|
texture_width = eglglessink->configured_info.width;
|
|
|
|
texture_height = eglglessink->configured_info.height;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Performing VBO setup");
|
|
|
|
|
2012-12-26 13:39:03 +00:00
|
|
|
x1 = (eglglessink->display_region.x / render_width) * 2.0 - 1;
|
|
|
|
y1 = (eglglessink->display_region.y / render_height) * 2.0 - 1;
|
2012-10-17 13:04:11 +00:00
|
|
|
x2 = ((eglglessink->display_region.x +
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->display_region.w) / render_width) * 2.0 - 1;
|
2012-10-17 13:04:11 +00:00
|
|
|
y2 = ((eglglessink->display_region.y +
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->display_region.h) / render_height) * 2.0 - 1;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2012-12-26 13:39:03 +00:00
|
|
|
tx1 = (eglglessink->crop.x / texture_width);
|
|
|
|
tx2 = ((eglglessink->crop.x + eglglessink->crop.w) / texture_width);
|
|
|
|
ty1 = (eglglessink->crop.y / texture_height);
|
|
|
|
ty2 = ((eglglessink->crop.y + eglglessink->crop.h) / texture_height);
|
2012-10-22 09:41:44 +00:00
|
|
|
|
2013-03-13 11:50:44 +00:00
|
|
|
/* X-normal, Y-normal orientation */
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[0].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[0].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[0].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[0].a = tx2;
|
|
|
|
eglglessink->egl_context->position_array[0].b = ty1;
|
|
|
|
|
|
|
|
eglglessink->egl_context->position_array[1].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[1].y = y1;
|
|
|
|
eglglessink->egl_context->position_array[1].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[1].a = tx2;
|
|
|
|
eglglessink->egl_context->position_array[1].b = ty2;
|
|
|
|
|
|
|
|
eglglessink->egl_context->position_array[2].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[2].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[2].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[2].a = tx1;
|
|
|
|
eglglessink->egl_context->position_array[2].b = ty1;
|
|
|
|
|
|
|
|
eglglessink->egl_context->position_array[3].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[3].y = y1;
|
|
|
|
eglglessink->egl_context->position_array[3].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[3].a = tx1;
|
|
|
|
eglglessink->egl_context->position_array[3].b = ty2;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-03-13 11:50:44 +00:00
|
|
|
/* X-normal, Y-flip orientation */
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[4 + 0].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[4 + 0].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[4 + 0].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[4 + 0].a = tx2;
|
|
|
|
eglglessink->egl_context->position_array[4 + 0].b = ty2;
|
|
|
|
|
|
|
|
eglglessink->egl_context->position_array[4 + 1].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[4 + 1].y = y1;
|
|
|
|
eglglessink->egl_context->position_array[4 + 1].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[4 + 1].a = tx2;
|
|
|
|
eglglessink->egl_context->position_array[4 + 1].b = ty1;
|
|
|
|
|
|
|
|
eglglessink->egl_context->position_array[4 + 2].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[4 + 2].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[4 + 2].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[4 + 2].a = tx1;
|
|
|
|
eglglessink->egl_context->position_array[4 + 2].b = ty2;
|
|
|
|
|
|
|
|
eglglessink->egl_context->position_array[4 + 3].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[4 + 3].y = y1;
|
|
|
|
eglglessink->egl_context->position_array[4 + 3].z = 0;
|
|
|
|
eglglessink->egl_context->position_array[4 + 3].a = tx1;
|
|
|
|
eglglessink->egl_context->position_array[4 + 3].b = ty1;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
|
|
|
|
2013-03-13 11:50:44 +00:00
|
|
|
if (eglglessink->display_region.x == 0) {
|
|
|
|
/* Borders top/bottom */
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 0].x = 1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 0].y = 1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 0].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 1].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[8 + 1].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[8 + 1].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 2].x = -1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 2].y = 1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 2].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 3].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 3].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[8 + 3].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 0].x = 1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 0].y = y1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 0].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 1].x = 1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 1].y = -1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 1].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 2].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 2].y = y1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 2].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 3].x = -1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 3].y = -1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 3].z = 0;
|
2013-03-13 11:50:44 +00:00
|
|
|
} else {
|
|
|
|
/* Borders left/right */
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 0].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 0].y = 1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 0].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 1].x = x1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 1].y = -1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 1].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 2].x = -1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 2].y = 1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 2].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[8 + 3].x = -1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 3].y = -1;
|
|
|
|
eglglessink->egl_context->position_array[8 + 3].z = 0;
|
2013-03-13 11:50:44 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 0].x = 1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 0].y = 1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 0].z = 0;
|
2013-03-13 11:50:44 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 1].x = 1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 1].y = -1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 1].z = 0;
|
2013-03-13 11:50:44 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 2].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[12 + 2].y = y2;
|
|
|
|
eglglessink->egl_context->position_array[12 + 2].z = 0;
|
2013-03-13 11:50:44 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->position_array[12 + 3].x = x2;
|
|
|
|
eglglessink->egl_context->position_array[12 + 3].y = -1;
|
|
|
|
eglglessink->egl_context->position_array[12 + 3].z = 0;
|
2012-10-17 13:04:11 +00:00
|
|
|
}
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->index_array[0] = 0;
|
|
|
|
eglglessink->egl_context->index_array[1] = 1;
|
|
|
|
eglglessink->egl_context->index_array[2] = 2;
|
|
|
|
eglglessink->egl_context->index_array[3] = 3;
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glGenBuffers (1, &eglglessink->egl_context->position_buffer);
|
|
|
|
glGenBuffers (1, &eglglessink->egl_context->index_buffer);
|
2012-10-17 13:04:11 +00:00
|
|
|
if (got_gl_error ("glGenBuffers"))
|
|
|
|
goto HANDLE_ERROR_LOCKED;
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindBuffer (GL_ARRAY_BUFFER, eglglessink->egl_context->position_buffer);
|
2012-10-17 13:04:11 +00:00
|
|
|
if (got_gl_error ("glBindBuffer position_buffer"))
|
|
|
|
goto HANDLE_ERROR_LOCKED;
|
|
|
|
|
|
|
|
glBufferData (GL_ARRAY_BUFFER,
|
2013-04-10 20:27:27 +00:00
|
|
|
sizeof (eglglessink->egl_context->position_array),
|
|
|
|
eglglessink->egl_context->position_array, GL_STATIC_DRAW);
|
2012-10-17 13:04:11 +00:00
|
|
|
if (got_gl_error ("glBufferData position_buffer"))
|
|
|
|
goto HANDLE_ERROR_LOCKED;
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindBuffer (GL_ELEMENT_ARRAY_BUFFER,
|
|
|
|
eglglessink->egl_context->index_buffer);
|
2012-10-17 13:04:11 +00:00
|
|
|
if (got_gl_error ("glBindBuffer index_buffer"))
|
|
|
|
goto HANDLE_ERROR_LOCKED;
|
|
|
|
|
|
|
|
glBufferData (GL_ELEMENT_ARRAY_BUFFER,
|
2013-04-10 20:27:27 +00:00
|
|
|
sizeof (eglglessink->egl_context->index_array),
|
|
|
|
eglglessink->egl_context->index_array, GL_STATIC_DRAW);
|
2012-10-17 13:04:11 +00:00
|
|
|
if (got_gl_error ("glBufferData index_buffer"))
|
|
|
|
goto HANDLE_ERROR_LOCKED;
|
|
|
|
|
2013-04-10 17:53:48 +00:00
|
|
|
eglglessink->egl_context->have_vbo = TRUE;
|
2013-05-15 14:49:22 +00:00
|
|
|
|
2012-10-17 13:04:11 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "VBO setup done");
|
2012-09-11 14:51:28 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
HANDLE_ERROR_LOCKED:
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unable to perform VBO setup");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
static void
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_eglglessink_set_window_handle (GstVideoOverlay * overlay, guintptr id)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink = GST_EGLGLESSINK (overlay);
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_EGLGLESSINK (eglglessink));
|
2012-10-17 08:08:10 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "We got a window handle: %p", (gpointer) id);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
/* OK, we have a new window */
|
2012-10-16 12:15:58 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
2013-09-23 12:36:40 +00:00
|
|
|
gst_egl_adaptation_set_window (eglglessink->egl_context, id);
|
2012-10-17 08:08:10 +00:00
|
|
|
eglglessink->have_window = ((gpointer) id != NULL);
|
2012-10-16 12:15:58 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-09-21 03:09:06 +00:00
|
|
|
static void
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_eglglessink_set_render_rectangle (GstVideoOverlay * overlay, gint x, gint y,
|
2012-09-21 03:09:06 +00:00
|
|
|
gint width, gint height)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink = GST_EGLGLESSINK (overlay);
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_EGLGLESSINK (eglglessink));
|
|
|
|
|
2012-10-16 12:15:58 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->render_region.x = x;
|
|
|
|
eglglessink->render_region.y = y;
|
|
|
|
eglglessink->render_region.w = width;
|
|
|
|
eglglessink->render_region.h = height;
|
|
|
|
eglglessink->render_region_changed = TRUE;
|
|
|
|
eglglessink->render_region_user = (width != -1 && height != -1);
|
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-09-21 03:09:06 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
static void
|
|
|
|
queue_item_destroy (GstDataQueueItem * item)
|
|
|
|
{
|
2012-12-28 11:27:43 +00:00
|
|
|
if (item->object && !GST_IS_QUERY (item->object))
|
|
|
|
gst_mini_object_unref (item->object);
|
2012-10-16 13:40:11 +00:00
|
|
|
g_slice_free (GstDataQueueItem, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2012-12-30 09:18:05 +00:00
|
|
|
gst_eglglessink_queue_object (GstEglGlesSink * eglglessink, GstMiniObject * obj)
|
2012-10-16 13:40:11 +00:00
|
|
|
{
|
2012-12-30 10:32:02 +00:00
|
|
|
GstDataQueueItem *item;
|
2012-12-30 13:22:43 +00:00
|
|
|
GstFlowReturn last_flow;
|
|
|
|
|
|
|
|
g_mutex_lock (&eglglessink->render_lock);
|
|
|
|
last_flow = eglglessink->last_flow;
|
|
|
|
g_mutex_unlock (&eglglessink->render_lock);
|
2012-12-30 10:32:02 +00:00
|
|
|
|
2012-12-30 13:22:43 +00:00
|
|
|
if (last_flow != GST_FLOW_OK)
|
|
|
|
return last_flow;
|
2012-12-30 10:32:29 +00:00
|
|
|
|
2012-12-30 10:32:02 +00:00
|
|
|
item = g_slice_new0 (GstDataQueueItem);
|
2012-10-16 13:40:11 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (obj == NULL)
|
|
|
|
item->object = NULL;
|
|
|
|
else if (GST_IS_QUERY (obj))
|
|
|
|
item->object = obj;
|
|
|
|
else
|
|
|
|
item->object = gst_mini_object_ref (obj);
|
2012-12-30 09:18:05 +00:00
|
|
|
item->size = 0;
|
|
|
|
item->duration = GST_CLOCK_TIME_NONE;
|
|
|
|
item->visible = TRUE;
|
2012-10-16 13:40:11 +00:00
|
|
|
item->destroy = (GDestroyNotify) queue_item_destroy;
|
|
|
|
|
2012-12-30 09:18:05 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Queueing object %" GST_PTR_FORMAT, obj);
|
2012-10-16 14:12:48 +00:00
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
g_mutex_lock (&eglglessink->render_lock);
|
2012-10-16 13:40:11 +00:00
|
|
|
if (!gst_data_queue_push (eglglessink->queue, item)) {
|
2012-10-31 12:54:28 +00:00
|
|
|
item->destroy (item);
|
2012-10-25 12:28:49 +00:00
|
|
|
g_mutex_unlock (&eglglessink->render_lock);
|
2012-10-16 14:12:48 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Flushing");
|
2012-10-22 09:18:39 +00:00
|
|
|
return GST_FLOW_FLUSHING;
|
2012-10-16 13:40:11 +00:00
|
|
|
}
|
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Waiting for object to be handled");
|
2013-01-03 09:40:34 +00:00
|
|
|
do {
|
|
|
|
g_cond_wait (&eglglessink->render_cond, &eglglessink->render_lock);
|
|
|
|
} while (eglglessink->dequeued_object != obj
|
|
|
|
&& eglglessink->last_flow != GST_FLOW_FLUSHING);
|
2013-01-01 09:44:45 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Object handled: %s",
|
|
|
|
gst_flow_get_name (eglglessink->last_flow));
|
|
|
|
last_flow = eglglessink->last_flow;
|
|
|
|
g_mutex_unlock (&eglglessink->render_lock);
|
2012-10-16 13:40:11 +00:00
|
|
|
|
2012-12-30 13:22:43 +00:00
|
|
|
return (obj ? last_flow : GST_FLOW_OK);
|
2012-10-16 13:40:11 +00:00
|
|
|
}
|
|
|
|
|
2012-10-22 09:41:44 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_crop_changed (GstEglGlesSink * eglglessink,
|
|
|
|
GstVideoCropMeta * crop)
|
|
|
|
{
|
|
|
|
if (crop) {
|
|
|
|
return (crop->x != eglglessink->crop.x ||
|
|
|
|
crop->y != eglglessink->crop.y ||
|
2012-12-26 13:39:03 +00:00
|
|
|
crop->width != eglglessink->crop.w ||
|
|
|
|
crop->height != eglglessink->crop.h);
|
2012-10-22 09:41:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (eglglessink->crop.x != 0 || eglglessink->crop.y != 0 ||
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->crop.w != eglglessink->configured_info.width ||
|
|
|
|
eglglessink->crop.h != eglglessink->configured_info.height);
|
2012-10-22 09:41:44 +00:00
|
|
|
}
|
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_fill_texture (GstEglGlesSink * eglglessink, GstBuffer * buf)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
2012-10-22 09:18:39 +00:00
|
|
|
GstVideoFrame vframe;
|
2013-07-29 07:35:08 +00:00
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
|
|
|
gint w;
|
|
|
|
#endif
|
|
|
|
gint h;
|
2012-09-21 04:09:11 +00:00
|
|
|
|
2012-10-22 09:18:39 +00:00
|
|
|
memset (&vframe, 0, sizeof (vframe));
|
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (!gst_video_frame_map (&vframe, &eglglessink->configured_info, buf,
|
|
|
|
GST_MAP_READ)) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Couldn't map frame");
|
|
|
|
goto HANDLE_ERROR;
|
2012-10-22 09:18:39 +00:00
|
|
|
}
|
2013-07-29 07:35:08 +00:00
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
2012-12-28 11:27:43 +00:00
|
|
|
w = GST_VIDEO_FRAME_WIDTH (&vframe);
|
2013-07-29 07:35:08 +00:00
|
|
|
#endif
|
2012-12-28 11:27:43 +00:00
|
|
|
h = GST_VIDEO_FRAME_HEIGHT (&vframe);
|
2012-12-26 13:39:03 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink,
|
2013-04-10 17:53:48 +00:00
|
|
|
"Got buffer %p: %dx%d size %" G_GSIZE_FORMAT, buf, w, h,
|
|
|
|
gst_buffer_get_size (buf));
|
2012-12-28 11:40:14 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
switch (eglglessink->configured_info.finfo->format) {
|
|
|
|
case GST_VIDEO_FORMAT_BGR:
|
|
|
|
case GST_VIDEO_FORMAT_RGB:{
|
2012-12-28 11:27:43 +00:00
|
|
|
gint stride;
|
|
|
|
gint stride_width;
|
|
|
|
gint c_w;
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_WIDTH (&vframe);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
glActiveTexture (GL_TEXTURE0);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (GST_ROUND_UP_8 (c_w * 3) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w * 3) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (c_w * 3) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (c_w * 3 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (GST_ROUND_UP_8 (stride_width * 3) == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
2012-12-28 11:27:43 +00:00
|
|
|
} else if (GST_ROUND_UP_4 (stride_width * 3) == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
2012-12-28 11:27:43 +00:00
|
|
|
} else if (GST_ROUND_UP_2 (stride_width * 3) == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
2012-12-28 11:27:43 +00:00
|
|
|
} else if (stride_width * 3 == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
2012-12-28 11:27:43 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
2012-12-26 16:25:36 +00:00
|
|
|
goto HANDLE_ERROR;
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
eglglessink->stride[0] = ((gdouble) stride_width) / ((gdouble) c_w);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[0]);
|
2012-12-28 11:27:43 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_RGB, stride_width, h, 0, GL_RGB,
|
|
|
|
GL_UNSIGNED_BYTE, GST_VIDEO_FRAME_PLANE_DATA (&vframe, 0));
|
|
|
|
break;
|
|
|
|
}
|
2013-03-05 11:47:07 +00:00
|
|
|
case GST_VIDEO_FORMAT_RGB16:{
|
2012-12-28 11:27:43 +00:00
|
|
|
gint stride;
|
|
|
|
gint stride_width;
|
|
|
|
gint c_w;
|
|
|
|
|
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_WIDTH (&vframe);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
glActiveTexture (GL_TEXTURE0);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (GST_ROUND_UP_8 (c_w * 2) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w * 2) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (c_w * 2 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (GST_ROUND_UP_8 (stride_width * 4) == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
2012-12-28 11:27:43 +00:00
|
|
|
} else if (GST_ROUND_UP_4 (stride_width * 2) == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
2012-12-28 11:27:43 +00:00
|
|
|
} else if (stride_width * 2 == stride) {
|
2012-12-26 16:25:36 +00:00
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else {
|
2012-12-28 11:27:43 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
eglglessink->stride[0] = ((gdouble) stride_width) / ((gdouble) c_w);
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[0]);
|
2012-12-28 11:27:43 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_RGB, stride_width, h, 0, GL_RGB,
|
|
|
|
GL_UNSIGNED_SHORT_5_6_5, GST_VIDEO_FRAME_PLANE_DATA (&vframe, 0));
|
|
|
|
break;
|
|
|
|
}
|
2013-03-05 11:47:07 +00:00
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
|
|
|
case GST_VIDEO_FORMAT_RGBx:
|
|
|
|
case GST_VIDEO_FORMAT_BGRx:
|
|
|
|
case GST_VIDEO_FORMAT_xRGB:
|
|
|
|
case GST_VIDEO_FORMAT_xBGR:{
|
|
|
|
gint stride;
|
|
|
|
gint stride_width;
|
|
|
|
gint c_w;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_WIDTH (&vframe);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE0);
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (c_w * 4) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (c_w * 4 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
if (GST_ROUND_UP_8 (stride_width * 4) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (stride_width * 4 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
2013-03-05 11:47:07 +00:00
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
eglglessink->stride[0] = ((gdouble) stride_width) / ((gdouble) c_w);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[0]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA, stride_width, h, 0,
|
|
|
|
GL_RGBA, GL_UNSIGNED_BYTE, GST_VIDEO_FRAME_PLANE_DATA (&vframe, 0));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_VIDEO_FORMAT_AYUV:{
|
|
|
|
gint stride;
|
|
|
|
gint stride_width;
|
|
|
|
gint c_w;
|
|
|
|
|
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_WIDTH (&vframe);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE0);
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (c_w * 4) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (c_w * 4 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
if (GST_ROUND_UP_8 (stride_width * 4) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (stride_width * 4 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
2013-03-05 11:47:07 +00:00
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
eglglessink->stride[0] = ((gdouble) stride_width) / ((gdouble) c_w);
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[0]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA, stride_width, h, 0,
|
|
|
|
GL_RGBA, GL_UNSIGNED_BYTE, GST_VIDEO_FRAME_PLANE_DATA (&vframe, 0));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_VIDEO_FORMAT_Y444:
|
|
|
|
case GST_VIDEO_FORMAT_I420:
|
|
|
|
case GST_VIDEO_FORMAT_YV12:
|
|
|
|
case GST_VIDEO_FORMAT_Y42B:
|
|
|
|
case GST_VIDEO_FORMAT_Y41B:{
|
|
|
|
gint stride;
|
|
|
|
gint stride_width;
|
|
|
|
gint c_w;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_COMP_WIDTH (&vframe, 0);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
glActiveTexture (GL_TEXTURE0);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
if (GST_ROUND_UP_8 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (c_w == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
if (GST_ROUND_UP_8 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (stride_width == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
2013-03-05 11:47:07 +00:00
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
eglglessink->stride[0] = ((gdouble) stride_width) / ((gdouble) c_w);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[0]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_LUMINANCE,
|
|
|
|
stride_width,
|
|
|
|
GST_VIDEO_FRAME_COMP_HEIGHT (&vframe, 0),
|
|
|
|
0, GL_LUMINANCE, GL_UNSIGNED_BYTE,
|
|
|
|
GST_VIDEO_FRAME_COMP_DATA (&vframe, 0));
|
2012-12-26 16:25:36 +00:00
|
|
|
|
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 1);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_COMP_WIDTH (&vframe, 1);
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-03-05 11:47:07 +00:00
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (c_w == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (stride_width == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
|
|
|
eglglessink->stride[1] = ((gdouble) stride_width) / ((gdouble) c_w);
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[1]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_LUMINANCE,
|
|
|
|
stride_width,
|
|
|
|
GST_VIDEO_FRAME_COMP_HEIGHT (&vframe, 1),
|
|
|
|
0, GL_LUMINANCE, GL_UNSIGNED_BYTE,
|
|
|
|
GST_VIDEO_FRAME_COMP_DATA (&vframe, 1));
|
|
|
|
|
|
|
|
|
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 2);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_COMP_WIDTH (&vframe, 2);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE2);
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (c_w == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (stride_width == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
|
|
|
eglglessink->stride[2] = ((gdouble) stride_width) / ((gdouble) c_w);
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[2]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_LUMINANCE,
|
|
|
|
stride_width,
|
|
|
|
GST_VIDEO_FRAME_COMP_HEIGHT (&vframe, 2),
|
|
|
|
0, GL_LUMINANCE, GL_UNSIGNED_BYTE,
|
|
|
|
GST_VIDEO_FRAME_COMP_DATA (&vframe, 2));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_VIDEO_FORMAT_NV12:
|
|
|
|
case GST_VIDEO_FORMAT_NV21:{
|
|
|
|
gint stride;
|
|
|
|
gint stride_width;
|
|
|
|
gint c_w;
|
|
|
|
|
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_COMP_WIDTH (&vframe, 0);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE0);
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (c_w) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (c_w == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
stride_width = stride;
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (GST_ROUND_UP_2 (stride_width) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else if (stride_width == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
2012-09-24 12:43:50 +00:00
|
|
|
}
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
2013-03-05 11:47:07 +00:00
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
|
|
|
eglglessink->stride[0] = ((gdouble) stride_width) / ((gdouble) c_w);
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[0]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_LUMINANCE,
|
|
|
|
stride_width,
|
|
|
|
GST_VIDEO_FRAME_COMP_HEIGHT (&vframe, 0),
|
|
|
|
0, GL_LUMINANCE, GL_UNSIGNED_BYTE,
|
|
|
|
GST_VIDEO_FRAME_PLANE_DATA (&vframe, 0));
|
|
|
|
|
|
|
|
|
|
|
|
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 1);
|
|
|
|
stride_width = c_w = GST_VIDEO_FRAME_COMP_WIDTH (&vframe, 1);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (c_w * 2) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (c_w * 2) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (c_w * 2 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else {
|
|
|
|
stride_width = stride / 2;
|
|
|
|
|
|
|
|
if (GST_ROUND_UP_8 (stride_width * 2) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 8);
|
|
|
|
} else if (GST_ROUND_UP_4 (stride_width * 2) == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 4);
|
|
|
|
} else if (stride_width * 2 == stride) {
|
|
|
|
glPixelStorei (GL_UNPACK_ALIGNMENT, 2);
|
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported stride %d", stride);
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (got_gl_error ("glPixelStorei"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
|
|
|
eglglessink->stride[1] = ((gdouble) stride_width) / ((gdouble) c_w);
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[1]);
|
2013-03-05 11:47:07 +00:00
|
|
|
glTexImage2D (GL_TEXTURE_2D, 0, GL_LUMINANCE_ALPHA,
|
|
|
|
stride_width,
|
|
|
|
GST_VIDEO_FRAME_COMP_HEIGHT (&vframe, 1),
|
|
|
|
0, GL_LUMINANCE_ALPHA, GL_UNSIGNED_BYTE,
|
|
|
|
GST_VIDEO_FRAME_PLANE_DATA (&vframe, 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
2012-09-13 01:11:39 +00:00
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (got_gl_error ("glTexImage2D"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
|
|
|
gst_video_frame_unmap (&vframe);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
HANDLE_ERROR:
|
|
|
|
{
|
|
|
|
if (vframe.buffer)
|
|
|
|
gst_video_frame_unmap (&vframe);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rendering and display */
|
|
|
|
static GstFlowReturn
|
2013-01-01 09:44:45 +00:00
|
|
|
gst_eglglessink_upload (GstEglGlesSink * eglglessink, GstBuffer * buf)
|
2012-12-28 11:27:43 +00:00
|
|
|
{
|
|
|
|
GstVideoCropMeta *crop = NULL;
|
|
|
|
|
|
|
|
if (!buf) {
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Rendering previous buffer again");
|
|
|
|
} else if (buf) {
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-02-21 16:43:49 +00:00
|
|
|
GstMemory *mem;
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-03-29 15:05:01 +00:00
|
|
|
GstVideoGLTextureUploadMeta *upload_meta;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
|
|
|
crop = gst_buffer_get_video_crop_meta (buf);
|
|
|
|
|
2013-03-29 15:05:01 +00:00
|
|
|
upload_meta = gst_buffer_get_video_gl_texture_upload_meta (buf);
|
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
if (gst_eglglessink_crop_changed (eglglessink, crop)) {
|
|
|
|
if (crop) {
|
|
|
|
eglglessink->crop.x = crop->x;
|
|
|
|
eglglessink->crop.y = crop->y;
|
|
|
|
eglglessink->crop.w = crop->width;
|
|
|
|
eglglessink->crop.h = crop->height;
|
|
|
|
} else {
|
|
|
|
eglglessink->crop.x = 0;
|
|
|
|
eglglessink->crop.y = 0;
|
|
|
|
eglglessink->crop.w = eglglessink->configured_info.width;
|
|
|
|
eglglessink->crop.h = eglglessink->configured_info.height;
|
|
|
|
}
|
|
|
|
eglglessink->crop_changed = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-03-29 15:05:01 +00:00
|
|
|
if (upload_meta) {
|
2013-04-17 08:48:31 +00:00
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (upload_meta->n_textures != eglglessink->egl_context->n_textures)
|
2013-03-29 15:05:01 +00:00
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
2013-04-17 08:48:31 +00:00
|
|
|
for (i = 0; i < eglglessink->egl_context->n_textures; i++) {
|
|
|
|
if (i == 0)
|
|
|
|
glActiveTexture (GL_TEXTURE0);
|
|
|
|
else if (i == 1)
|
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
else if (i == 2)
|
|
|
|
glActiveTexture (GL_TEXTURE2);
|
|
|
|
|
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gst_video_gl_texture_upload_meta_upload (upload_meta,
|
|
|
|
eglglessink->egl_context->texture))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
|
|
|
eglglessink->orientation = upload_meta->texture_orientation;
|
|
|
|
eglglessink->stride[0] = 1;
|
|
|
|
eglglessink->stride[1] = 1;
|
|
|
|
eglglessink->stride[2] = 1;
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-03-29 15:05:01 +00:00
|
|
|
} else if (gst_buffer_n_memory (buf) >= 1 &&
|
2013-02-21 16:43:49 +00:00
|
|
|
(mem = gst_buffer_peek_memory (buf, 0))
|
|
|
|
&& gst_is_egl_image_memory (mem)) {
|
|
|
|
guint n, i;
|
|
|
|
|
|
|
|
n = gst_buffer_n_memory (buf);
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
mem = gst_buffer_peek_memory (buf, i);
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2013-02-21 16:43:49 +00:00
|
|
|
g_assert (gst_is_egl_image_memory (mem));
|
2012-12-28 11:27:43 +00:00
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
glActiveTexture (GL_TEXTURE0);
|
|
|
|
else if (i == 1)
|
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
else if (i == 2)
|
|
|
|
glActiveTexture (GL_TEXTURE2);
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glBindTexture (GL_TEXTURE_2D, eglglessink->egl_context->texture[i]);
|
2013-02-21 16:43:49 +00:00
|
|
|
glEGLImageTargetTexture2DOES (GL_TEXTURE_2D,
|
|
|
|
gst_egl_image_memory_get_image (mem));
|
2013-01-01 09:48:19 +00:00
|
|
|
if (got_gl_error ("glEGLImageTargetTexture2DOES"))
|
|
|
|
goto HANDLE_ERROR;
|
2013-03-13 11:50:44 +00:00
|
|
|
eglglessink->orientation = gst_egl_image_memory_get_orientation (mem);
|
|
|
|
if (eglglessink->orientation !=
|
2013-04-17 08:48:31 +00:00
|
|
|
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_NORMAL
|
2013-03-13 11:50:44 +00:00
|
|
|
&& eglglessink->orientation !=
|
2013-04-17 08:48:31 +00:00
|
|
|
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_FLIP) {
|
2013-03-13 11:50:44 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Unsupported EGLImage orientation");
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
2012-12-28 11:27:43 +00:00
|
|
|
}
|
2013-09-04 09:58:24 +00:00
|
|
|
if (eglglessink->pool)
|
|
|
|
gst_egl_image_buffer_pool_replace_last_buffer (GST_EGL_IMAGE_BUFFER_POOL
|
|
|
|
(eglglessink->pool), buf);
|
2012-12-28 11:27:43 +00:00
|
|
|
eglglessink->stride[0] = 1;
|
|
|
|
eglglessink->stride[1] = 1;
|
|
|
|
eglglessink->stride[2] = 1;
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2012-12-28 11:27:43 +00:00
|
|
|
} else {
|
2013-04-17 08:48:31 +00:00
|
|
|
eglglessink->orientation =
|
|
|
|
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_NORMAL;
|
2012-12-28 11:27:43 +00:00
|
|
|
if (!gst_eglglessink_fill_texture (eglglessink, buf))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
2012-10-18 03:33:26 +00:00
|
|
|
}
|
2012-09-11 13:20:16 +00:00
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
HANDLE_ERROR:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Failed to upload texture");
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_eglglessink_render (GstEglGlesSink * eglglessink)
|
|
|
|
{
|
|
|
|
guint dar_n, dar_d;
|
|
|
|
gint i;
|
|
|
|
|
2012-10-18 03:33:26 +00:00
|
|
|
/* If no one has set a display rectangle on us initialize
|
|
|
|
* a sane default. According to the docs on the xOverlay
|
|
|
|
* interface we are supposed to fill the overlay 100%. We
|
|
|
|
* do this trying to take PAR/DAR into account unless the
|
|
|
|
* calling party explicitly ask us not to by setting
|
|
|
|
* force_aspect_ratio to FALSE.
|
|
|
|
*/
|
2013-04-10 17:53:48 +00:00
|
|
|
if (gst_egl_adaptation_update_surface_dimensions (eglglessink->egl_context) ||
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->render_region_changed ||
|
2012-10-22 09:41:44 +00:00
|
|
|
!eglglessink->display_region.w || !eglglessink->display_region.h ||
|
2013-01-01 09:44:45 +00:00
|
|
|
eglglessink->crop_changed) {
|
2012-10-18 03:33:26 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
2012-12-26 13:39:03 +00:00
|
|
|
|
|
|
|
if (!eglglessink->render_region_user) {
|
|
|
|
eglglessink->render_region.x = 0;
|
|
|
|
eglglessink->render_region.y = 0;
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->render_region.w = eglglessink->egl_context->surface_width;
|
|
|
|
eglglessink->render_region.h = eglglessink->egl_context->surface_height;
|
2012-12-26 13:39:03 +00:00
|
|
|
}
|
|
|
|
eglglessink->render_region_changed = FALSE;
|
2013-01-01 09:44:45 +00:00
|
|
|
eglglessink->crop_changed = FALSE;
|
2012-10-22 09:41:44 +00:00
|
|
|
|
2012-10-18 03:33:26 +00:00
|
|
|
if (!eglglessink->force_aspect_ratio) {
|
|
|
|
eglglessink->display_region.x = 0;
|
|
|
|
eglglessink->display_region.y = 0;
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->display_region.w = eglglessink->render_region.w;
|
|
|
|
eglglessink->display_region.h = eglglessink->render_region.h;
|
2012-10-18 03:33:26 +00:00
|
|
|
} else {
|
2012-12-26 13:39:03 +00:00
|
|
|
GstVideoRectangle frame;
|
|
|
|
|
|
|
|
frame.x = 0;
|
|
|
|
frame.y = 0;
|
|
|
|
|
2012-10-22 09:41:44 +00:00
|
|
|
if (!gst_video_calculate_display_ratio (&dar_n, &dar_d,
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->crop.w, eglglessink->crop.h,
|
2012-10-22 09:41:44 +00:00
|
|
|
eglglessink->configured_info.par_n,
|
|
|
|
eglglessink->configured_info.par_d,
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->pixel_aspect_ratio_n,
|
|
|
|
eglglessink->egl_context->pixel_aspect_ratio_d)) {
|
2012-10-18 03:33:26 +00:00
|
|
|
GST_WARNING_OBJECT (eglglessink, "Could not compute resulting DAR");
|
2012-12-26 13:39:03 +00:00
|
|
|
frame.w = eglglessink->crop.w;
|
|
|
|
frame.h = eglglessink->crop.h;
|
2012-10-18 03:33:26 +00:00
|
|
|
} else {
|
|
|
|
/* Find suitable matching new size acording to dar & par
|
|
|
|
* rationale for prefering leaving the height untouched
|
|
|
|
* comes from interlacing considerations.
|
|
|
|
* XXX: Move this to gstutils?
|
|
|
|
*/
|
2012-12-26 13:39:03 +00:00
|
|
|
if (eglglessink->crop.h % dar_d == 0) {
|
2012-10-22 09:41:44 +00:00
|
|
|
frame.w =
|
2012-12-26 13:39:03 +00:00
|
|
|
gst_util_uint64_scale_int (eglglessink->crop.h, dar_n, dar_d);
|
|
|
|
frame.h = eglglessink->crop.h;
|
|
|
|
} else if (eglglessink->crop.w % dar_n == 0) {
|
2012-10-22 09:41:44 +00:00
|
|
|
frame.h =
|
2012-12-26 13:39:03 +00:00
|
|
|
gst_util_uint64_scale_int (eglglessink->crop.w, dar_d, dar_n);
|
|
|
|
frame.w = eglglessink->crop.w;
|
2012-09-21 04:09:11 +00:00
|
|
|
} else {
|
2012-10-18 03:33:26 +00:00
|
|
|
/* Neither width nor height can be precisely scaled.
|
|
|
|
* Prefer to leave height untouched. See comment above.
|
|
|
|
*/
|
2012-10-22 09:41:44 +00:00
|
|
|
frame.w =
|
2012-12-26 13:39:03 +00:00
|
|
|
gst_util_uint64_scale_int (eglglessink->crop.h, dar_n, dar_d);
|
|
|
|
frame.h = eglglessink->crop.h;
|
2012-09-21 04:09:11 +00:00
|
|
|
}
|
2012-10-18 03:33:26 +00:00
|
|
|
}
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2012-12-26 13:39:03 +00:00
|
|
|
gst_video_sink_center_rect (frame, eglglessink->render_region,
|
2012-10-18 03:33:26 +00:00
|
|
|
&eglglessink->display_region, TRUE);
|
|
|
|
}
|
2012-10-17 13:04:11 +00:00
|
|
|
|
2012-12-26 13:39:03 +00:00
|
|
|
glViewport (eglglessink->render_region.x,
|
2013-04-10 20:27:27 +00:00
|
|
|
eglglessink->egl_context->surface_height -
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->render_region.y -
|
2012-12-26 14:58:55 +00:00
|
|
|
eglglessink->render_region.h,
|
2012-12-26 13:39:03 +00:00
|
|
|
eglglessink->render_region.w, eglglessink->render_region.h);
|
2012-09-21 03:09:06 +00:00
|
|
|
|
2012-10-18 08:32:47 +00:00
|
|
|
/* Clear the surface once if its content is preserved */
|
2013-04-10 20:27:27 +00:00
|
|
|
if (eglglessink->egl_context->buffer_preserved) {
|
2012-10-18 08:32:47 +00:00
|
|
|
glClearColor (0.0, 0.0, 0.0, 1.0);
|
|
|
|
glClear (GL_COLOR_BUFFER_BIT);
|
|
|
|
}
|
|
|
|
|
2013-05-15 14:49:22 +00:00
|
|
|
if (!gst_eglglessink_setup_vbo (eglglessink)) {
|
2012-12-26 13:39:03 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-10-18 03:33:26 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "VBO setup failed");
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
2012-12-26 13:39:03 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-10-18 03:33:26 +00:00
|
|
|
}
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
if (!eglglessink->egl_context->buffer_preserved) {
|
2012-10-18 08:20:26 +00:00
|
|
|
/* Draw black borders */
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Drawing black border 1");
|
2013-04-10 20:27:27 +00:00
|
|
|
glUseProgram (eglglessink->egl_context->glslprogram[1]);
|
2012-10-18 03:33:26 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glVertexAttribPointer (eglglessink->egl_context->position_loc[1], 3,
|
2013-03-13 11:50:44 +00:00
|
|
|
GL_FLOAT, GL_FALSE, sizeof (coord5), (gpointer) (8 * sizeof (coord5)));
|
2012-10-18 08:20:26 +00:00
|
|
|
if (got_gl_error ("glVertexAttribPointer"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-10-18 03:33:26 +00:00
|
|
|
|
2012-10-18 08:20:26 +00:00
|
|
|
glDrawElements (GL_TRIANGLE_STRIP, 4, GL_UNSIGNED_SHORT, 0);
|
|
|
|
if (got_gl_error ("glDrawElements"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-10-18 03:33:26 +00:00
|
|
|
|
2012-10-18 08:20:26 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Drawing black border 2");
|
2012-10-18 03:33:26 +00:00
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
glVertexAttribPointer (eglglessink->egl_context->position_loc[1], 3,
|
2013-03-13 11:50:44 +00:00
|
|
|
GL_FLOAT, GL_FALSE, sizeof (coord5), (gpointer) (12 * sizeof (coord5)));
|
2012-10-18 08:20:26 +00:00
|
|
|
if (got_gl_error ("glVertexAttribPointer"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-10-18 03:33:26 +00:00
|
|
|
|
2012-10-18 08:20:26 +00:00
|
|
|
glDrawElements (GL_TRIANGLE_STRIP, 4, GL_UNSIGNED_SHORT, 0);
|
|
|
|
if (got_gl_error ("glDrawElements"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
2012-10-18 03:33:26 +00:00
|
|
|
|
|
|
|
/* Draw video frame */
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Drawing video frame");
|
|
|
|
|
2013-04-17 08:48:31 +00:00
|
|
|
glUseProgram (eglglessink->egl_context->glslprogram[0]);
|
2012-12-28 13:05:56 +00:00
|
|
|
|
2013-04-17 08:48:31 +00:00
|
|
|
glUniform2f (eglglessink->egl_context->tex_scale_loc[0][0],
|
|
|
|
eglglessink->stride[0], 1);
|
|
|
|
glUniform2f (eglglessink->egl_context->tex_scale_loc[0][1],
|
|
|
|
eglglessink->stride[1], 1);
|
|
|
|
glUniform2f (eglglessink->egl_context->tex_scale_loc[0][2],
|
|
|
|
eglglessink->stride[2], 1);
|
|
|
|
|
|
|
|
for (i = 0; i < eglglessink->egl_context->n_textures; i++) {
|
|
|
|
glUniform1i (eglglessink->egl_context->tex_loc[0][i], i);
|
2012-12-28 13:05:56 +00:00
|
|
|
if (got_gl_error ("glUniform1i"))
|
|
|
|
goto HANDLE_ERROR;
|
2013-04-17 08:48:31 +00:00
|
|
|
}
|
2012-12-26 16:25:36 +00:00
|
|
|
|
2013-04-17 08:48:31 +00:00
|
|
|
if (eglglessink->orientation ==
|
|
|
|
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_NORMAL) {
|
|
|
|
glVertexAttribPointer (eglglessink->egl_context->position_loc[0], 3,
|
|
|
|
GL_FLOAT, GL_FALSE, sizeof (coord5), (gpointer) (0 * sizeof (coord5)));
|
2013-03-13 11:50:44 +00:00
|
|
|
if (got_gl_error ("glVertexAttribPointer"))
|
|
|
|
goto HANDLE_ERROR;
|
2012-10-18 03:33:26 +00:00
|
|
|
|
2013-04-17 08:48:31 +00:00
|
|
|
glVertexAttribPointer (eglglessink->egl_context->texpos_loc[0], 2,
|
2013-03-13 11:50:44 +00:00
|
|
|
GL_FLOAT, GL_FALSE, sizeof (coord5), (gpointer) (3 * sizeof (gfloat)));
|
|
|
|
if (got_gl_error ("glVertexAttribPointer"))
|
|
|
|
goto HANDLE_ERROR;
|
2013-04-17 08:48:31 +00:00
|
|
|
} else if (eglglessink->orientation ==
|
|
|
|
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_FLIP) {
|
|
|
|
glVertexAttribPointer (eglglessink->egl_context->position_loc[0], 3,
|
|
|
|
GL_FLOAT, GL_FALSE, sizeof (coord5), (gpointer) (4 * sizeof (coord5)));
|
|
|
|
if (got_gl_error ("glVertexAttribPointer"))
|
|
|
|
goto HANDLE_ERROR;
|
2013-03-29 15:05:01 +00:00
|
|
|
|
2013-04-17 08:48:31 +00:00
|
|
|
glVertexAttribPointer (eglglessink->egl_context->texpos_loc[0], 2,
|
|
|
|
GL_FLOAT, GL_FALSE, sizeof (coord5),
|
|
|
|
(gpointer) (4 * sizeof (coord5) + 3 * sizeof (gfloat)));
|
|
|
|
if (got_gl_error ("glVertexAttribPointer"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
} else {
|
|
|
|
g_assert_not_reached ();
|
2013-03-13 11:50:44 +00:00
|
|
|
}
|
2012-10-18 03:33:26 +00:00
|
|
|
|
|
|
|
glDrawElements (GL_TRIANGLE_STRIP, 4, GL_UNSIGNED_SHORT, 0);
|
|
|
|
if (got_gl_error ("glDrawElements"))
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
|
2013-04-10 20:27:27 +00:00
|
|
|
if (!gst_egl_adaptation_context_swap_buffers (eglglessink->egl_context)) {
|
2012-10-18 03:33:26 +00:00
|
|
|
goto HANDLE_ERROR;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2012-10-22 09:18:39 +00:00
|
|
|
|
2012-09-11 13:20:16 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Succesfully rendered 1 frame");
|
2012-09-11 15:04:30 +00:00
|
|
|
return GST_FLOW_OK;
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
HANDLE_ERROR:
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Rendering disabled for this frame");
|
2012-10-03 08:53:25 +00:00
|
|
|
|
2012-09-11 15:04:30 +00:00
|
|
|
return GST_FLOW_ERROR;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_eglglessink_prepare (GstBaseSink * bsink, GstBuffer * buf)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
|
|
|
|
g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (bsink);
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Got buffer: %p", buf);
|
|
|
|
|
|
|
|
return gst_eglglessink_queue_object (eglglessink, GST_MINI_OBJECT_CAST (buf));
|
|
|
|
}
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_eglglessink_show_frame (GstVideoSink * vsink, GstBuffer * buf)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
|
|
|
|
g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (vsink);
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Got buffer: %p", buf);
|
|
|
|
|
2013-01-01 09:44:45 +00:00
|
|
|
return gst_eglglessink_queue_object (eglglessink, NULL);
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2012-09-20 14:08:28 +00:00
|
|
|
static GstCaps *
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_eglglessink_getcaps (GstBaseSink * bsink, GstCaps * filter)
|
2012-09-20 14:08:28 +00:00
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
GstCaps *ret = NULL;
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (bsink);
|
|
|
|
|
2012-10-16 12:15:58 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
2012-09-24 09:48:59 +00:00
|
|
|
if (eglglessink->sinkcaps) {
|
|
|
|
ret = gst_caps_ref (eglglessink->sinkcaps);
|
2012-09-20 14:08:28 +00:00
|
|
|
} else {
|
|
|
|
ret =
|
|
|
|
gst_caps_copy (gst_pad_get_pad_template_caps (GST_BASE_SINK_PAD
|
|
|
|
(bsink)));
|
|
|
|
}
|
2012-10-16 12:15:58 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-09-20 14:08:28 +00:00
|
|
|
|
2012-10-22 09:18:39 +00:00
|
|
|
if (filter) {
|
|
|
|
GstCaps *tmp =
|
|
|
|
gst_caps_intersect_full (filter, ret, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
|
|
|
|
gst_caps_unref (ret);
|
|
|
|
ret = tmp;
|
|
|
|
}
|
|
|
|
|
2012-09-20 14:08:28 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-03-28 16:48:04 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_query (GstBaseSink * bsink, GstQuery * query)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (bsink);
|
|
|
|
|
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-03-28 16:48:04 +00:00
|
|
|
case GST_QUERY_CONTEXT:{
|
2013-09-18 20:36:51 +00:00
|
|
|
const gchar *context_type;
|
2013-03-28 16:48:04 +00:00
|
|
|
|
2013-09-18 20:36:51 +00:00
|
|
|
if (gst_query_parse_context_type (query, &context_type) &&
|
2013-11-13 14:28:30 +00:00
|
|
|
strcmp (context_type, GST_EGL_DISPLAY_CONTEXT_TYPE) == 0 &&
|
2013-09-18 20:36:51 +00:00
|
|
|
eglglessink->egl_context->display) {
|
|
|
|
GstContext *context;
|
2013-03-28 16:48:04 +00:00
|
|
|
|
2013-09-18 20:36:51 +00:00
|
|
|
context =
|
|
|
|
gst_context_new_egl_display (eglglessink->egl_context->display,
|
|
|
|
FALSE);
|
|
|
|
gst_query_set_context (query, context);
|
|
|
|
gst_context_unref (context);
|
2013-03-28 16:48:04 +00:00
|
|
|
|
2013-09-18 20:36:51 +00:00
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return GST_BASE_SINK_CLASS (gst_eglglessink_parent_class)->query (bsink,
|
|
|
|
query);
|
|
|
|
}
|
2013-03-28 16:48:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-03-28 16:48:04 +00:00
|
|
|
default:
|
|
|
|
return GST_BASE_SINK_CLASS (gst_eglglessink_parent_class)->query (bsink,
|
|
|
|
query);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_eglglessink_set_context (GstElement * element, GstContext * context)
|
|
|
|
{
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-03-28 16:48:04 +00:00
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
GstEGLDisplay *display = NULL;
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (element);
|
|
|
|
|
2013-03-31 09:46:28 +00:00
|
|
|
if (gst_context_get_egl_display (context, &display)) {
|
2013-03-28 16:48:04 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
2013-04-10 20:27:27 +00:00
|
|
|
if (eglglessink->egl_context->set_display)
|
|
|
|
gst_egl_display_unref (eglglessink->egl_context->set_display);
|
|
|
|
eglglessink->egl_context->set_display = display;
|
2013-03-28 16:48:04 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
|
|
|
}
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2013-03-28 16:48:04 +00:00
|
|
|
}
|
|
|
|
|
2012-10-22 09:41:44 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_propose_allocation (GstBaseSink * bsink, GstQuery * query)
|
|
|
|
{
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2012-12-28 11:27:43 +00:00
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
GstBufferPool *pool;
|
|
|
|
GstStructure *config;
|
|
|
|
GstCaps *caps;
|
2013-03-29 15:05:01 +00:00
|
|
|
GstVideoInfo info;
|
2012-12-28 11:27:43 +00:00
|
|
|
gboolean need_pool;
|
|
|
|
guint size;
|
2013-02-25 12:43:28 +00:00
|
|
|
GstAllocator *allocator;
|
|
|
|
GstAllocationParams params;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (bsink);
|
|
|
|
|
2013-02-25 12:43:28 +00:00
|
|
|
gst_allocation_params_init (¶ms);
|
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
gst_query_parse_allocation (query, &caps, &need_pool);
|
|
|
|
if (!caps) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "allocation query without caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-29 15:05:01 +00:00
|
|
|
if (!gst_video_info_from_caps (&info, caps)) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "allocation query with invalid caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
|
|
|
pool = eglglessink->pool ? gst_object_ref (eglglessink->pool) : NULL;
|
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
|
|
|
|
|
|
|
if (pool) {
|
|
|
|
GstCaps *pcaps;
|
|
|
|
|
|
|
|
/* we had a pool, check caps */
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "check existing pool caps");
|
|
|
|
config = gst_buffer_pool_get_config (pool);
|
|
|
|
gst_buffer_pool_config_get_params (config, &pcaps, &size, NULL, NULL);
|
|
|
|
|
|
|
|
if (!gst_caps_is_equal (caps, pcaps)) {
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "pool has different caps");
|
|
|
|
/* different caps, we can't use this pool */
|
|
|
|
gst_object_unref (pool);
|
|
|
|
pool = NULL;
|
|
|
|
}
|
|
|
|
gst_structure_free (config);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool == NULL && need_pool) {
|
|
|
|
GstVideoInfo info;
|
|
|
|
|
|
|
|
if (!gst_video_info_from_caps (&info, caps)) {
|
2013-03-03 11:29:24 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "allocation query has invalid caps %"
|
2012-12-28 11:27:43 +00:00
|
|
|
GST_PTR_FORMAT, caps);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (eglglessink, "create new pool");
|
|
|
|
pool =
|
2013-09-04 09:58:24 +00:00
|
|
|
gst_egl_image_buffer_pool_new
|
|
|
|
(gst_eglglessink_egl_image_buffer_pool_send_blocking,
|
2013-09-04 09:52:51 +00:00
|
|
|
gst_object_ref (eglglessink),
|
|
|
|
gst_eglglessink_egl_image_buffer_pool_on_destroy);
|
2012-12-28 11:27:43 +00:00
|
|
|
|
|
|
|
/* the normal size of a frame */
|
|
|
|
size = info.size;
|
|
|
|
|
|
|
|
config = gst_buffer_pool_get_config (pool);
|
|
|
|
/* we need at least 2 buffer because we hold on to the last one */
|
|
|
|
gst_buffer_pool_config_set_params (config, caps, size, 2, 0);
|
|
|
|
gst_buffer_pool_config_set_allocator (config, NULL, ¶ms);
|
|
|
|
if (!gst_buffer_pool_set_config (pool, config)) {
|
|
|
|
gst_object_unref (pool);
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "failed to set pool configuration");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool) {
|
|
|
|
/* we need at least 2 buffer because we hold on to the last one */
|
|
|
|
gst_query_add_allocation_pool (query, pool, size, 2, 0);
|
|
|
|
gst_object_unref (pool);
|
|
|
|
}
|
|
|
|
|
2013-02-25 12:43:28 +00:00
|
|
|
/* First the default allocator */
|
|
|
|
if (!gst_egl_image_memory_is_mappable ()) {
|
|
|
|
allocator = gst_allocator_find (NULL);
|
|
|
|
gst_query_add_allocation_param (query, allocator, ¶ms);
|
|
|
|
gst_object_unref (allocator);
|
|
|
|
}
|
|
|
|
|
|
|
|
allocator = gst_egl_image_allocator_obtain ();
|
|
|
|
if (!gst_egl_image_memory_is_mappable ())
|
|
|
|
params.flags |= GST_MEMORY_FLAG_NOT_MAPPABLE;
|
|
|
|
gst_query_add_allocation_param (query, allocator, ¶ms);
|
|
|
|
gst_object_unref (allocator);
|
|
|
|
|
2013-03-29 15:05:01 +00:00
|
|
|
gst_query_add_allocation_meta (query,
|
|
|
|
GST_VIDEO_GL_TEXTURE_UPLOAD_META_API_TYPE, NULL);
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
gst_query_add_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL);
|
|
|
|
gst_query_add_allocation_meta (query, GST_VIDEO_CROP_META_API_TYPE, NULL);
|
2012-10-22 09:41:44 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
static gboolean
|
2012-10-17 13:04:11 +00:00
|
|
|
gst_eglglessink_configure_caps (GstEglGlesSink * eglglessink, GstCaps * caps)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
2012-10-22 09:18:39 +00:00
|
|
|
GstVideoInfo info;
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_video_info_init (&info);
|
|
|
|
if (!(ret = gst_video_info_from_caps (&info, caps))) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Couldn't parse caps");
|
2012-09-10 23:00:57 +00:00
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
|
2012-10-22 09:18:39 +00:00
|
|
|
eglglessink->configured_info = info;
|
|
|
|
GST_VIDEO_SINK_WIDTH (eglglessink) = info.width;
|
|
|
|
GST_VIDEO_SINK_HEIGHT (eglglessink) = info.height;
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
if (eglglessink->configured_caps) {
|
2012-12-31 10:38:23 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Caps were already set");
|
2012-10-16 13:40:11 +00:00
|
|
|
if (gst_caps_can_intersect (caps, eglglessink->configured_caps)) {
|
2012-12-31 10:38:23 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Caps are compatible anyway");
|
2012-09-10 23:00:57 +00:00
|
|
|
goto SUCCEED;
|
2012-09-24 10:36:12 +00:00
|
|
|
}
|
2012-09-24 10:32:16 +00:00
|
|
|
|
2012-09-24 10:36:12 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Caps are not compatible, reconfiguring");
|
2012-10-02 15:29:26 +00:00
|
|
|
|
2012-10-18 04:36:49 +00:00
|
|
|
/* EGL/GLES cleanup */
|
2013-04-10 20:27:27 +00:00
|
|
|
gst_egl_adaptation_cleanup (eglglessink->egl_context);
|
2012-09-24 10:36:12 +00:00
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
gst_caps_unref (eglglessink->configured_caps);
|
|
|
|
eglglessink->configured_caps = NULL;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2013-04-10 17:53:48 +00:00
|
|
|
if (!gst_egl_adaptation_choose_config (eglglessink->egl_context)) {
|
2012-09-13 03:11:49 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Couldn't choose EGL config");
|
2012-09-13 01:11:39 +00:00
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
gst_caps_replace (&eglglessink->configured_caps, caps);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2012-09-14 02:23:08 +00:00
|
|
|
/* By now the application should have set a window
|
2012-10-01 02:06:19 +00:00
|
|
|
* if it meant to do so
|
2012-09-14 02:23:08 +00:00
|
|
|
*/
|
2012-10-17 08:08:10 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
2012-09-10 23:00:57 +00:00
|
|
|
if (!eglglessink->have_window) {
|
2012-10-17 08:08:10 +00:00
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_INFO_OBJECT (eglglessink,
|
|
|
|
"No window. Will attempt internal window creation");
|
2013-04-10 20:27:27 +00:00
|
|
|
if (!gst_eglglessink_create_window (eglglessink, info.width, info.height)) {
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Internal window creation failed!");
|
2012-10-17 08:08:10 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-09-14 02:23:08 +00:00
|
|
|
goto HANDLE_ERROR;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
2012-09-21 15:12:24 +00:00
|
|
|
eglglessink->using_own_window = TRUE;
|
2012-10-17 08:08:10 +00:00
|
|
|
eglglessink->have_window = TRUE;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
2012-10-17 13:04:11 +00:00
|
|
|
GST_DEBUG_OBJECT (eglglessink, "Using window handle %p",
|
2013-04-10 20:27:27 +00:00
|
|
|
(gpointer) eglglessink->egl_context->window);
|
|
|
|
eglglessink->egl_context->used_window = eglglessink->egl_context->window;
|
2012-10-17 08:08:10 +00:00
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_video_overlay_got_window_handle (GST_VIDEO_OVERLAY (eglglessink),
|
2013-04-10 20:27:27 +00:00
|
|
|
(guintptr) eglglessink->egl_context->used_window);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
2013-04-10 17:53:48 +00:00
|
|
|
if (!eglglessink->egl_context->have_surface) {
|
2013-09-23 12:36:40 +00:00
|
|
|
if (!gst_egl_adaptation_init_surface (eglglessink->egl_context,
|
2013-04-10 17:53:48 +00:00
|
|
|
eglglessink->configured_info.finfo->format)) {
|
2012-09-14 23:49:48 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Couldn't init EGL surface from window");
|
|
|
|
goto HANDLE_ERROR;
|
|
|
|
}
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2013-09-23 12:36:40 +00:00
|
|
|
gst_egl_adaptation_init_exts (eglglessink->egl_context);
|
2013-04-16 20:25:02 +00:00
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
SUCCEED:
|
2012-10-16 13:40:11 +00:00
|
|
|
GST_INFO_OBJECT (eglglessink, "Configured caps successfully");
|
2012-09-10 23:00:57 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
HANDLE_ERROR:
|
2012-10-16 13:40:11 +00:00
|
|
|
GST_ERROR_OBJECT (eglglessink, "Configuring caps failed");
|
2012-09-10 23:00:57 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_setcaps (GstBaseSink * bsink, GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
2012-12-28 11:27:43 +00:00
|
|
|
GstVideoInfo info;
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2012-12-28 11:27:43 +00:00
|
|
|
GstBufferPool *newpool, *oldpool;
|
|
|
|
GstStructure *config;
|
|
|
|
GstAllocationParams params = { 0, };
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2012-10-16 13:40:11 +00:00
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (bsink);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (eglglessink,
|
|
|
|
"Current caps %" GST_PTR_FORMAT ", setting caps %"
|
|
|
|
GST_PTR_FORMAT, eglglessink->current_caps, caps);
|
|
|
|
|
2012-12-30 09:18:05 +00:00
|
|
|
if (gst_eglglessink_queue_object (eglglessink,
|
|
|
|
GST_MINI_OBJECT_CAST (caps)) != GST_FLOW_OK) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Failed to configure caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
if (!gst_video_info_from_caps (&info, caps)) {
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Invalid caps %" GST_PTR_FORMAT, caps);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2012-12-28 11:27:43 +00:00
|
|
|
newpool =
|
2013-09-04 09:58:24 +00:00
|
|
|
gst_egl_image_buffer_pool_new
|
|
|
|
(gst_eglglessink_egl_image_buffer_pool_send_blocking,
|
2013-09-04 09:52:51 +00:00
|
|
|
gst_object_ref (eglglessink),
|
|
|
|
gst_eglglessink_egl_image_buffer_pool_on_destroy);
|
2012-12-28 11:27:43 +00:00
|
|
|
config = gst_buffer_pool_get_config (newpool);
|
|
|
|
/* we need at least 2 buffer because we hold on to the last one */
|
|
|
|
gst_buffer_pool_config_set_params (config, caps, info.size, 2, 0);
|
|
|
|
gst_buffer_pool_config_set_allocator (config, NULL, ¶ms);
|
|
|
|
if (!gst_buffer_pool_set_config (newpool, config)) {
|
|
|
|
gst_object_unref (newpool);
|
|
|
|
GST_ERROR_OBJECT (eglglessink, "Failed to set buffer pool configuration");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
|
|
|
oldpool = eglglessink->pool;
|
|
|
|
eglglessink->pool = newpool;
|
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
|
|
|
|
|
|
|
if (oldpool)
|
|
|
|
gst_object_unref (oldpool);
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
gst_caps_replace (&eglglessink->current_caps, caps);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-16 12:39:43 +00:00
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_open (GstEglGlesSink * eglglessink)
|
|
|
|
{
|
|
|
|
if (!egl_init (eglglessink)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_eglglessink_close (GstEglGlesSink * eglglessink)
|
|
|
|
{
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2013-04-10 20:27:27 +00:00
|
|
|
if (eglglessink->egl_context->display) {
|
|
|
|
gst_egl_display_unref (eglglessink->egl_context->display);
|
|
|
|
eglglessink->egl_context->display = NULL;
|
2012-10-16 12:39:43 +00:00
|
|
|
}
|
|
|
|
|
2012-12-28 11:27:43 +00:00
|
|
|
GST_OBJECT_LOCK (eglglessink);
|
|
|
|
if (eglglessink->pool)
|
|
|
|
gst_object_unref (eglglessink->pool);
|
|
|
|
eglglessink->pool = NULL;
|
|
|
|
GST_OBJECT_UNLOCK (eglglessink);
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
gst_caps_unref (eglglessink->sinkcaps);
|
|
|
|
eglglessink->sinkcaps = NULL;
|
|
|
|
eglglessink->egl_started = FALSE;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2012-10-16 12:39:43 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-09-24 10:05:22 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_eglglessink_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (element);
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
2012-10-16 12:39:43 +00:00
|
|
|
if (!gst_eglglessink_open (eglglessink)) {
|
|
|
|
ret = GST_STATE_CHANGE_FAILURE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
if (!gst_eglglessink_start (eglglessink)) {
|
2012-09-24 10:05:22 +00:00
|
|
|
ret = GST_STATE_CHANGE_FAILURE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
if (ret == GST_STATE_CHANGE_FAILURE)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2012-10-16 12:39:43 +00:00
|
|
|
if (!gst_eglglessink_close (eglglessink)) {
|
|
|
|
ret = GST_STATE_CHANGE_FAILURE;
|
|
|
|
goto done;
|
2012-09-24 10:05:22 +00:00
|
|
|
}
|
2012-10-16 12:39:43 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
if (!gst_eglglessink_stop (eglglessink)) {
|
|
|
|
ret = GST_STATE_CHANGE_FAILURE;
|
|
|
|
goto done;
|
2012-10-16 13:40:11 +00:00
|
|
|
}
|
2012-09-24 10:05:22 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_eglglessink_finalize (GObject * object)
|
|
|
|
{
|
2012-10-16 13:40:11 +00:00
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_EGLGLESSINK (object));
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (object);
|
|
|
|
|
2013-04-10 17:53:48 +00:00
|
|
|
gst_egl_adaptation_context_free (eglglessink->egl_context);
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
if (eglglessink->queue)
|
|
|
|
g_object_unref (eglglessink->queue);
|
|
|
|
eglglessink->queue = NULL;
|
|
|
|
|
2012-10-25 12:28:49 +00:00
|
|
|
g_cond_clear (&eglglessink->render_cond);
|
|
|
|
g_mutex_clear (&eglglessink->render_lock);
|
2012-10-16 13:40:11 +00:00
|
|
|
|
2012-09-24 10:05:22 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
static void
|
|
|
|
gst_eglglessink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_EGLGLESSINK (object));
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2012-09-24 09:01:17 +00:00
|
|
|
case PROP_CREATE_WINDOW:
|
2012-09-27 11:57:14 +00:00
|
|
|
eglglessink->create_window = g_value_get_boolean (value);
|
2012-09-10 23:00:57 +00:00
|
|
|
break;
|
2012-09-24 09:01:17 +00:00
|
|
|
case PROP_FORCE_ASPECT_RATIO:
|
2012-09-27 11:57:14 +00:00
|
|
|
eglglessink->force_aspect_ratio = g_value_get_boolean (value);
|
2012-09-21 04:09:11 +00:00
|
|
|
break;
|
2012-09-10 23:00:57 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_eglglessink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstEglGlesSink *eglglessink;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_EGLGLESSINK (object));
|
|
|
|
|
|
|
|
eglglessink = GST_EGLGLESSINK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2012-09-24 09:01:17 +00:00
|
|
|
case PROP_CREATE_WINDOW:
|
2012-09-27 11:57:14 +00:00
|
|
|
g_value_set_boolean (value, eglglessink->create_window);
|
2012-09-10 23:00:57 +00:00
|
|
|
break;
|
2012-09-24 09:01:17 +00:00
|
|
|
case PROP_FORCE_ASPECT_RATIO:
|
2012-09-27 11:57:14 +00:00
|
|
|
g_value_set_boolean (value, eglglessink->force_aspect_ratio);
|
2012-09-21 04:09:11 +00:00
|
|
|
break;
|
2012-09-10 23:00:57 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize the eglglessink's class */
|
|
|
|
static void
|
|
|
|
gst_eglglessink_class_init (GstEglGlesSinkClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2012-09-24 10:05:22 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2012-09-10 23:00:57 +00:00
|
|
|
GstBaseSinkClass *gstbasesink_class;
|
|
|
|
GstVideoSinkClass *gstvideosink_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
2012-09-24 10:05:22 +00:00
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2012-09-10 23:00:57 +00:00
|
|
|
gstbasesink_class = (GstBaseSinkClass *) klass;
|
|
|
|
gstvideosink_class = (GstVideoSinkClass *) klass;
|
|
|
|
|
|
|
|
gobject_class->set_property = gst_eglglessink_set_property;
|
|
|
|
gobject_class->get_property = gst_eglglessink_get_property;
|
2012-09-24 10:05:22 +00:00
|
|
|
gobject_class->finalize = gst_eglglessink_finalize;
|
|
|
|
|
|
|
|
gstelement_class->change_state = gst_eglglessink_change_state;
|
2013-03-28 16:48:04 +00:00
|
|
|
gstelement_class->set_context = gst_eglglessink_set_context;
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
gstbasesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_eglglessink_setcaps);
|
2012-09-20 14:08:28 +00:00
|
|
|
gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR (gst_eglglessink_getcaps);
|
2012-10-22 09:41:44 +00:00
|
|
|
gstbasesink_class->propose_allocation =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_eglglessink_propose_allocation);
|
2013-01-01 09:44:45 +00:00
|
|
|
gstbasesink_class->prepare = GST_DEBUG_FUNCPTR (gst_eglglessink_prepare);
|
2013-03-28 16:48:04 +00:00
|
|
|
gstbasesink_class->query = GST_DEBUG_FUNCPTR (gst_eglglessink_query);
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
gstvideosink_class->show_frame =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_eglglessink_show_frame);
|
|
|
|
|
2012-09-24 09:01:17 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_CREATE_WINDOW,
|
|
|
|
g_param_spec_boolean ("create-window", "Create Window",
|
2012-10-09 19:25:46 +00:00
|
|
|
"If set to true, the sink will attempt to create it's own window to "
|
|
|
|
"render to if none is provided. This is currently only supported "
|
|
|
|
"when the sink is used under X11",
|
2012-09-24 09:01:17 +00:00
|
|
|
TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class, PROP_FORCE_ASPECT_RATIO,
|
2012-10-09 19:25:46 +00:00
|
|
|
g_param_spec_boolean ("force-aspect-ratio",
|
|
|
|
"Respect aspect ratio when scaling",
|
|
|
|
"If set to true, the sink will attempt to preserve the incoming "
|
|
|
|
"frame's geometry while scaling, taking both the storage's and "
|
|
|
|
"display's pixel aspect ratio into account",
|
2012-09-24 09:01:17 +00:00
|
|
|
TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2012-10-22 09:18:39 +00:00
|
|
|
|
|
|
|
gst_element_class_set_static_metadata (gstelement_class,
|
|
|
|
"EGL/GLES vout Sink",
|
|
|
|
"Sink/Video",
|
|
|
|
"An EGL/GLES Video Output Sink Implementing the VideoOverlay interface",
|
|
|
|
"Reynaldo H. Verdejo Pinochet <reynaldo@collabora.com>, "
|
|
|
|
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&gst_eglglessink_sink_template_factory));
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2012-10-16 13:40:11 +00:00
|
|
|
static gboolean
|
2012-10-17 13:04:11 +00:00
|
|
|
queue_check_full_func (GstDataQueue * queue, guint visible, guint bytes,
|
|
|
|
guint64 time, gpointer checkdata)
|
2012-10-16 13:40:11 +00:00
|
|
|
{
|
|
|
|
return visible != 0;
|
|
|
|
}
|
2012-09-10 23:00:57 +00:00
|
|
|
|
|
|
|
static void
|
2012-10-22 09:18:39 +00:00
|
|
|
gst_eglglessink_init (GstEglGlesSink * eglglessink)
|
2012-09-10 23:00:57 +00:00
|
|
|
{
|
2013-04-10 17:53:48 +00:00
|
|
|
eglglessink->egl_context =
|
|
|
|
gst_egl_adaptation_context_new (GST_ELEMENT_CAST (eglglessink));
|
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
/* Init defaults */
|
2012-10-09 20:00:52 +00:00
|
|
|
|
2012-10-09 19:25:46 +00:00
|
|
|
/** Flags */
|
2012-09-10 23:00:57 +00:00
|
|
|
eglglessink->have_window = FALSE;
|
2013-04-10 17:53:48 +00:00
|
|
|
eglglessink->egl_context->have_surface = FALSE;
|
|
|
|
eglglessink->egl_context->have_vbo = FALSE;
|
|
|
|
eglglessink->egl_context->have_texture = FALSE;
|
2012-09-14 23:49:48 +00:00
|
|
|
eglglessink->egl_started = FALSE;
|
2012-10-09 19:25:46 +00:00
|
|
|
eglglessink->using_own_window = FALSE;
|
|
|
|
|
|
|
|
/** Props */
|
2012-09-27 11:57:14 +00:00
|
|
|
eglglessink->create_window = TRUE;
|
|
|
|
eglglessink->force_aspect_ratio = TRUE;
|
2012-10-09 19:25:46 +00:00
|
|
|
|
2012-10-25 12:28:49 +00:00
|
|
|
g_mutex_init (&eglglessink->render_lock);
|
|
|
|
g_cond_init (&eglglessink->render_cond);
|
2012-10-22 09:18:39 +00:00
|
|
|
eglglessink->queue =
|
|
|
|
gst_data_queue_new (queue_check_full_func, NULL, NULL, NULL);
|
|
|
|
eglglessink->last_flow = GST_FLOW_FLUSHING;
|
2012-12-26 13:39:03 +00:00
|
|
|
|
|
|
|
eglglessink->render_region.x = 0;
|
|
|
|
eglglessink->render_region.y = 0;
|
|
|
|
eglglessink->render_region.w = -1;
|
|
|
|
eglglessink->render_region.h = -1;
|
|
|
|
eglglessink->render_region_changed = TRUE;
|
|
|
|
eglglessink->render_region_user = FALSE;
|
2012-09-10 23:00:57 +00:00
|
|
|
}
|
|
|
|
|
2013-09-23 12:36:40 +00:00
|
|
|
#ifndef HAVE_IOS
|
2012-12-28 11:27:43 +00:00
|
|
|
static GstBufferPool *
|
2013-09-04 09:58:24 +00:00
|
|
|
gst_egl_image_buffer_pool_new (GstEGLImageBufferPoolSendBlockingAllocate
|
|
|
|
blocking_allocate_func, gpointer blocking_allocate_data,
|
|
|
|
GDestroyNotify destroy_func)
|
2012-12-28 11:27:43 +00:00
|
|
|
{
|
|
|
|
GstEGLImageBufferPool *pool;
|
|
|
|
|
|
|
|
pool = g_object_new (gst_egl_image_buffer_pool_get_type (), NULL);
|
2013-09-04 09:58:24 +00:00
|
|
|
pool->last_buffer = NULL;
|
2013-09-04 09:52:51 +00:00
|
|
|
pool->send_blocking_allocate_func = blocking_allocate_func;
|
|
|
|
pool->send_blocking_allocate_data = blocking_allocate_data;
|
|
|
|
pool->send_blocking_allocate_destroy = destroy_func;
|
2012-12-28 11:27:43 +00:00
|
|
|
|
|
|
|
return (GstBufferPool *) pool;
|
|
|
|
}
|
2013-09-23 12:36:40 +00:00
|
|
|
#endif
|
2012-12-28 11:27:43 +00:00
|
|
|
|
2012-09-10 23:00:57 +00:00
|
|
|
/* entry point to initialize the plug-in
|
|
|
|
* initialize the plug-in itself
|
|
|
|
* register the element factories and other features
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
eglglessink_plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
/* debug category for fltering log messages */
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_eglglessink_debug, "eglglessink",
|
|
|
|
0, "Simple EGL/GLES Sink");
|
|
|
|
|
2013-04-16 20:25:19 +00:00
|
|
|
gst_egl_adaption_init ();
|
|
|
|
|
2013-02-13 14:09:35 +00:00
|
|
|
#ifdef USE_EGL_RPI
|
|
|
|
GST_DEBUG ("Initialize BCM host");
|
|
|
|
bcm_host_init ();
|
|
|
|
#endif
|
|
|
|
|
2013-04-18 13:26:31 +00:00
|
|
|
return gst_element_register (plugin, "eglglessink", GST_RANK_SECONDARY,
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_TYPE_EGLGLESSINK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* gstreamer looks for this structure to register eglglessinks */
|
2012-10-18 12:09:25 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
2012-09-10 23:00:57 +00:00
|
|
|
GST_VERSION_MINOR,
|
2012-10-22 09:18:39 +00:00
|
|
|
eglglessink,
|
2012-09-10 23:00:57 +00:00
|
|
|
"EGL/GLES sink",
|
|
|
|
eglglessink_plugin_init,
|
2012-11-02 10:29:54 +00:00
|
|
|
VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|