Imported Upstream version 0.10.23
[profile/ivi/gst-plugins-bad.git] / ext / kate / gstkatetiger.h
1 /*
2  * GStreamer
3  * Copyright 2005 Thomas Vander Stichele <thomas@apestaart.org>
4  * Copyright 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
5  * Copyright 2008 Vincent Penquerc'h <ogg.k.ogg.k@googlemail.com>
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23  * DEALINGS IN THE SOFTWARE.
24  *
25  * Alternatively, the contents of this file may be used under the
26  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
27  * which case the following provisions apply instead of the ones
28  * mentioned above:
29  *
30  * This library is free software; you can redistribute it and/or
31  * modify it under the terms of the GNU Library General Public
32  * License as published by the Free Software Foundation; either
33  * version 2 of the License, or (at your option) any later version.
34  *
35  * This library is distributed in the hope that it will be useful,
36  * but WITHOUT ANY WARRANTY; without even the implied warranty of
37  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
38  * Library General Public License for more details.
39  *
40  * You should have received a copy of the GNU Library General Public
41  * License along with this library; if not, write to the
42  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
43  * Boston, MA 02111-1307, USA.
44  */
45
46 #ifndef __GST_KATE_TIGER_H__
47 #define __GST_KATE_TIGER_H__
48
49 #include <kate/kate.h>
50 #include <tiger/tiger.h>
51 #include <gst/gst.h>
52 #include <gst/video/video.h>
53 #include "gstkateutil.h"
54
55 G_BEGIN_DECLS
56 /* #defines don't like whitespacey bits */
57 #define GST_TYPE_KATE_TIGER \
58   (gst_kate_tiger_get_type())
59 #define GST_KATE_TIGER(obj) \
60   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_KATE_TIGER,GstKateTiger))
61 #define GST_KATE_TIGER_CLASS(klass) \
62   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_KATE,GstKateTigerClass))
63 #define GST_IS_KATE_TIGER(obj) \
64   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_KATE_TIGER))
65 #define GST_IS_KATE_TIGER_CLASS(klass) \
66   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_KATE_TIGER))
67 typedef struct _GstKateTiger GstKateTiger;
68 typedef struct _GstKateTigerClass GstKateTigerClass;
69
70 struct _GstKateTiger
71 {
72   GstKateDecoderBase decoder;
73
74   GstPad *katesinkpad;
75   GstPad *videosinkpad;
76   GstPad *srcpad;
77
78   tiger_renderer *tr;
79
80   gdouble quality;
81   gchar *default_font_desc;
82   gboolean default_font_effect;
83   gdouble default_font_effect_strength;
84   guchar default_font_r;
85   guchar default_font_g;
86   guchar default_font_b;
87   guchar default_font_a;
88   guchar default_background_r;
89   guchar default_background_g;
90   guchar default_background_b;
91   guchar default_background_a;
92   gboolean silent;
93
94   GstVideoFormat video_format;
95   gint video_width;
96   gint video_height;
97   gboolean swap_rgb;
98   guint8 *render_buffer;
99
100   GMutex *mutex;
101   GCond *cond;
102
103   GstSegment video_segment;
104   gboolean video_flushing;
105   gboolean seen_header;
106 };
107
108 struct _GstKateTigerClass
109 {
110   GstElementClass parent_class;
111 };
112
113 GType gst_kate_tiger_get_type (void);
114
115 G_END_DECLS
116 #endif /* __GST_KATE_TIGER_H__ */