2008-05-19 16:57:39 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
2008-09-20 13:44:24 +00:00
|
|
|
* Copyright (C) 2003 Julien Moutte <julien@moutte.net>
|
|
|
|
* Copyright (C) 2005,2006,2007 David A. 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 _GLIMAGESINK_H_
|
|
|
|
#define _GLIMAGESINK_H_
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/gstvideosink.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
|
|
|
#include "gstglbuffer.h"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gst_debug_glimage_sink);
|
|
|
|
|
|
|
|
#define GST_TYPE_GLIMAGE_SINK \
|
|
|
|
(gst_glimage_sink_get_type())
|
|
|
|
#define GST_GLIMAGE_SINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GLIMAGE_SINK,GstGLImageSink))
|
|
|
|
#define GST_GLIMAGE_SINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GLIMAGE_SINK,GstGLImageSinkClass))
|
|
|
|
#define GST_IS_GLIMAGE_SINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GLIMAGE_SINK))
|
|
|
|
#define GST_IS_GLIMAGE_SINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GLIMAGE_SINK))
|
|
|
|
|
|
|
|
typedef struct _GstGLImageSink GstGLImageSink;
|
|
|
|
typedef struct _GstGLImageSinkClass GstGLImageSinkClass;
|
|
|
|
|
|
|
|
struct _GstGLImageSink
|
|
|
|
{
|
2008-05-20 17:40:20 +00:00
|
|
|
GstVideoSink video_sink;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
//properties
|
|
|
|
gchar *display_name;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
gulong window_id;
|
2009-06-06 12:34:57 +00:00
|
|
|
gulong new_window_id;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
//caps
|
|
|
|
GstCaps *caps;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gboolean is_gl;
|
|
|
|
gint fps_n, fps_d;
|
|
|
|
gint par_n, par_d;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
GstGLDisplay *display;
|
|
|
|
GstGLBuffer *stored_buffer;
|
2008-06-23 18:56:29 +00:00
|
|
|
|
|
|
|
CRCB clientReshapeCallback;
|
|
|
|
CDCB clientDrawCallback;
|
2009-11-21 12:21:54 +00:00
|
|
|
gpointer client_data;
|
2009-04-19 22:52:41 +00:00
|
|
|
|
|
|
|
gboolean keep_aspect_ratio;
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstGLImageSinkClass
|
|
|
|
{
|
2008-05-20 17:40:20 +00:00
|
|
|
GstVideoSinkClass video_sink_class;
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_glimage_sink_get_type(void);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|