15fa88e0dd213cb933df800da7643f37e33e9744
[platform/upstream/gstreamer.git] / ext / sidplay / gstsiddec.h
1 /* GStreamer
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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20
21 #ifndef __GST_SIDDEC_H__
22 #define __GST_SIDDEC_H__
23
24 #include <stdlib.h>
25 #include <sidplay/player.h>
26
27 #include <gst/gst.h>
28
29 G_BEGIN_DECLS
30
31 #define GST_TYPE_SIDDEC \
32   (gst_siddec_get_type())
33 #define GST_SIDDEC(obj) \
34   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SIDDEC,GstSidDec))
35 #define GST_SIDDEC_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SIDDEC,GstSidDecClass))
37 #define GST_IS_SIDDEC(obj) \
38   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SIDDEC))
39 #define GST_IS_SIDDEC_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SIDDEC))
41
42 typedef struct _GstSidDec GstSidDec;
43 typedef struct _GstSidDecClass GstSidDecClass;
44
45 struct _GstSidDec {
46   GstElement     element;
47
48   /* pads */
49   GstPad        *sinkpad, 
50                 *srcpad;
51
52   gboolean       have_group_id;
53   guint          group_id;
54
55   guchar        *tune_buffer;
56   gint           tune_len;
57   gint           tune_number;
58   guint64        total_bytes;
59
60   emuEngine     *engine;
61   sidTune       *tune;
62   emuConfig     *config;
63
64   guint         blocksize;
65 };
66
67 struct _GstSidDecClass {
68   GstElementClass parent_class;
69 };
70
71 GType gst_siddec_get_type (void);
72 GST_ELEMENT_REGISTER_DECLARE (siddec);
73
74 G_END_DECLS
75
76 #endif /* __GST_SIDDEC_H__ */