ext/pango/gsttextoverlay.c: Some more logging. Only accept newsegment events in TIME...
[platform/upstream/gstreamer.git] / gst / subparse / gstsubparse.h
1 /* GStreamer
2  * Copyright (C) <2002> David A. Schleef <ds@schleef.org>
3  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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 #ifndef __GST_SUBPARSE_H__
22 #define __GST_SUBPARSE_H__
23
24 #include <gst/gst.h>
25
26 GST_DEBUG_CATEGORY_EXTERN (sub_parse_debug);
27 #define GST_CAT_DEFAULT sub_parse_debug
28
29 G_BEGIN_DECLS
30
31 #define GST_TYPE_SUBPARSE \
32   (gst_sub_parse_get_type ())
33 #define GST_SUBPARSE(obj) \
34   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SUBPARSE, GstSubParse))
35 #define GST_SUBPARSE_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SUBPARSE, GstSubParseClass))
37 #define GST_IS_SUBPARSE(obj) \
38   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SUBPARSE))
39 #define GST_IS_SUBPARSE_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SUBPARSE))
41
42 typedef struct _GstSubParse GstSubParse;
43 typedef struct _GstSubParseClass GstSubParseClass;
44
45 /* format enum */
46 typedef enum
47 {
48   GST_SUB_PARSE_FORMAT_UNKNOWN = 0,
49   GST_SUB_PARSE_FORMAT_MDVDSUB = 1,
50   GST_SUB_PARSE_FORMAT_SUBRIP = 2,
51   GST_SUB_PARSE_FORMAT_MPSUB = 3,
52   GST_SUB_PARSE_FORMAT_SAMI = 4,
53   GST_SUB_PARSE_FORMAT_TMPLAYER = 5
54 } GstSubParseFormat;
55
56 typedef struct {
57   int      state;
58   GString *buf;
59   guint64  start_time;
60   guint64  duration;
61   GstSegment *segment;
62   gpointer user_data;
63   gdouble  fps;          /* used by microdvd parser */
64 } ParserState;
65
66 typedef gchar* (*Parser) (ParserState *state, const gchar *line);
67
68 struct _GstSubParse {
69   GstElement element;
70
71   GstPad *sinkpad,*srcpad;
72
73   GString *textbuf;
74
75   GstSubParseFormat parser_type;
76   gboolean parser_detected;
77
78   Parser parse_line;
79   ParserState state;
80
81   /* seek */
82   guint64 offset;
83   guint64 next_offset;
84   
85   /* Segment */
86   GstSegment    segment;
87   GstSeekFlags  segment_flags;
88   gboolean      need_segment;
89   
90   gboolean flushing;
91   gboolean valid_utf8;
92   gchar   *encoding;
93 };
94
95 struct _GstSubParseClass {
96   GstElementClass parent_class;
97 };
98
99 GType gst_sub_parse_get_type (void);
100
101 G_END_DECLS
102
103 #endif /* __GST_SUBPARSE_H__ */