2014-06-05 08:33:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013, Fluendo S.A.
|
|
|
|
* Author: Andoni Morales <amorales@fluendo.com>
|
|
|
|
*
|
2018-11-12 19:02:37 +00:00
|
|
|
* Copyright (C) 2014,2018 Collabora Ltd.
|
2014-06-05 08:33:56 +00:00
|
|
|
* Author: Matthieu Bouron <matthieu.bouron@collabora.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation
|
|
|
|
* version 2.1 of the License.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_AMC_SURFACE_TEXTURE_H__
|
|
|
|
#define __GST_AMC_SURFACE_TEXTURE_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
#define GST_TYPE_AMC_SURFACE_TEXTURE gst_amc_surface_texture_get_type ()
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (GstAmcSurfaceTexture, gst_amc_surface_texture, GST, AMC_SURFACE_TEXTURE, GObject)
|
2014-06-05 08:33:56 +00:00
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
typedef void (* GstAmcSurfaceTextureOnFrameAvailableCallback) (GstAmcSurfaceTexture * self, gpointer user_data);
|
2014-06-05 08:33:56 +00:00
|
|
|
|
|
|
|
struct _GstAmcSurfaceTextureClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
gboolean (* update_tex_image) (GstAmcSurfaceTexture *texture,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean (* detach_from_gl_context) (GstAmcSurfaceTexture *texture,
|
|
|
|
GError ** err);
|
2014-06-05 08:33:56 +00:00
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
gboolean (* attach_to_gl_context) (GstAmcSurfaceTexture *texture,
|
|
|
|
gint index,
|
|
|
|
GError ** err);
|
2014-06-05 08:33:56 +00:00
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
gboolean (* get_transform_matrix) (GstAmcSurfaceTexture *texture,
|
2019-04-25 18:50:43 +00:00
|
|
|
gfloat *matrix,
|
2018-11-12 19:02:37 +00:00
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean (* get_timestamp) (GstAmcSurfaceTexture *texture,
|
|
|
|
gint64 * result,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean (* release) (GstAmcSurfaceTexture *texture,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean (* set_on_frame_available_callback) (GstAmcSurfaceTexture * self,
|
|
|
|
GstAmcSurfaceTextureOnFrameAvailableCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
GError ** err);
|
|
|
|
};
|
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_static_init (void);
|
2014-06-05 08:33:56 +00:00
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_update_tex_image (GstAmcSurfaceTexture *texture,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_detach_from_gl_context (GstAmcSurfaceTexture *texture,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_attach_to_gl_context (GstAmcSurfaceTexture *texture,
|
|
|
|
gint index,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_get_transform_matrix (GstAmcSurfaceTexture *texture,
|
2019-04-25 18:50:43 +00:00
|
|
|
gfloat *matrix,
|
2014-06-05 08:33:56 +00:00
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_get_timestamp (GstAmcSurfaceTexture *texture,
|
|
|
|
gint64 * result,
|
|
|
|
GError ** err);
|
|
|
|
|
|
|
|
gboolean gst_amc_surface_texture_release (GstAmcSurfaceTexture *texture,
|
|
|
|
GError ** err);
|
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
gboolean gst_amc_surface_texture_set_on_frame_available_callback (GstAmcSurfaceTexture * self,
|
|
|
|
GstAmcSurfaceTextureOnFrameAvailableCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
GError ** err);
|
2014-06-05 08:33:56 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2018-11-12 19:02:37 +00:00
|
|
|
|
2014-06-05 08:33:56 +00:00
|
|
|
#endif
|