rename multidisksrc to multifilesrc
[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  * gstmultifilesrc.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_MULTIFILESRC_H__
25 #define __GST_MULTIFILESRC_H__
26
27 #include <gst/gst.h>
28
29 G_BEGIN_DECLS
30
31
32 #define GST_TYPE_MULTIFILESRC \
33   (gst_multifilesrc_get_type())
34 #define GST_MULTIFILESRC(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIFILESRC,GstMultiFileSrc))
36 #define GST_MULTIFILESRC_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MULTIFILESRC,GstMultiFileSrcClass))
38 #define GST_IS_MULTIFILESRC(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTIFILESRC))
40 #define GST_IS_MULTIFILESRC_CLASS(obj) \
41   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTIFILESRC))
42
43 typedef enum {
44   GST_MULTIFILESRC_OPEN         = GST_ELEMENT_FLAG_LAST,
45
46   GST_MULTIFILESRC_FLAG_LAST    = GST_ELEMENT_FLAG_LAST + 2
47 } GstMultiFileSrcFlags;
48
49 typedef struct _GstMultiFileSrc GstMultiFileSrc;
50 typedef struct _GstMultiFileSrcClass GstMultiFileSrcClass;
51
52 struct _GstMultiFileSrc {
53   GstElement element;
54   /* pads */
55   GstPad *srcpad;
56
57   /* current file details */
58   gchar  *currentfilename;
59   GSList *listptr;
60
61   /* mapping parameters */
62   gint fd;
63   gulong size;    /* how long is the file? */
64   guchar *map;    /* where the file is mapped to */
65
66   gboolean new_seek;
67 };
68
69 struct _GstMultiFileSrcClass {
70   GstElementClass parent_class;
71
72   void (*new_file)  (GstMultiFileSrc *multifilesrc, gchar *newfilename);
73 };
74
75 GType gst_multifilesrc_get_type(void);
76
77 G_END_DECLS
78
79 #endif /* __GST_MULTIFILESRC_H__ */