mozillaplugin.h
Go to the documentation of this file.
1 /* GStreamer
2  * Copyright (C) <2010> Pioneers of the Inevitable <songbird@songbirdnest.com>
3  *
4  * Authors: Steve Lloyd <slloyd@songbirdnest.com>
5  * Michael Smith <msmith@songbirdnest.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Library General Public License for more
16  */
17 
18 #ifdef HAVE_CONFIG_H
19 #include "config.h"
20 #endif
21 
22 #include <gst/gst.h>
23 
24 #define GST_MOZ_VERSION "1.0.4" // Version of gst-plugibs-bad
25 #define GST_MOZ_LICENSE "GPL"
26 #define GST_MOZ_PACKAGE "GStreamer Mozilla Plugin for Nightingale"
27 #define GST_MOZ_ORIGIN "http://www.getnightingale.com"
28 #define PACKAGE "Nightingale"
29 
30 GType gst_mozilla_src_get_type (void);
31 #define GST_TYPE_MOZILLA_SRC \
32  (gst_mozilla_src_get_type())
33 #define GST_MOZILLA_SRC(obj) \
34  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MOZILLA_SRC,GstMozillaSrc))
35 #define GST_MOZILLA_SRC_CLASS(klass) \
36  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MOZILLA_SRC,GstMozillaSrcClass))
37 #define GST_IS_MOZILLA_SRC(obj) \
38  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MOZILLA_SRC))
39 #define GST_IS_MOZILLA_SRC_CLASS(klass) \
40  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MOZILLA_SRC))
41 
42 GType gst_mozilla_sink_get_type (void);
43 #define GST_TYPE_MOZILLA_SINK \
44  (gst_mozilla_sink_get_type())
45 #define GST_MOZILLA_SINK(obj) \
46  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MOZILLA_SINK,GstMozillaSink))
47 #define GST_MOZILLA_SINK_CLASS(klass) \
48  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MOZILLA_SINK,GstMozillaSinkClass))
49 #define GST_IS_MOZILLA_SINK(obj) \
50  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MOZILLA_SINK))
51 #define GST_IS_MOZILLA_SINK_CLASS(klass) \
52  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MOZILLA_SINK))
GType gst_mozilla_sink_get_type(void)
GType gst_mozilla_src_get_type(void)