gst-indent
[platform/upstream/gst-plugins-good.git] / ext / aalib / gstaasink.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
21 #ifndef __GST_AASINK_H__
22 #define __GST_AASINK_H__
23
24 #include <gst/gst.h>
25
26 #include <aalib.h>
27
28 #ifdef __cplusplus
29 extern "C"
30 {
31 #endif                          /* __cplusplus */
32
33
34 #define GST_TYPE_AASINK \
35   (gst_aasink_get_type())
36 #define GST_AASINK(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AASINK,GstAASink))
38 #define GST_AASINK_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AASINK,GstAASink))
40 #define GST_IS_AASINK(obj) \
41   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AASINK))
42 #define GST_IS_AASINK_CLASS(obj) \
43   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AASINK))
44
45   typedef enum
46   {
47     GST_AASINK_OPEN = GST_ELEMENT_FLAG_LAST,
48
49     GST_AASINK_FLAG_LAST = GST_ELEMENT_FLAG_LAST + 2,
50   } GstAASinkFlags;
51
52   typedef struct _GstAASink GstAASink;
53   typedef struct _GstAASinkClass GstAASinkClass;
54
55   struct _GstAASink
56   {
57     GstElement element;
58
59     GstPad *sinkpad;
60
61     gulong format;
62     gint width, height;
63
64     gint frames_displayed;
65     guint64 frame_time;
66
67     GstClock *clock;
68
69     aa_context *context;
70     struct aa_hardware_params ascii_surf;
71     struct aa_renderparams ascii_parms;
72     aa_palette palette;
73     gint aa_driver;
74   };
75
76   struct _GstAASinkClass
77   {
78     GstElementClass parent_class;
79
80     /* signals */
81     void (*frame_displayed) (GstElement * element);
82     void (*have_size) (GstElement * element, guint width, guint height);
83   };
84
85   GType gst_aasink_get_type (void);
86
87 #ifdef __cplusplus
88 }
89 #endif                          /* __cplusplus */
90
91
92 #endif                          /* __GST_AASINKE_H__ */