Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / ext / taglib / gstid3v2mux.h
1 /* GStreamer taglib-based ID3v2 muxer
2  * Copyright (C) 2006 Christophe Fergeau <teuf@gnome.org>
3  * Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef GST_ID3V2_MUX_H
22 #define GST_ID3V2_MUX_H
23
24 #include "gsttaglibmux.h"
25
26 G_BEGIN_DECLS
27
28 typedef struct _GstId3v2Mux GstId3v2Mux;
29 typedef struct _GstId3v2MuxClass GstId3v2MuxClass;
30
31 struct _GstId3v2Mux {
32   GstTagLibMux  taglibmux;
33 };
34
35 struct _GstId3v2MuxClass {
36   GstTagLibMuxClass  taglibmux_class;
37 };
38
39 #define GST_TYPE_ID3V2_MUX \
40   (gst_id3v2_mux_get_type())
41 #define GST_ID3V2_MUX(obj) \
42   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ID3V2_MUX,GstId3v2Mux))
43 #define GST_ID3V2_MUX_CLASS(klass) \
44   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ID3V2_MUX,GstId3v2MuxClass))
45 #define GST_IS_ID3V2_MUX(obj) \
46   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ID3V2_MUX))
47 #define GST_IS_ID3V2_MUX_CLASS(klass) \
48   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ID3V2_MUX))
49
50 GType gst_id3v2_mux_get_type (void);
51
52 G_END_DECLS
53
54 #endif /* GST_ID3V2_MUX_H */