2008-05-19 16:57:39 +00:00
|
|
|
/*
|
2008-09-20 13:44:24 +00:00
|
|
|
* GStreame
|
|
|
|
* Copyright (C) 2007 David Schleef <ds@schleef.org>
|
2008-05-19 16:57:39 +00:00
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#ifndef _GST_GL_BUFFER_H_
|
|
|
|
#define _GST_GL_BUFFER_H_
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
|
|
|
#include "gstgldisplay.h"
|
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
typedef struct _GstGLBuffer GstGLBuffer;
|
|
|
|
|
|
|
|
#define GST_TYPE_GL_BUFFER (gst_gl_buffer_get_type())
|
|
|
|
|
|
|
|
#define GST_IS_GL_BUFFER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_GL_BUFFER))
|
|
|
|
#define GST_GL_BUFFER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_GL_BUFFER, GstGLBuffer))
|
|
|
|
|
2008-06-21 21:38:42 +00:00
|
|
|
//A gl buffer has only one texture.
|
|
|
|
//Note that when a gl buffer is created by the upload filter,
|
|
|
|
//the colorspace conversion is made using a FBO.
|
|
|
|
//And so the texture attached to this FBO is the one managed by the gl buffer.
|
2008-05-18 11:12:46 +00:00
|
|
|
|
|
|
|
struct _GstGLBuffer {
|
|
|
|
GstBuffer buffer;
|
|
|
|
|
|
|
|
GstGLDisplay *display;
|
|
|
|
|
2008-06-10 19:07:43 +00:00
|
|
|
gint width;
|
|
|
|
gint height;
|
2008-05-18 11:12:46 +00:00
|
|
|
GLuint texture;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_gl_buffer_get_type (void);
|
|
|
|
|
|
|
|
#define gst_gl_buffer_ref(x) ((GstGLBuffer *)(gst_buffer_ref((GstBuffer *)(x))))
|
|
|
|
#define gst_gl_buffer_unref(x) (gst_buffer_unref((GstBuffer *)(x)))
|
|
|
|
|
2008-06-21 21:38:42 +00:00
|
|
|
GstGLBuffer* gst_gl_buffer_new (GstGLDisplay* display, gint gl_width, gint gl_height);
|
|
|
|
gint gst_gl_buffer_get_size (gint width, gint height);
|
|
|
|
gboolean gst_gl_buffer_parse_caps (GstCaps* caps, gint* width, gint* height);
|
2008-05-18 11:12:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define GST_GL_VIDEO_CAPS \
|
|
|
|
"video/x-raw-gl," \
|
2008-06-10 19:07:43 +00:00
|
|
|
"width=(int)[1,8000]," \
|
|
|
|
"height=(int)[1,6000]," \
|
2008-05-18 11:12:46 +00:00
|
|
|
"pixel-aspect-ratio=(fraction)1/1," \
|
|
|
|
"framerate=(fraction)[0/1,100/1]"
|
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
G_END_DECLS
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
#endif /* _GST_GL_BUFFER_H_ */
|