]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - plugins/elements/gstfdsrc.h
initial checkin
[glsdk/gstreamer0-10.git] / plugins / elements / gstfdsrc.h
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
21 #ifndef __GST_FDSRC_H__
22 #define __GST_FDSRC_H__
25 #include <config.h>
26 #include <gst/gst.h>
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
34 GstElementDetails gst_fdsrc_details;
37 #define GST_TYPE_FDSRC \
38   (gst_fdsrc_get_type())
39 #define GST_FDSRC(obj) \
40   (GTK_CHECK_CAST((obj),GST_TYPE_FDSRC,GstFdSrc))
41 #define GST_FDSRC_CLASS(klass) \
42   (GTK_CHECK_CLASS_CAST((klass),GST_TYPE_FDSRC,GstFdSrcClass))
43 #define GST_IS_FDSRC(obj) \
44   (GTK_CHECK_TYPE((obj),GST_TYPE_FDSRC))
45 #define GST_IS_FDSRC_CLASS(obj) \
46   (GTK_CHECK_CLASS_TYPE((klass),GST_TYPE_FDSRC)))
49 typedef struct _GstFdSrc GstFdSrc;
50 typedef struct _GstFdSrcClass GstFdSrcClass;
52 struct _GstFdSrc {
53   GstSrc src;
54   /* pads */
55   GstPad *srcpad;
57   /* fd */
58   gint fd;
60   gulong curoffset;                     /* current offset in file */
61   gulong bytes_per_read;                /* bytes per read */
63   gulong seq;                           /* buffer sequence number */
64 };
66 struct _GstFdSrcClass {
67   GstSrcClass parent_class;
68 };
70 GtkType gst_fdsrc_get_type(void);
72 #ifdef __cplusplus
73 }
74 #endif /* __cplusplus */
77 #endif /* __GST_FDSRC_H__ */