summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-09-06 20:16:14 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-09-06 20:26:28 +0100
commit3ce55e65519e15f1c17230e5d422ab7a2bd483bf (patch)
tree135312bd3e92c98e6a6d15aef5180bc07bacbf7c
parent490d2f0ab52c7534dc72e277e4bc3aea5966c36f (diff)
gsterror: add default error message for GST_LIBRARY_ERROR_ENCODE
No idea though why we even have GST_LIBRARY_ERROR_ENCODE or when one would want to use that instead of GST_STREAM_ERROR_ENCODE.
-rw-r--r--gst/gsterror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gsterror.c b/gst/gsterror.c
index 12afe3acfa..c683e47071 100644
--- a/gst/gsterror.c
+++ b/gst/gsterror.c
@@ -198,7 +198,7 @@ gst_error_get_library_error (GstLibraryError code)
case GST_LIBRARY_ERROR_SETTINGS:
return _("Could not configure supporting library.");
case GST_LIBRARY_ERROR_ENCODE:
- break; /* FIXME: add default error message for GST_LIBRARY_ERROR_ENCODE */
+ return _("Encoding error.");
case GST_LIBRARY_ERROR_NUM_ERRORS:
default:
break;