3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Library General Public
5 * License as published by the Free Software Foundation; either
6 * version 2 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Library General Public License for more details.
13 * You should have received a copy of the GNU Library General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
19 #ifndef __GST_PLAYBINMAEMO_H__
20 #define __GST_PLAYBINMAEMO_H__
26 #define GST_TYPE_PLAY_BIN_MAEMO \
27 (gst_play_bin_maemo_get_type())
28 #define GST_PLAY_BIN_MAEMO(obj) \
29 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PLAY_BIN_MAEMO,GstPlayBinMaemo))
30 #define GST_PLAY_BIN_MAEMO_CLASS(klass) \
31 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PLAY_BIN_MAEMO,GstPlayBinMaemoClass))
32 #define GST_IS_PLAY_BIN_MAEMO(obj) \
33 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PLAY_BIN_MAEMO))
34 #define GST_IS_PLAY_BIN_MAEMO_CLASS(klass) \
35 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PLAY_BIN_MAEMO))
36 #define GST_PLAY_BIN_MAEMO_GET_CLASS(obj) \
37 (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_PLAY_BIN_MAEMO,GstPlayBinMaemoClass))
39 typedef struct _GstPlayBinMaemo GstPlayBinMaemo;
40 typedef struct _GstPlayBinMaemoClass GstPlayBinMaemoClass;
42 struct _GstPlayBinMaemo {
47 guint64 queue_min_threshold;
49 gboolean parse_metadata;
53 /* currently loaded media */
54 gboolean need_rebuild;
55 gboolean has_metadata;
57 GstElement *volume_element;
59 GstElement *video_sink;
64 struct _GstPlayBinMaemoClass {
65 GstPipelineClass parent_class;
68 GType gst_play_bin_maemo_get_type (void);
72 #endif /* __GST_PLAYBINMAEMO_H__ */