Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / ext / pango / gstclockoverlay.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2005> Tim-Philipp Müller <tim@centricular.net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21
22 #ifndef __GST_CLOCK_OVERLAY_H__
23 #define __GST_CLOCK_OVERLAY_H__
24
25 #include "gsttextoverlay.h"
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_CLOCK_OVERLAY \
30   (gst_clock_overlay_get_type())
31 #define GST_CLOCK_OVERLAY(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_CLOCK_OVERLAY,GstClockOverlay))
33 #define GST_CLOCK_OVERLAY_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_CLOCK_OVERLAY,GstClockOverlayClass))
35 #define GST_IS_CLOCK_OVERLAY(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_CLOCK_OVERLAY))
37 #define GST_IS_CLOCK_OVERLAY_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_CLOCK_OVERLAY))
39
40 typedef struct _GstClockOverlay GstClockOverlay;
41 typedef struct _GstClockOverlayClass GstClockOverlayClass;
42
43 /**
44  * GstClockOverlay:
45  *
46  * Opaque clockoverlay data structure.
47  */
48 struct _GstClockOverlay {
49   GstTextOverlay textoverlay;
50   gchar         *format; /* as in strftime () */
51   gchar         *text;
52 };
53
54 struct _GstClockOverlayClass {
55   GstTextOverlayClass parent_class;
56 };
57
58 GType gst_clock_overlay_get_type (void);
59
60
61 /* This is a hack hat allows us to use nonliterals for strftime without
62  * triggering a warning from -Wformat-nonliteral. We need to allow this
63  * because we export the format string as a property of the element.
64  * For the inspiration of this and a discussion of why this is necessary,
65  * see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39438
66  */
67 #ifdef __GNUC__
68 #pragma GCC system_header
69 static size_t my_strftime(char *s, size_t max, const char *format,
70                           const struct tm *tm)
71 {
72   return strftime (s, max, format, tm);
73 }
74 #define strftime my_strftime
75 #endif
76
77
78 G_END_DECLS
79
80 #endif /* __GST_CLOCK_OVERLAY_H__ */
81