clutter-gstreamer 2.0.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +70 -0
- data/lib/clutter-gst.rb +77 -0
- data/test/clutter-gstreamer-test-utils.rb +21 -0
- data/test/run-test.rb +52 -0
- data/vendor/local/bin/libclutter-gst-2.0-0.dll +0 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-enum-types.h +23 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-player.h +186 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-types.h +65 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-util.h +53 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-version.h +98 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-video-sink.h +111 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-video-texture.h +132 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst.h +41 -0
- data/vendor/local/lib/girepository-1.0/ClutterGst-2.0.typelib +0 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter.dll +0 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter.la +41 -0
- data/vendor/local/lib/libclutter-gst-2.0.dll.a +0 -0
- data/vendor/local/lib/libclutter-gst-2.0.la +41 -0
- data/vendor/local/lib/pkgconfig/clutter-gst-2.0.pc +12 -0
- data/vendor/local/share/gir-1.0/ClutterGst-2.0.gir +1735 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstPlayer.html +949 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstVideoSink.html +177 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstVideoTexture.html +579 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/ch01.html +33 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/ch02.html +48 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst-Utilities.html +281 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst-Versioning-Macros.html +144 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst.devhelp2 +79 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/index.html +74 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/index.sgml +97 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/license.html +59 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst/up.png +0 -0
- data/vendor/local/share/license/clutter-gst/AUTHORS +7 -0
- data/vendor/local/share/license/clutter-gst/COPYING +502 -0
- metadata +131 -0
@@ -0,0 +1,53 @@
|
|
1
|
+
/*
|
2
|
+
* Clutter-GStreamer.
|
3
|
+
*
|
4
|
+
* GStreamer integration library for Clutter.
|
5
|
+
*
|
6
|
+
* clutter-gst-util.h - Miscellaneous functions.
|
7
|
+
*
|
8
|
+
* Authored By Matthew Allum <mallum@openedhand.com>
|
9
|
+
*
|
10
|
+
* Copyright (C) 2006 OpenedHand
|
11
|
+
*
|
12
|
+
* This library is free software; you can redistribute it and/or
|
13
|
+
* modify it under the terms of the GNU Lesser General Public
|
14
|
+
* License as published by the Free Software Foundation; either
|
15
|
+
* version 2 of the License, or (at your option) any later version.
|
16
|
+
*
|
17
|
+
* This library is distributed in the hope that it will be useful,
|
18
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
20
|
+
* Lesser General Public License for more details.
|
21
|
+
*
|
22
|
+
* You should have received a copy of the GNU Lesser General Public
|
23
|
+
* License along with this library; if not, write to the
|
24
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
25
|
+
* Boston, MA 02111-1307, USA.
|
26
|
+
*/
|
27
|
+
|
28
|
+
#if !defined(__CLUTTER_GST_H_INSIDE__) && !defined(CLUTTER_GST_COMPILATION)
|
29
|
+
#error "Only <clutter-gst/clutter-gst.h> can be include directly."
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#ifndef __CLUTTER_GST_UTIL_H__
|
33
|
+
#define __CLUTTER_GST_UTIL_H__
|
34
|
+
|
35
|
+
#include <clutter/clutter.h>
|
36
|
+
#include <gst/gst.h>
|
37
|
+
|
38
|
+
G_BEGIN_DECLS
|
39
|
+
|
40
|
+
ClutterInitError clutter_gst_init (int *argc,
|
41
|
+
char ***argv);
|
42
|
+
ClutterInitError clutter_gst_init_with_args (int *argc,
|
43
|
+
char ***argv,
|
44
|
+
const char *parameter_string,
|
45
|
+
GOptionEntry *entries,
|
46
|
+
const char *translation_domain,
|
47
|
+
GError **error);
|
48
|
+
GstElement * clutter_gst_video_sink_new (ClutterTexture *texture) G_GNUC_DEPRECATED;
|
49
|
+
|
50
|
+
|
51
|
+
G_END_DECLS
|
52
|
+
|
53
|
+
#endif /* __CLUTTER_GST_UTIL_H__ */
|
@@ -0,0 +1,98 @@
|
|
1
|
+
/*
|
2
|
+
* Clutter-GStreamer.
|
3
|
+
*
|
4
|
+
* GStreamer integration library for Clutter.
|
5
|
+
*
|
6
|
+
* Authored By Matthew Allum <mallum@openedhand.com>
|
7
|
+
*
|
8
|
+
* Copyright (C) 2006 OpenedHand
|
9
|
+
*
|
10
|
+
* This library is free software; you can redistribute it and/or
|
11
|
+
* modify it under the terms of the GNU Lesser General Public
|
12
|
+
* License as published by the Free Software Foundation; either
|
13
|
+
* version 2 of the License, or (at your option) any later version.
|
14
|
+
*
|
15
|
+
* This library is distributed in the hope that it will be useful,
|
16
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
18
|
+
* Lesser General Public License for more details.
|
19
|
+
*
|
20
|
+
* You should have received a copy of the GNU Lesser General Public
|
21
|
+
* License along with this library; if not, write to the
|
22
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
23
|
+
* Boston, MA 02111-1307, USA.
|
24
|
+
*/
|
25
|
+
|
26
|
+
#if !defined(__CLUTTER_GST_H_INSIDE__) && !defined(CLUTTER_GST_COMPILATION)
|
27
|
+
#error "Only <clutter-gst/clutter-gst.h> can be included directly."
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#ifndef __CLUTTER_GST_VERSION_H__
|
31
|
+
#define __CLUTTER_GST_VERSION_H__
|
32
|
+
|
33
|
+
/**
|
34
|
+
* SECTION:clutter-gst-version
|
35
|
+
* @short_description: Versioning Macros
|
36
|
+
*
|
37
|
+
* Version checking macros.
|
38
|
+
*/
|
39
|
+
|
40
|
+
/**
|
41
|
+
* CLUTTER_GST_MAJOR_VERSION:
|
42
|
+
*
|
43
|
+
* ClutterGst major version (e.g. "1", if %CLUTTER_GST_VERSION is "1.2.3")
|
44
|
+
*/
|
45
|
+
#define CLUTTER_GST_MAJOR_VERSION (2)
|
46
|
+
|
47
|
+
/**
|
48
|
+
* CLUTTER_GST_MINOR_VERSION:
|
49
|
+
*
|
50
|
+
* ClutterGst minor version (e.g. "2", if %CLUTTER_GST_VERSION is "1.2.3")
|
51
|
+
*/
|
52
|
+
#define CLUTTER_GST_MINOR_VERSION (0)
|
53
|
+
|
54
|
+
/**
|
55
|
+
* CLUTTER_GST_MICRO_VERSION:
|
56
|
+
*
|
57
|
+
* ClutterGst micro version (e.g. "3", if %CLUTTER_GST_VERSION is "1.2.3")
|
58
|
+
*/
|
59
|
+
#define CLUTTER_GST_MICRO_VERSION (2)
|
60
|
+
|
61
|
+
/**
|
62
|
+
* CLUTTER_GST_VERSION:
|
63
|
+
*
|
64
|
+
* ClutterGst full version (e.g. "1.2.3")
|
65
|
+
*/
|
66
|
+
#define CLUTTER_GST_VERSION (2.0.2)
|
67
|
+
|
68
|
+
/**
|
69
|
+
* CLUTTER_GST_VERSION_S:
|
70
|
+
*
|
71
|
+
* ClutterGst full version, encoded as a string.
|
72
|
+
*/
|
73
|
+
#define CLUTTER_GST_VERSION_S "2.0.2"
|
74
|
+
|
75
|
+
/**
|
76
|
+
* CLUTTER_GST_VERSION_HEX:
|
77
|
+
*
|
78
|
+
* ClutterGst full version, encoded as an hexadecimal value.
|
79
|
+
*/
|
80
|
+
#define CLUTTER_GST_VERSION_HEX ((CLUTTER_GST_MAJOR_VERSION << 24) | \
|
81
|
+
(CLUTTER_GST_MINOR_VERSION << 16) | \
|
82
|
+
(CLUTTER_GST_MICRO_VERSION << 8))
|
83
|
+
|
84
|
+
/**
|
85
|
+
* CLUTTER_GST_CHECK_VERSION:
|
86
|
+
* @major: major version, like 1 in 1.2.3
|
87
|
+
* @minor: minor version, like 2 in 1.2.3
|
88
|
+
* @micro: micro version, like 3 in 1.2.3
|
89
|
+
*
|
90
|
+
* Evaluates to %TRUE if the version of ClutterGst is greater than
|
91
|
+
* the @major, @minor and @micro values.
|
92
|
+
*/
|
93
|
+
#define CLUTTER_GST_CHECK_VERSION(major,minor,micro) \
|
94
|
+
(CLUTTER_GST_MAJOR_VERSION > (major) || \
|
95
|
+
(CLUTTER_GST_MAJOR_VERSION == (major) && CLUTTER_GST_MINOR_VERSION > (minor)) || \
|
96
|
+
(CLUTTER_GST_MAJOR_VERSION == (major) && CLUTTER_GST_MINOR_VERSION == (minor) && CLUTTER_GST_MICRO_VERSION >= (micro)))
|
97
|
+
|
98
|
+
#endif /* __CLUTTER_GST_VERSION_H__ */
|
@@ -0,0 +1,111 @@
|
|
1
|
+
/*
|
2
|
+
* Clutter-GStreamer.
|
3
|
+
*
|
4
|
+
* GStreamer integration library for Clutter.
|
5
|
+
*
|
6
|
+
* clutter-gst-video-sink.h - Gstreamer Video Sink that renders to a
|
7
|
+
* Clutter Texture.
|
8
|
+
*
|
9
|
+
* Authored by Jonathan Matthew <jonathan@kaolin.wh9.net>
|
10
|
+
*
|
11
|
+
* Copyright (C) 2007 OpenedHand
|
12
|
+
*
|
13
|
+
* This library is free software; you can redistribute it and/or
|
14
|
+
* modify it under the terms of the GNU Lesser General Public
|
15
|
+
* License as published by the Free Software Foundation; either
|
16
|
+
* version 2 of the License, or (at your option) any later version.
|
17
|
+
*
|
18
|
+
* This library is distributed in the hope that it will be useful,
|
19
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
21
|
+
* Lesser General Public License for more details.
|
22
|
+
*
|
23
|
+
* You should have received a copy of the GNU Lesser General Public
|
24
|
+
* License along with this library; if not, write to the
|
25
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
26
|
+
* Boston, MA 02111-1307, USA.
|
27
|
+
*/
|
28
|
+
|
29
|
+
#if !defined(__CLUTTER_GST_H_INSIDE__) && !defined(CLUTTER_GST_COMPILATION)
|
30
|
+
#error "Only <clutter-gst/clutter-gst.h> can be included directly."
|
31
|
+
#endif
|
32
|
+
|
33
|
+
#ifndef __CLUTTER_GST_VIDEO_SINK_H__
|
34
|
+
#define __CLUTTER_GST_VIDEO_SINK_H__
|
35
|
+
|
36
|
+
#include <glib-object.h>
|
37
|
+
#include <gst/base/gstbasesink.h>
|
38
|
+
#include <clutter/clutter.h>
|
39
|
+
|
40
|
+
#if defined (CLUTTER_WINDOWING_X11)
|
41
|
+
#include <X11/Xlib.h>
|
42
|
+
#endif
|
43
|
+
|
44
|
+
|
45
|
+
G_BEGIN_DECLS
|
46
|
+
|
47
|
+
#define CLUTTER_GST_TYPE_VIDEO_SINK clutter_gst_video_sink_get_type()
|
48
|
+
|
49
|
+
#define CLUTTER_GST_VIDEO_SINK(obj) \
|
50
|
+
(G_TYPE_CHECK_INSTANCE_CAST ((obj), \
|
51
|
+
CLUTTER_GST_TYPE_VIDEO_SINK, ClutterGstVideoSink))
|
52
|
+
|
53
|
+
#define CLUTTER_GST_VIDEO_SINK_CLASS(klass) \
|
54
|
+
(G_TYPE_CHECK_CLASS_CAST ((klass), \
|
55
|
+
CLUTTER_GST_TYPE_VIDEO_SINK, ClutterGstVideoSinkClass))
|
56
|
+
|
57
|
+
#define CLUTTER_GST_IS_VIDEO_SINK(obj) \
|
58
|
+
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
|
59
|
+
CLUTTER_GST_TYPE_VIDEO_SINK))
|
60
|
+
|
61
|
+
#define CLUTTER_GST_IS_VIDEO_SINK_CLASS(klass) \
|
62
|
+
(G_TYPE_CHECK_CLASS_TYPE ((klass), \
|
63
|
+
CLUTTER_GST_TYPE_VIDEO_SINK))
|
64
|
+
|
65
|
+
#define CLUTTER_GST_VIDEO_SINK_GET_CLASS(obj) \
|
66
|
+
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
|
67
|
+
CLUTTER_GST_TYPE_VIDEO_SINK, ClutterGstVideoSinkClass))
|
68
|
+
|
69
|
+
typedef struct _ClutterGstVideoSink ClutterGstVideoSink;
|
70
|
+
typedef struct _ClutterGstVideoSinkClass ClutterGstVideoSinkClass;
|
71
|
+
typedef struct _ClutterGstVideoSinkPrivate ClutterGstVideoSinkPrivate;
|
72
|
+
|
73
|
+
/**
|
74
|
+
* ClutterGstVideoSink:
|
75
|
+
*
|
76
|
+
* Class implementing a GStreamer sink element for #ClutterTexture<!-- -->s.
|
77
|
+
*
|
78
|
+
* The #ClutterGstVideoSink structure contains only private data and should
|
79
|
+
* not be accessed directly.
|
80
|
+
*/
|
81
|
+
struct _ClutterGstVideoSink
|
82
|
+
{
|
83
|
+
/*< private >*/
|
84
|
+
GstBaseSink parent;
|
85
|
+
ClutterGstVideoSinkPrivate *priv;
|
86
|
+
};
|
87
|
+
|
88
|
+
/**
|
89
|
+
* ClutterGstVideoSinkClass:
|
90
|
+
*
|
91
|
+
* Base class for #ClutterGstVideoSink.
|
92
|
+
*/
|
93
|
+
struct _ClutterGstVideoSinkClass
|
94
|
+
{
|
95
|
+
/*< private >*/
|
96
|
+
GstBaseSinkClass parent_class;
|
97
|
+
|
98
|
+
/* Future padding */
|
99
|
+
void (* _clutter_reserved1) (void);
|
100
|
+
void (* _clutter_reserved2) (void);
|
101
|
+
void (* _clutter_reserved3) (void);
|
102
|
+
void (* _clutter_reserved4) (void);
|
103
|
+
void (* _clutter_reserved5) (void);
|
104
|
+
void (* _clutter_reserved6) (void);
|
105
|
+
};
|
106
|
+
|
107
|
+
GType clutter_gst_video_sink_get_type (void) G_GNUC_CONST;
|
108
|
+
|
109
|
+
G_END_DECLS
|
110
|
+
|
111
|
+
#endif /* __CLUTTER_GST_VIDEO_SINK_H__ */
|
@@ -0,0 +1,132 @@
|
|
1
|
+
/*
|
2
|
+
* Clutter-GStreamer.
|
3
|
+
*
|
4
|
+
* GStreamer integration library for Clutter.
|
5
|
+
*
|
6
|
+
* clutter-gst-video-texture.h - ClutterTexture using GStreamer to display a
|
7
|
+
* video stream.
|
8
|
+
*
|
9
|
+
* Authored By Matthew Allum <mallum@openedhand.com>
|
10
|
+
*
|
11
|
+
* Copyright (C) 2006 OpenedHand
|
12
|
+
*
|
13
|
+
* This library is free software; you can redistribute it and/or
|
14
|
+
* modify it under the terms of the GNU Lesser General Public
|
15
|
+
* License as published by the Free Software Foundation; either
|
16
|
+
* version 2 of the License, or (at your option) any later version.
|
17
|
+
*
|
18
|
+
* This library is distributed in the hope that it will be useful,
|
19
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
21
|
+
* Lesser General Public License for more details.
|
22
|
+
*
|
23
|
+
* You should have received a copy of the GNU Lesser General Public
|
24
|
+
* License along with this library; if not, write to the
|
25
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
26
|
+
* Boston, MA 02111-1307, USA.
|
27
|
+
*/
|
28
|
+
|
29
|
+
#if !defined(__CLUTTER_GST_H_INSIDE__) && !defined(CLUTTER_GST_COMPILATION)
|
30
|
+
#error "Only <clutter-gst/clutter-gst.h> can be included directly."
|
31
|
+
#endif
|
32
|
+
|
33
|
+
#ifndef __CLUTTER_GST_VIDEO_TEXTURE_H__
|
34
|
+
#define __CLUTTER_GST_VIDEO_TEXTURE_H__
|
35
|
+
|
36
|
+
#include <glib-object.h>
|
37
|
+
#include <clutter/clutter.h>
|
38
|
+
#include <gst/gstelement.h>
|
39
|
+
|
40
|
+
#include <clutter-gst/clutter-gst-types.h>
|
41
|
+
|
42
|
+
G_BEGIN_DECLS
|
43
|
+
|
44
|
+
#define CLUTTER_GST_TYPE_VIDEO_TEXTURE clutter_gst_video_texture_get_type()
|
45
|
+
|
46
|
+
#define CLUTTER_GST_VIDEO_TEXTURE(obj) \
|
47
|
+
(G_TYPE_CHECK_INSTANCE_CAST ((obj), \
|
48
|
+
CLUTTER_GST_TYPE_VIDEO_TEXTURE, ClutterGstVideoTexture))
|
49
|
+
|
50
|
+
#define CLUTTER_GST_VIDEO_TEXTURE_CLASS(klass) \
|
51
|
+
(G_TYPE_CHECK_CLASS_CAST ((klass), \
|
52
|
+
CLUTTER_GST_TYPE_VIDEO_TEXTURE, ClutterGstVideoTextureClass))
|
53
|
+
|
54
|
+
#define CLUTTER_GST_IS_VIDEO_TEXTURE(obj) \
|
55
|
+
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
|
56
|
+
CLUTTER_GST_TYPE_VIDEO_TEXTURE))
|
57
|
+
|
58
|
+
#define CLUTTER_GST_IS_VIDEO_TEXTURE_CLASS(klass) \
|
59
|
+
(G_TYPE_CHECK_CLASS_TYPE ((klass), \
|
60
|
+
CLUTTER_GST_TYPE_VIDEO_TEXTURE))
|
61
|
+
|
62
|
+
#define CLUTTER_GST_VIDEO_TEXTURE_GET_CLASS(obj) \
|
63
|
+
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
|
64
|
+
CLUTTER_GST_TYPE_VIDEO_TEXTURE, ClutterGstVideoTextureClass))
|
65
|
+
|
66
|
+
typedef struct _ClutterGstVideoTexture ClutterGstVideoTexture;
|
67
|
+
typedef struct _ClutterGstVideoTextureClass ClutterGstVideoTextureClass;
|
68
|
+
typedef struct _ClutterGstVideoTexturePrivate ClutterGstVideoTexturePrivate;
|
69
|
+
|
70
|
+
/**
|
71
|
+
* ClutterGstVideoTexture:
|
72
|
+
*
|
73
|
+
* Subclass of #ClutterTexture that displays videos using GStreamer.
|
74
|
+
*
|
75
|
+
* The #ClutterGstVideoTexture structure contains only private data and
|
76
|
+
* should not be accessed directly.
|
77
|
+
*/
|
78
|
+
struct _ClutterGstVideoTexture
|
79
|
+
{
|
80
|
+
/*< private >*/
|
81
|
+
ClutterTexture parent;
|
82
|
+
ClutterGstVideoTexturePrivate *priv;
|
83
|
+
};
|
84
|
+
|
85
|
+
/**
|
86
|
+
* ClutterGstVideoTextureClass:
|
87
|
+
*
|
88
|
+
* Base class for #ClutterGstVideoTexture.
|
89
|
+
*/
|
90
|
+
struct _ClutterGstVideoTextureClass
|
91
|
+
{
|
92
|
+
/*< private >*/
|
93
|
+
ClutterTextureClass parent_class;
|
94
|
+
|
95
|
+
/* Future padding */
|
96
|
+
void (* _clutter_reserved1) (void);
|
97
|
+
void (* _clutter_reserved2) (void);
|
98
|
+
void (* _clutter_reserved3) (void);
|
99
|
+
void (* _clutter_reserved4) (void);
|
100
|
+
void (* _clutter_reserved5) (void);
|
101
|
+
void (* _clutter_reserved6) (void);
|
102
|
+
};
|
103
|
+
|
104
|
+
GType clutter_gst_video_texture_get_type (void) G_GNUC_CONST;
|
105
|
+
ClutterActor * clutter_gst_video_texture_new (void);
|
106
|
+
|
107
|
+
GstElement * clutter_gst_video_texture_get_pipeline (ClutterGstVideoTexture *texture);
|
108
|
+
|
109
|
+
CoglHandle clutter_gst_video_texture_get_idle_material (ClutterGstVideoTexture *texture);
|
110
|
+
void clutter_gst_video_texture_set_idle_material (ClutterGstVideoTexture *texture,
|
111
|
+
CoglHandle material);
|
112
|
+
gchar * clutter_gst_video_texture_get_user_agent (ClutterGstVideoTexture *texture);
|
113
|
+
void clutter_gst_video_texture_set_user_agent (ClutterGstVideoTexture *texture,
|
114
|
+
const gchar * user_agent);
|
115
|
+
ClutterGstSeekFlags clutter_gst_video_texture_get_seek_flags (ClutterGstVideoTexture *texture);
|
116
|
+
void clutter_gst_video_texture_set_seek_flags (ClutterGstVideoTexture *texture,
|
117
|
+
ClutterGstSeekFlags flags);
|
118
|
+
ClutterGstBufferingMode clutter_gst_video_texture_get_buffering_mode (ClutterGstVideoTexture *texture);
|
119
|
+
void clutter_gst_video_texture_set_buffering_mode (ClutterGstVideoTexture *texture,
|
120
|
+
ClutterGstBufferingMode mode);
|
121
|
+
GList * clutter_gst_video_texture_get_audio_streams (ClutterGstVideoTexture *texture);
|
122
|
+
gint clutter_gst_video_texture_get_audio_stream (ClutterGstVideoTexture *texture);
|
123
|
+
void clutter_gst_video_texture_set_audio_stream (ClutterGstVideoTexture *texture,
|
124
|
+
gint index_);
|
125
|
+
GList * clutter_gst_video_texture_get_subtitle_tracks (ClutterGstVideoTexture *texture);
|
126
|
+
gint clutter_gst_video_texture_get_subtitle_track (ClutterGstVideoTexture *texture);
|
127
|
+
void clutter_gst_video_texture_set_subtitle_track (ClutterGstVideoTexture *texture,
|
128
|
+
gint index_);
|
129
|
+
|
130
|
+
G_END_DECLS
|
131
|
+
|
132
|
+
#endif /* __CLUTTER_GST_VIDEO_TEXTURE_H__ */
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/*
|
2
|
+
* Clutter-GStreamer.
|
3
|
+
*
|
4
|
+
* GStreamer integration library for Clutter.
|
5
|
+
*
|
6
|
+
* clutter.h - Top level header file.
|
7
|
+
*
|
8
|
+
* Copyright (C) 2006 OpenedHand
|
9
|
+
*
|
10
|
+
* This library is free software; you can redistribute it and/or
|
11
|
+
* modify it under the terms of the GNU Lesser General Public
|
12
|
+
* License as published by the Free Software Foundation; either
|
13
|
+
* version 2 of the License, or (at your option) any later version.
|
14
|
+
*
|
15
|
+
* This library is distributed in the hope that it will be useful,
|
16
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
18
|
+
* Lesser General Public License for more details.
|
19
|
+
*
|
20
|
+
* You should have received a copy of the GNU Lesser General Public
|
21
|
+
* License along with this library; if not, write to the
|
22
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
23
|
+
* Boston, MA 02111-1307, USA.
|
24
|
+
*/
|
25
|
+
|
26
|
+
#ifndef __CLUTTER_GST_H__
|
27
|
+
#define __CLUTTER_GST_H__
|
28
|
+
|
29
|
+
#include <clutter/clutter.h>
|
30
|
+
|
31
|
+
#define __CLUTTER_GST_H_INSIDE__
|
32
|
+
|
33
|
+
#include "clutter-gst-types.h"
|
34
|
+
#include "clutter-gst-enum-types.h"
|
35
|
+
#include "clutter-gst-video-sink.h"
|
36
|
+
#include "clutter-gst-video-texture.h"
|
37
|
+
#include "clutter-gst-util.h"
|
38
|
+
#include "clutter-gst-version.h"
|
39
|
+
#include "clutter-gst-player.h"
|
40
|
+
|
41
|
+
#endif /* __CLUTTER_GST_H__ */
|
Binary file
|
Binary file
|
Binary file
|