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