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