2009-07-16 19:27:45 +00:00
|
|
|
/* cairorender: CAIRO plugin for GStreamer
|
2009-07-16 19:30:00 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2009 Lutz Mueller <lutz@topfrose.de>
|
2009-07-16 19:27:45 +00:00
|
|
|
*
|
|
|
|
* 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-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-07-16 19:27:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_CAIRO_RENDER_H_
|
|
|
|
#define __GST_CAIRO_RENDER_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2009-07-16 19:31:43 +00:00
|
|
|
#include <cairo.h>
|
2009-07-16 19:27:45 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_CAIRO_RENDER (gst_cairo_render_get_type())
|
|
|
|
#define GST_CAIRO_RENDER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_CAIRO_RENDER,GstCairoRender))
|
|
|
|
#define GST_CAIRO_RENDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_CAIRO_RENDER,GstCairoRenderClass))
|
|
|
|
|
|
|
|
typedef struct _GstCairoRender GstCairoRender;
|
|
|
|
typedef struct _GstCairoRenderClass GstCairoRenderClass;
|
|
|
|
|
2009-07-16 19:31:43 +00:00
|
|
|
struct _GstCairoRender
|
|
|
|
{
|
|
|
|
GstElement parent;
|
|
|
|
|
|
|
|
GstPad *snk, *src;
|
|
|
|
|
|
|
|
/* < private > */
|
|
|
|
|
|
|
|
/* Source */
|
|
|
|
cairo_surface_t *surface;
|
2009-07-17 11:41:19 +00:00
|
|
|
gint width, height, stride;
|
2009-07-16 19:31:43 +00:00
|
|
|
|
|
|
|
/* Sink */
|
|
|
|
gint64 offset, duration;
|
|
|
|
gboolean png;
|
|
|
|
cairo_format_t format;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstCairoRenderClass
|
|
|
|
{
|
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2009-07-16 19:27:45 +00:00
|
|
|
GType gst_cairo_render_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_CAIRO_RENDER_H__ */
|