2002-10-10 21:19:12 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
2002-10-10 21:19:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_MASK_H__
|
|
|
|
#define __GST_MASK_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
typedef struct _GstMask GstMask;
|
|
|
|
typedef struct _GstMaskDefinition GstMaskDefinition;
|
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
typedef void (*GstMaskDrawFunc) (GstMask *mask);
|
|
|
|
typedef void (*GstMaskDestroyFunc) (GstMask *mask);
|
2004-03-15 16:32:54 +00:00
|
|
|
|
|
|
|
struct _GstMaskDefinition {
|
2005-12-06 19:44:58 +00:00
|
|
|
gint type;
|
2007-01-23 17:27:39 +00:00
|
|
|
const gchar *short_name;
|
|
|
|
const gchar *long_name;
|
2005-12-06 19:44:58 +00:00
|
|
|
GstMaskDrawFunc draw_func;
|
|
|
|
GstMaskDestroyFunc destroy_func;
|
2007-01-23 17:27:39 +00:00
|
|
|
gconstpointer user_data;
|
2002-10-10 21:19:12 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
struct _GstMask {
|
2005-12-06 19:44:58 +00:00
|
|
|
gint type;
|
|
|
|
guint32 *data;
|
2007-01-23 17:27:39 +00:00
|
|
|
gconstpointer user_data;
|
2002-10-10 21:19:12 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gint bpp;
|
2002-10-10 21:19:12 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
GstMaskDestroyFunc destroy_func;
|
2002-10-10 21:19:12 +00:00
|
|
|
};
|
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
void _gst_mask_init (void);
|
2007-01-23 17:27:39 +00:00
|
|
|
void _gst_mask_register (const GstMaskDefinition *definition);
|
2002-10-10 21:19:12 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
void _gst_mask_default_destroy (GstMask *mask);
|
2002-10-10 21:19:12 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
const GList* gst_mask_get_definitions (void);
|
2010-04-15 20:28:58 +00:00
|
|
|
GstMask* gst_mask_factory_new (gint type, gboolean invert, gint bpp, gint width, gint height);
|
2005-12-06 19:44:58 +00:00
|
|
|
void gst_mask_destroy (GstMask *mask);
|
2002-10-10 21:19:12 +00:00
|
|
|
|
2010-03-17 17:23:00 +00:00
|
|
|
void _gst_barboxwipes_register (void);
|
|
|
|
|
2002-10-10 21:19:12 +00:00
|
|
|
#endif /* __GST_MASK_H__ */
|