2013-03-21 15:09:42 +00:00
|
|
|
/*
|
|
|
|
* gstvaapivideoconverter_glx.h - Gstreamer/VA video converter
|
|
|
|
*
|
2013-11-22 05:37:12 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2013-03-21 15:09:42 +00:00
|
|
|
* Copyright (C) 2011 Collabora Ltd.
|
|
|
|
* Author: Nicolas Dufresne <nicolas.dufresne@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; either version 2.1
|
|
|
|
* 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
|
|
|
|
* 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_VAAPI_VIDEO_CONVERTER_GLX_H
|
|
|
|
#define GST_VAAPI_VIDEO_CONVERTER_GLX_H
|
|
|
|
|
|
|
|
#include <gst/video/gstsurfaceconverter.h>
|
2013-03-21 16:06:43 +00:00
|
|
|
#include "gstvaapivideobuffer.h"
|
2013-03-21 15:09:42 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_VAAPI_TYPE_VIDEO_CONVERTER_GLX \
|
2014-08-21 08:45:31 +00:00
|
|
|
(gst_vaapi_video_converter_glx_get_type ())
|
|
|
|
#define GST_VAAPI_VIDEO_CONVERTER_GLX(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_VAAPI_TYPE_VIDEO_CONVERTER_GLX, \
|
|
|
|
GstVaapiVideoConverterGLX))
|
|
|
|
#define GST_VAAPI_VIDEO_CONVERTER_GLX_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_VAAPI_TYPE_VIDEO_CONVERTER_GLX, \
|
|
|
|
GstVaapiVideoConverterGLXClass))
|
2013-03-21 15:09:42 +00:00
|
|
|
#define GST_VAAPI_IS_VIDEO_CONVERTER_GLX(obj) \
|
2014-08-21 08:45:31 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_VAAPI_TYPE_VIDEO_CONVERTER_GLX))
|
2013-03-21 15:09:42 +00:00
|
|
|
#define GST_VAAPI_IS_VIDEO_CONVERTER_GLX_CLASS(klass) \
|
2014-08-21 08:45:31 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_VAAPI_TYPE_VIDEO_CONVERTER_GLX))
|
|
|
|
#define GST_VAAPI_VIDEO_CONVERTER_GLX_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GST_VAAPI_TYPE_VIDEO_CONVERTER_GLX, \
|
|
|
|
GstVaapiVideoConverterGLXClass))
|
2013-03-21 15:09:42 +00:00
|
|
|
|
2014-08-21 08:45:31 +00:00
|
|
|
typedef struct _GstVaapiVideoConverterGLX GstVaapiVideoConverterGLX;
|
|
|
|
typedef struct _GstVaapiVideoConverterGLXPrivate
|
|
|
|
GstVaapiVideoConverterGLXPrivate;
|
|
|
|
typedef struct _GstVaapiVideoConverterGLXClass GstVaapiVideoConverterGLXClass;
|
2013-03-21 15:09:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiVideoConverterGLX:
|
|
|
|
*
|
|
|
|
* Converter to transform VA buffers into GL textures.
|
|
|
|
*/
|
2014-08-21 08:45:31 +00:00
|
|
|
struct _GstVaapiVideoConverterGLX
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GObject parent_instance;
|
2013-03-21 15:09:42 +00:00
|
|
|
|
2014-08-21 08:45:31 +00:00
|
|
|
GstVaapiVideoConverterGLXPrivate *priv;
|
2013-03-21 15:09:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiVideoConverterGLXClass:
|
|
|
|
*
|
|
|
|
* Converter class to transform VA buffers into GL textures.
|
|
|
|
*/
|
2014-08-21 08:45:31 +00:00
|
|
|
struct _GstVaapiVideoConverterGLXClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GObjectClass parent_class;
|
2013-03-21 15:09:42 +00:00
|
|
|
};
|
|
|
|
|
2013-04-15 11:52:19 +00:00
|
|
|
G_GNUC_INTERNAL
|
2013-03-21 15:09:42 +00:00
|
|
|
GType
|
2014-08-21 08:45:31 +00:00
|
|
|
gst_vaapi_video_converter_glx_get_type (void) G_GNUC_CONST;
|
2013-03-21 15:09:42 +00:00
|
|
|
|
2013-04-15 11:52:19 +00:00
|
|
|
G_GNUC_INTERNAL
|
2013-03-21 15:09:42 +00:00
|
|
|
GstSurfaceConverter *
|
2014-08-21 08:45:31 +00:00
|
|
|
gst_vaapi_video_converter_glx_new (GstBuffer * buffer, const gchar * type,
|
|
|
|
GValue * dest);
|
2013-03-21 15:09:42 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_VIDEO_CONVERTER_GLX_H */
|