Merged from GOBJECT1 to HEAD at 200106241
[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 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32
33 GstElementDetails gst_multidisksrc_details;
34
35 #define GST_TYPE_MULTIDISKSRC \
36   (gst_multidisksrc_get_type())
37 #define GST_MULTIDISKSRC(obj) \
38   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIDISKSRC,GstMultiDiskSrc))
39 #define GST_MULTIDISKSRC_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MULTIDISKSRC,GstMultiDiskSrcClass))
41 #define GST_IS_MULTIDISKSRC(obj) \
42   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTIDISKSRC))
43 #define GST_IS_MULTIDISKSRC_CLASS(obj) \
44   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTIDISKSRC))
45
46 typedef enum {
47   GST_MULTIDISKSRC_OPEN         = GST_ELEMENT_FLAG_LAST,
48
49   GST_MULTIDISKSRC_FLAG_LAST    = GST_ELEMENT_FLAG_LAST + 2,
50 } GstMultiDiskSrcFlags;
51
52 typedef struct _GstMultiDiskSrc GstMultiDiskSrc;
53 typedef struct _GstMultiDiskSrcClass GstMultiDiskSrcClass;
54
55 struct _GstMultiDiskSrc {
56   GstElement element;
57   /* pads */
58   GstPad *srcpad;
59
60   /* current file details */
61   gchar  *currentfilename;
62   GSList *listptr;
63
64   /* mapping parameters */
65   gint fd;
66   gulong size;    /* how long is the file? */
67   guchar *map;    /* where the file is mapped to */
68
69   gboolean new_seek;
70 };
71
72 struct _GstMultiDiskSrcClass {
73   GstElementClass parent_class;
74
75   void (*new_file)  (GstMultiDiskSrc *multidisksrc, gchar *newfilename);
76 };
77
78 GType gst_multidisksrc_get_type(void);
79
80 #ifdef __cplusplus
81 }
82 #endif /* __cplusplus */
83
84 #endif /* __GST_MULTIDISKSRC_H__ */