mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
gst/gsterror.c (_gst_core_errors_init): Use the magic word..
Original commit message from CVS: 2005-07-16 Andy Wingo <wingo@pobox.com> * gst/gsterror.c (_gst_core_errors_init): Use the magic word..
This commit is contained in:
parent
f89689b7e6
commit
d3ffeea70a
3 changed files with 15 additions and 18 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-07-16 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* gst/gsterror.c (_gst_core_errors_init): Use the magic word..
|
||||||
|
|
||||||
2005-07-16 Wim Taymans <wim@fluendo.com>
|
2005-07-16 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* check/gst/gstbin.c: (GST_START_TEST):
|
* check/gst/gstbin.c: (GST_START_TEST):
|
||||||
|
|
|
@ -85,14 +85,6 @@ exactly one.
|
||||||
@caps: the #GstCaps instance to check
|
@caps: the #GstCaps instance to check
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### MACRO gst_caps_is_simple ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@caps:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### MACRO GST_DEBUG_CAPS ##### -->
|
<!-- ##### MACRO GST_DEBUG_CAPS ##### -->
|
||||||
<para>
|
<para>
|
||||||
Convinience macro for prining out the contents of caps with GST_DEBUG().
|
Convinience macro for prining out the contents of caps with GST_DEBUG().
|
||||||
|
|
|
@ -58,25 +58,26 @@ _gst_core_errors_init (void)
|
||||||
N_("GStreamer developers were too lazy to assign an error code "
|
N_("GStreamer developers were too lazy to assign an error code "
|
||||||
"to this error. Please file a bug."));
|
"to this error. Please file a bug."));
|
||||||
TABLE (t, CORE, NOT_IMPLEMENTED,
|
TABLE (t, CORE, NOT_IMPLEMENTED,
|
||||||
N_("Internal GStreamer error: code not implemented. File a bug."));
|
N_
|
||||||
|
("Internal GStreamer error: code not implemented. Please file a bug."));
|
||||||
TABLE (t, CORE, STATE_CHANGE,
|
TABLE (t, CORE, STATE_CHANGE,
|
||||||
N_("Internal GStreamer error: state change failed. File a bug."));
|
N_("Internal GStreamer error: state change failed. Please file a bug."));
|
||||||
TABLE (t, CORE, PAD,
|
TABLE (t, CORE, PAD,
|
||||||
N_("Internal GStreamer error: pad problem. File a bug."));
|
N_("Internal GStreamer error: pad problem. Please file a bug."));
|
||||||
TABLE (t, CORE, THREAD,
|
TABLE (t, CORE, THREAD,
|
||||||
N_("Internal GStreamer error: thread problem. File a bug."));
|
N_("Internal GStreamer error: thread problem. Please file a bug."));
|
||||||
TABLE (t, CORE, SCHEDULER,
|
TABLE (t, CORE, SCHEDULER,
|
||||||
N_("Internal GStreamer error: scheduler problem. File a bug."));
|
N_("Internal GStreamer error: scheduler problem. Please file a bug."));
|
||||||
TABLE (t, CORE, NEGOTIATION,
|
TABLE (t, CORE, NEGOTIATION,
|
||||||
N_("Internal GStreamer error: negotiation problem. File a bug."));
|
N_("Internal GStreamer error: negotiation problem. Please file a bug."));
|
||||||
TABLE (t, CORE, EVENT,
|
TABLE (t, CORE, EVENT,
|
||||||
N_("Internal GStreamer error: event problem. File a bug."));
|
N_("Internal GStreamer error: event problem. Please file a bug."));
|
||||||
TABLE (t, CORE, SEEK,
|
TABLE (t, CORE, SEEK,
|
||||||
N_("Internal GStreamer error: seek problem. File a bug."));
|
N_("Internal GStreamer error: seek problem. Please file a bug."));
|
||||||
TABLE (t, CORE, CAPS,
|
TABLE (t, CORE, CAPS,
|
||||||
N_("Internal GStreamer error: caps problem. File a bug."));
|
N_("Internal GStreamer error: caps problem. Please file a bug."));
|
||||||
TABLE (t, CORE, TAG,
|
TABLE (t, CORE, TAG,
|
||||||
N_("Internal GStreamer error: tag problem. File a bug."));
|
N_("Internal GStreamer error: tag problem. Please file a bug."));
|
||||||
|
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue