mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
don't do queries on error, we don't get many errors these days for which it is useful tell us which scheduler we're n...
Original commit message from CVS: don't do queries on error, we don't get many errors these days for which it is useful tell us which scheduler we're not finding
This commit is contained in:
parent
80cc767749
commit
84e121f4dd
2 changed files with 8 additions and 4 deletions
|
@ -70,7 +70,9 @@ debug_log_handler (const gchar *log_domain,
|
|||
gpointer user_data)
|
||||
{
|
||||
g_log_default_handler (log_domain, log_level, message, user_data);
|
||||
g_on_error_query (NULL);
|
||||
/* FIXME: do we still need this ? fatal errors these days are all
|
||||
* other than core errors */
|
||||
/* g_on_error_query (NULL); */
|
||||
}
|
||||
|
||||
enum {
|
||||
|
|
|
@ -108,9 +108,11 @@ gst_pipeline_init (GstPipeline *pipeline)
|
|||
|
||||
/* FIXME need better error handling */
|
||||
if (scheduler == NULL) {
|
||||
g_error ("Critical error: could not get a scheduler - \
|
||||
are you sure you have a registry ? Run gst-register as root \
|
||||
if you haven't done so yet.");
|
||||
const gchar *name = gst_scheduler_factory_get_default_name ();
|
||||
|
||||
g_error ("Critical error: could not get scheduler \"%s\"\n"
|
||||
"Are you sure you have a registry ?\n"
|
||||
"Run gst-register as root if you haven't done so yet.", name);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue