2004-01-18 21:36:20 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2003> David A. Schleef <ds@schleef.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-08-31 14:08:45 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gsterror
|
|
|
|
* @short_description: Categorized error messages
|
2005-11-18 18:55:24 +00:00
|
|
|
* @see_also: #GstMessage
|
2005-08-31 14:08:45 +00:00
|
|
|
*
|
2005-11-18 18:55:24 +00:00
|
|
|
* GStreamer elements can throw non-fatal warnings and fatal errors.
|
|
|
|
* Higher-level elements and applications can programatically filter
|
|
|
|
* the ones they are interested in or can recover from,
|
|
|
|
* and have a default handler handle the rest of them.
|
|
|
|
*
|
|
|
|
* The rest of this section will use the term <quote>error</quote>
|
|
|
|
* to mean both (non-fatal) warnings and (fatal) errors; they are treated
|
|
|
|
* similarly.
|
|
|
|
*
|
|
|
|
* Errors from elements are the combination of a #GError and a debug string.
|
|
|
|
* The #GError contains:
|
|
|
|
* - a domain type: CORE, LIBRARY, RESOURCE or STREAM
|
|
|
|
* - a code: an enum value specific to the domain
|
|
|
|
* - a translated, human-readable message
|
|
|
|
* - a non-translated additional debug string, which also contains
|
|
|
|
* - file and line information
|
|
|
|
*
|
|
|
|
* Elements do not have the context required to decide what to do with
|
|
|
|
* errors. As such, they should only inform about errors, and stop their
|
|
|
|
* processing. In short, an element doesn't know what it is being used for.
|
|
|
|
*
|
|
|
|
* It is the application or compound element using the given element that
|
2006-09-15 21:30:00 +00:00
|
|
|
* has more context about the use of the element. Errors can be received by
|
|
|
|
* listening to the #GstBus of the element/pipeline for #GstMessage objects with
|
|
|
|
* the type %GST_MESSAGE_ERROR or %GST_MESSAGE_WARNING. The thrown errors should
|
2005-11-18 18:55:24 +00:00
|
|
|
* be inspected, and filtered if appropriate.
|
|
|
|
*
|
|
|
|
* An application is expected to, by default, present the user with a
|
|
|
|
* dialog box (or an equivalent) showing the error message. The dialog
|
|
|
|
* should also allow a way to get at the additional debug information,
|
|
|
|
* so the user can provide bug reporting information.
|
|
|
|
*
|
|
|
|
* A compound element is expected to forward errors by default higher up
|
|
|
|
* the hierarchy; this is done by default in the same way as for other types
|
|
|
|
* of #GstMessage.
|
|
|
|
*
|
|
|
|
* When applications or compound elements trigger errors that they can
|
|
|
|
* recover from, they can filter out these errors and take appropriate action.
|
|
|
|
* For example, an application that gets an error from xvimagesink
|
|
|
|
* that indicates all XVideo ports are taken, the application can attempt
|
|
|
|
* to use another sink instead.
|
|
|
|
*
|
|
|
|
* Elements throw errors using the #GST_ELEMENT_ERROR convenience macro:
|
|
|
|
*
|
|
|
|
* <example>
|
|
|
|
* <title>Throwing an error</title>
|
|
|
|
* <programlisting>
|
|
|
|
* GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND,
|
|
|
|
* (_("No file name specified for reading.")), (NULL));
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
|
|
|
*
|
|
|
|
* Things to keep in mind:
|
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem><para>Don't go off inventing new error codes. The ones
|
|
|
|
* currently provided should be enough. If you find your type of error
|
|
|
|
* does not fit the current codes, you should use FAILED.</para></listitem>
|
|
|
|
* <listitem><para>Don't provide a message if the default one suffices.
|
|
|
|
* this keeps messages more uniform. Use (NULL) - not forgetting the
|
|
|
|
* parentheses.</para></listitem>
|
|
|
|
* <listitem><para>If you do supply a custom message, it should be
|
|
|
|
* marked for translation. The message should start with a capital
|
2006-09-02 13:40:41 +00:00
|
|
|
* and end with a period. The message should describe the error in short,
|
|
|
|
* in a human-readable form, and without any complex technical terms.
|
|
|
|
* A user interface will present this message as the first thing a user
|
|
|
|
* sees. Details, technical info, ... should go in the debug string.
|
|
|
|
* </para></listitem>
|
2005-11-18 18:55:24 +00:00
|
|
|
* <listitem><para>The debug string can be as you like. Again, use (NULL)
|
|
|
|
* if there's nothing to add - file and line number will still be
|
|
|
|
* passed. #GST_ERROR_SYSTEM can be used as a shortcut to give
|
|
|
|
* debug information on a system call error.</para></listitem>
|
|
|
|
* </itemizedlist>
|
2006-09-15 21:30:00 +00:00
|
|
|
*
|
|
|
|
* Last reviewed on 2006-09-15 (0.10.10)
|
2005-08-31 14:08:45 +00:00
|
|
|
*/
|
2004-01-18 21:36:20 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gst_private.h"
|
2004-05-07 02:36:28 +00:00
|
|
|
#include <gst/gst.h>
|
2004-01-18 21:36:20 +00:00
|
|
|
#include "gst-i18n-lib.h"
|
|
|
|
|
|
|
|
#define TABLE(t, d, a, b) t[GST_ ## d ## _ERROR_ ## a] = g_strdup (b)
|
2005-12-06 19:29:15 +00:00
|
|
|
#define QUARK_FUNC(string) \
|
|
|
|
GQuark gst_ ## string ## _error_quark (void) { \
|
|
|
|
static GQuark quark; \
|
|
|
|
if (!quark) \
|
2004-01-18 21:36:20 +00:00
|
|
|
quark = g_quark_from_static_string ("gst-" # string "-error-quark"); \
|
|
|
|
return quark; }
|
|
|
|
|
2004-03-09 14:44:36 +00:00
|
|
|
GType
|
|
|
|
gst_g_error_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2006-06-12 08:55:21 +00:00
|
|
|
if (G_UNLIKELY (type == 0))
|
2004-03-09 14:44:36 +00:00
|
|
|
type = g_boxed_type_register_static ("GstGError",
|
2004-03-15 19:27:17 +00:00
|
|
|
(GBoxedCopyFunc) g_error_copy, (GBoxedFreeFunc) g_error_free);
|
2004-03-13 15:27:01 +00:00
|
|
|
return type;
|
2004-03-09 14:44:36 +00:00
|
|
|
}
|
|
|
|
|
2006-06-06 08:50:25 +00:00
|
|
|
#define FILE_A_BUG " Please file a bug at " PACKAGE_BUGREPORT "."
|
2005-11-14 12:17:46 +00:00
|
|
|
|
2004-01-18 21:36:20 +00:00
|
|
|
/* initialize the dynamic table of translated core errors */
|
2004-03-13 15:27:01 +00:00
|
|
|
static gchar **
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
_gst_core_errors_init (void)
|
2004-01-18 21:36:20 +00:00
|
|
|
{
|
|
|
|
gchar **t = NULL;
|
|
|
|
|
|
|
|
t = g_new0 (gchar *, GST_CORE_ERROR_NUM_ERRORS);
|
|
|
|
|
|
|
|
TABLE (t, CORE, FAILED,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("GStreamer encountered a general core library error."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, TOO_LAZY,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("GStreamer developers were too lazy to assign an error code "
|
2005-11-14 12:17:46 +00:00
|
|
|
"to this error." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, NOT_IMPLEMENTED,
|
2005-11-14 12:17:46 +00:00
|
|
|
N_("Internal GStreamer error: code not implemented." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, STATE_CHANGE,
|
2009-06-03 23:54:24 +00:00
|
|
|
N_("GStreamer error: state change failed and some element failed to "
|
|
|
|
"post a proper error message with the reason for the failure."));
|
2005-11-14 12:17:46 +00:00
|
|
|
TABLE (t, CORE, PAD, N_("Internal GStreamer error: pad problem." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, THREAD,
|
2005-11-14 12:17:46 +00:00
|
|
|
N_("Internal GStreamer error: thread problem." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, NEGOTIATION,
|
2005-11-14 12:17:46 +00:00
|
|
|
N_("Internal GStreamer error: negotiation problem." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, EVENT,
|
2005-11-14 12:17:46 +00:00
|
|
|
N_("Internal GStreamer error: event problem." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, SEEK,
|
2005-11-14 12:17:46 +00:00
|
|
|
N_("Internal GStreamer error: seek problem." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, CORE, CAPS,
|
2005-11-14 12:17:46 +00:00
|
|
|
N_("Internal GStreamer error: caps problem." FILE_A_BUG));
|
|
|
|
TABLE (t, CORE, TAG, N_("Internal GStreamer error: tag problem." FILE_A_BUG));
|
2005-11-21 18:27:26 +00:00
|
|
|
TABLE (t, CORE, MISSING_PLUGIN,
|
|
|
|
N_("Your GStreamer installation is missing a plug-in."));
|
2005-11-23 11:22:39 +00:00
|
|
|
TABLE (t, CORE, CLOCK,
|
|
|
|
N_("Internal GStreamer error: clock problem." FILE_A_BUG));
|
2007-04-12 12:59:49 +00:00
|
|
|
TABLE (t, CORE, DISABLED,
|
|
|
|
N_("This application is trying to use GStreamer functionality that "
|
|
|
|
"has been disabled."));
|
2004-01-18 21:36:20 +00:00
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize the dynamic table of translated library errors */
|
2004-03-13 15:27:01 +00:00
|
|
|
static gchar **
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
_gst_library_errors_init (void)
|
2004-01-18 21:36:20 +00:00
|
|
|
{
|
|
|
|
gchar **t = NULL;
|
|
|
|
|
|
|
|
t = g_new0 (gchar *, GST_LIBRARY_ERROR_NUM_ERRORS);
|
|
|
|
|
|
|
|
TABLE (t, LIBRARY, FAILED,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("GStreamer encountered a general supporting library error."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, LIBRARY, TOO_LAZY,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("GStreamer developers were too lazy to assign an error code "
|
2005-11-14 12:17:46 +00:00
|
|
|
"to this error." FILE_A_BUG));
|
2004-03-13 15:27:01 +00:00
|
|
|
TABLE (t, LIBRARY, INIT, N_("Could not initialize supporting library."));
|
|
|
|
TABLE (t, LIBRARY, SHUTDOWN, N_("Could not close supporting library."));
|
2006-10-13 09:37:59 +00:00
|
|
|
TABLE (t, LIBRARY, SETTINGS, N_("Could not configure supporting library."));
|
2004-01-18 21:36:20 +00:00
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize the dynamic table of translated resource errors */
|
2004-03-13 15:27:01 +00:00
|
|
|
static gchar **
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
_gst_resource_errors_init (void)
|
2004-01-18 21:36:20 +00:00
|
|
|
{
|
|
|
|
gchar **t = NULL;
|
|
|
|
|
|
|
|
t = g_new0 (gchar *, GST_RESOURCE_ERROR_NUM_ERRORS);
|
|
|
|
|
|
|
|
TABLE (t, RESOURCE, FAILED,
|
2005-01-21 17:52:50 +00:00
|
|
|
N_("GStreamer encountered a general resource error."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, RESOURCE, TOO_LAZY,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("GStreamer developers were too lazy to assign an error code "
|
2005-11-14 12:17:46 +00:00
|
|
|
"to this error." FILE_A_BUG));
|
2004-03-13 15:27:01 +00:00
|
|
|
TABLE (t, RESOURCE, NOT_FOUND, N_("Resource not found."));
|
|
|
|
TABLE (t, RESOURCE, BUSY, N_("Resource busy or not available."));
|
|
|
|
TABLE (t, RESOURCE, OPEN_READ, N_("Could not open resource for reading."));
|
|
|
|
TABLE (t, RESOURCE, OPEN_WRITE, N_("Could not open resource for writing."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, RESOURCE, OPEN_READ_WRITE,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("Could not open resource for reading and writing."));
|
|
|
|
TABLE (t, RESOURCE, CLOSE, N_("Could not close resource."));
|
|
|
|
TABLE (t, RESOURCE, READ, N_("Could not read from resource."));
|
|
|
|
TABLE (t, RESOURCE, WRITE, N_("Could not write to resource."));
|
|
|
|
TABLE (t, RESOURCE, SEEK, N_("Could not perform seek on resource."));
|
|
|
|
TABLE (t, RESOURCE, SYNC, N_("Could not synchronize on resource."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, RESOURCE, SETTINGS,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("Could not get/set settings from/on resource."));
|
2006-03-04 13:54:26 +00:00
|
|
|
TABLE (t, RESOURCE, NO_SPACE_LEFT, N_("No space left on the resource."));
|
2004-01-18 21:36:20 +00:00
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize the dynamic table of translated stream errors */
|
2004-03-13 15:27:01 +00:00
|
|
|
static gchar **
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
_gst_stream_errors_init (void)
|
2004-01-18 21:36:20 +00:00
|
|
|
{
|
|
|
|
gchar **t = NULL;
|
|
|
|
|
|
|
|
t = g_new0 (gchar *, GST_STREAM_ERROR_NUM_ERRORS);
|
|
|
|
|
|
|
|
TABLE (t, STREAM, FAILED,
|
2005-01-21 17:52:50 +00:00
|
|
|
N_("GStreamer encountered a general stream error."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, STREAM, TOO_LAZY,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("GStreamer developers were too lazy to assign an error code "
|
2005-11-14 12:17:46 +00:00
|
|
|
"to this error." FILE_A_BUG));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, STREAM, NOT_IMPLEMENTED,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("Element doesn't implement handling of this stream. "
|
2004-03-15 19:27:17 +00:00
|
|
|
"Please file a bug."));
|
2004-03-13 15:27:01 +00:00
|
|
|
TABLE (t, STREAM, TYPE_NOT_FOUND, N_("Could not determine type of stream."));
|
2004-01-18 21:36:20 +00:00
|
|
|
TABLE (t, STREAM, WRONG_TYPE,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("The stream is of a different type than handled by this element."));
|
2004-02-03 11:23:59 +00:00
|
|
|
TABLE (t, STREAM, CODEC_NOT_FOUND,
|
2004-03-13 15:27:01 +00:00
|
|
|
N_("There is no codec present that can handle the stream's type."));
|
|
|
|
TABLE (t, STREAM, DECODE, N_("Could not decode stream."));
|
|
|
|
TABLE (t, STREAM, ENCODE, N_("Could not encode stream."));
|
|
|
|
TABLE (t, STREAM, DEMUX, N_("Could not demultiplex stream."));
|
|
|
|
TABLE (t, STREAM, MUX, N_("Could not multiplex stream."));
|
2006-05-08 15:52:28 +00:00
|
|
|
TABLE (t, STREAM, FORMAT, N_("The stream is in the wrong format."));
|
2008-04-09 17:34:54 +00:00
|
|
|
TABLE (t, STREAM, DECRYPT,
|
|
|
|
N_("The stream is encrypted and decryption is not supported."));
|
|
|
|
TABLE (t, STREAM, DECRYPT_NOKEY,
|
2008-06-05 08:55:41 +00:00
|
|
|
N_("The stream is encrypted and can't be decrypted because no suitable "
|
2008-04-09 17:34:54 +00:00
|
|
|
"key has been supplied."));
|
2004-01-18 21:36:20 +00:00
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2005-10-23 09:08:44 +00:00
|
|
|
QUARK_FUNC (core);
|
|
|
|
QUARK_FUNC (library);
|
|
|
|
QUARK_FUNC (resource);
|
|
|
|
QUARK_FUNC (stream);
|
2004-01-18 21:36:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_error_get_message:
|
|
|
|
* @domain: the GStreamer error domain this error belongs to.
|
|
|
|
* @code: the error code belonging to the domain.
|
|
|
|
*
|
2005-10-20 21:08:47 +00:00
|
|
|
* Get a string describing the error message in the current locale.
|
|
|
|
*
|
2004-01-18 21:36:20 +00:00
|
|
|
* Returns: a newly allocated string describing the error message in the
|
|
|
|
* current locale.
|
|
|
|
*/
|
2005-10-23 09:08:44 +00:00
|
|
|
gchar *
|
|
|
|
gst_error_get_message (GQuark domain, gint code)
|
2004-01-18 21:36:20 +00:00
|
|
|
{
|
|
|
|
static gchar **gst_core_errors = NULL;
|
|
|
|
static gchar **gst_library_errors = NULL;
|
|
|
|
static gchar **gst_resource_errors = NULL;
|
|
|
|
static gchar **gst_stream_errors = NULL;
|
|
|
|
|
|
|
|
gchar *message = NULL;
|
|
|
|
|
|
|
|
/* initialize error message tables if necessary */
|
|
|
|
if (gst_core_errors == NULL)
|
|
|
|
gst_core_errors = _gst_core_errors_init ();
|
|
|
|
if (gst_library_errors == NULL)
|
|
|
|
gst_library_errors = _gst_library_errors_init ();
|
|
|
|
if (gst_resource_errors == NULL)
|
|
|
|
gst_resource_errors = _gst_resource_errors_init ();
|
|
|
|
if (gst_stream_errors == NULL)
|
|
|
|
gst_stream_errors = _gst_stream_errors_init ();
|
|
|
|
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (domain == GST_CORE_ERROR)
|
|
|
|
message = gst_core_errors[code];
|
|
|
|
else if (domain == GST_LIBRARY_ERROR)
|
|
|
|
message = gst_library_errors[code];
|
|
|
|
else if (domain == GST_RESOURCE_ERROR)
|
|
|
|
message = gst_resource_errors[code];
|
|
|
|
else if (domain == GST_STREAM_ERROR)
|
|
|
|
message = gst_stream_errors[code];
|
|
|
|
else {
|
2004-01-18 21:36:20 +00:00
|
|
|
g_warning ("No error messages for domain %s", g_quark_to_string (domain));
|
2004-03-13 15:27:01 +00:00
|
|
|
return g_strdup_printf (_("No error message for domain %s."),
|
2004-03-15 19:27:17 +00:00
|
|
|
g_quark_to_string (domain));
|
2004-01-18 21:36:20 +00:00
|
|
|
}
|
|
|
|
if (message)
|
|
|
|
return g_strdup (_(message));
|
|
|
|
else
|
2004-03-13 15:27:01 +00:00
|
|
|
return
|
2004-03-15 19:27:17 +00:00
|
|
|
g_strdup_printf (_
|
|
|
|
("No standard error message for domain %s and code %d."),
|
|
|
|
g_quark_to_string (domain), code);
|
2004-01-18 21:36:20 +00:00
|
|
|
}
|