1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
* Copyright (C) 2003-2007 the GStreamer project
* Julien Moutte <julien@moutte.net>
* Ronald Bultje <rbultje@ronald.bitfreak.net>
* Copyright (C) 2005-2008 Tim-Philipp Müller <tim centricular net>
* Copyright (C) 2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* Copyright © 2009 Christian Persch
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* The Totem project hereby grant permission for non-gpl compatible GStreamer
* plugins to be used and distributed together with GStreamer and Totem. This
* permission is above and beyond the permissions granted by the GPL license
* Totem is covered by.
*
* Monday 7th February 2005: Christian Schaller: Add exception clause.
* See license_change file for details.
*
*/
#include "totem-gst-helpers.h"
#include <gst/tag/tag.h>
#include <gst/video/video-format.h>
void
totem_gst_message_print (GstMessage *msg,
GstElement *play,
const char *filename)
{
GError *err = NULL;
char *dbg = NULL;
g_return_if_fail (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_ERROR);
if (play != NULL) {
g_return_if_fail (filename != NULL);
GST_DEBUG_BIN_TO_DOT_FILE (GST_BIN_CAST (play),
GST_DEBUG_GRAPH_SHOW_ALL ^ GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS,
filename);
}
gst_message_parse_error (msg, &err, &dbg);
if (err) {
char *uri;
g_object_get (play, "uri", &uri, NULL);
GST_ERROR ("message = %s", GST_STR_NULL (err->message));
GST_ERROR ("domain = %d (%s)", err->domain,
GST_STR_NULL (g_quark_to_string (err->domain)));
GST_ERROR ("code = %d", err->code);
GST_ERROR ("debug = %s", GST_STR_NULL (dbg));
GST_ERROR ("source = %" GST_PTR_FORMAT, msg->src);
GST_ERROR ("uri = %s", GST_STR_NULL (uri));
g_free (uri);
g_error_free (err);
}
g_free (dbg);
}
/* Disable decoders that require a display environment to work,
* and that might cause crashes */
void
totem_gst_disable_display_decoders (void)
{
GstRegistry *registry;
const char *blocked_plugins[] = {
"bmcdec",
"vaapi",
"video4linux2"
};
guint i;
/* Disable the vaapi plugin as it will not work with the
* fakesink we use:
* See: https://bugzilla.gnome.org/show_bug.cgi?id=700186 and
* https://bugzilla.gnome.org/show_bug.cgi?id=749605 */
registry = gst_registry_get ();
for (i = 0; i < G_N_ELEMENTS (blocked_plugins); i++) {
GstPlugin *plugin =
gst_registry_find_plugin (registry,
blocked_plugins[i]);
if (plugin)
gst_registry_remove_plugin (registry, plugin);
}
}
/*
* vim: sw=2 ts=8 cindent noai bs=2
*/
|