a bunch of gtk-doc fixes
[platform/upstream/gstreamer.git] / gst / elements / gstmultifilesrc.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *                    2001 Dominic Ludlam <dom@recoil.org>
5  *
6  * gstmultidisksrc.h: 
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #ifndef __GST_MULTIDISKSRC_H__
25 #define __GST_MULTIDISKSRC_H__
26
27 #include <gst/gst.h>
28
29 G_BEGIN_DECLS
30
31 GstElementDetails gst_multidisksrc_details;
32
33 #define GST_TYPE_MULTIDISKSRC \
34   (gst_multidisksrc_get_type())
35 #define GST_MULTIDISKSRC(obj) \
36   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIDISKSRC,GstMultiDiskSrc))
37 #define GST_MULTIDISKSRC_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MULTIDISKSRC,GstMultiDiskSrcClass))
39 #define GST_IS_MULTIDISKSRC(obj) \
40   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTIDISKSRC))
41 #define GST_IS_MULTIDISKSRC_CLASS(obj) \
42   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTIDISKSRC))
43
44 typedef enum {
45   GST_MULTIDISKSRC_OPEN         = GST_ELEMENT_FLAG_LAST,
46
47   GST_MULTIDISKSRC_FLAG_LAST    = GST_ELEMENT_FLAG_LAST + 2
48 } GstMultiDiskSrcFlags;
49
50 typedef struct _GstMultiDiskSrc GstMultiDiskSrc;
51 typedef struct _GstMultiDiskSrcClass GstMultiDiskSrcClass;
52
53 struct _GstMultiDiskSrc {
54   GstElement element;
55   /* pads */
56   GstPad *srcpad;
57
58   /* current file details */
59   gchar  *currentfilename;
60   GSList *listptr;
61
62   /* mapping parameters */
63   gint fd;
64   gulong size;    /* how long is the file? */
65   guchar *map;    /* where the file is mapped to */
66
67   gboolean new_seek;
68 };
69
70 struct _GstMultiDiskSrcClass {
71   GstElementClass parent_class;
72
73   void (*new_file)  (GstMultiDiskSrc *multidisksrc, gchar *newfilename);
74 };
75
76 GType gst_multidisksrc_get_type(void);
77
78 G_END_DECLS
79
80 #endif /* __GST_MULTIDISKSRC_H__ */