VideoFilter inherits from
[platform/upstream/gstreamer.git] / gst / videofilter / gstvideoflip.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GST_VIDEOFLIP_H__
21 #define __GST_VIDEOFLIP_H__
22
23 #include "gstvideofilter.h"
24
25 G_BEGIN_DECLS
26
27 typedef enum {
28   GST_VIDEOFLIP_METHOD_IDENTITY,
29   GST_VIDEOFLIP_METHOD_90R,
30   GST_VIDEOFLIP_METHOD_180,
31   GST_VIDEOFLIP_METHOD_90L,
32   GST_VIDEOFLIP_METHOD_HORIZ,
33   GST_VIDEOFLIP_METHOD_VERT,
34   GST_VIDEOFLIP_METHOD_TRANS,
35   GST_VIDEOFLIP_METHOD_OTHER
36 } GstVideoflipMethod;
37
38 #define GST_TYPE_VIDEOFLIP \
39   (gst_videoflip_get_type())
40 #define GST_VIDEOFLIP(obj) \
41   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEOFLIP,GstVideoflip))
42 #define GST_VIDEOFLIP_CLASS(klass) \
43   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEOFLIP,GstVideoflipClass))
44 #define GST_IS_VIDEOFLIP(obj) \
45   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEOFLIP))
46 #define GST_IS_VIDEOFLIP_CLASS(obj) \
47   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEOFLIP))
48
49 typedef struct _GstVideoflip GstVideoflip;
50 typedef struct _GstVideoflipClass GstVideoflipClass;
51
52 struct _GstVideoflip {
53   GstVideofilter videofilter;
54   
55   gint from_width, from_height;
56   gint to_width, to_height;
57   
58   GstVideoflipMethod method;
59 };
60
61 struct _GstVideoflipClass {
62   GstVideofilterClass parent_class;
63 };
64
65 GType gst_videoflip_get_type(void);
66
67 G_END_DECLS
68
69 #endif /* __GST_VIDEOFLIP_H__ */