summaryrefslogtreecommitdiffstats
path: root/ext/tarkin
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-09-15 01:08:40 +0000
committerBenjamin Otte <otte@gnome.org>2003-09-15 01:08:40 +0000
commit982b39d30a05a9edf6f20353c0a91fdedeecad3e (patch)
treeb58d134d7fbe3f6a04dc2ba5c235a1ca1d8de82d /ext/tarkin
parent36a375425114527faef71ad4193c41bcfe738a4b (diff)
downloadgst-plugins-bad-982b39d30a05a9edf6f20353c0a91fdedeecad3e.tar.gz
gst-plugins-bad-982b39d30a05a9edf6f20353c0a91fdedeecad3e.tar.bz2
gst-plugins-bad-982b39d30a05a9edf6f20353c0a91fdedeecad3e.zip
converted gst_element_error to new format in ext/ - gettext pending
Original commit message from CVS: converted gst_element_error to new format in ext/ - gettext pending
Diffstat (limited to 'ext/tarkin')
-rw-r--r--ext/tarkin/gsttarkindec.c8
-rw-r--r--ext/tarkin/gsttarkinenc.c4
2 files changed, 9 insertions, 3 deletions
diff --git a/ext/tarkin/gsttarkindec.c b/ext/tarkin/gsttarkindec.c
index f77e5c8f..d8efb616 100644
--- a/ext/tarkin/gsttarkindec.c
+++ b/ext/tarkin/gsttarkindec.c
@@ -156,7 +156,9 @@ gst_tarkindec_chain (GstPad *pad, GstBuffer *buf)
tarkindec = GST_TARKINDEC (gst_pad_get_parent (pad));
if (!tarkindec->setup) {
- gst_element_error (GST_ELEMENT (tarkindec), "decoder not initialized (input is not audio?)");
+ gst_element_gerror(GST_ELEMENT (tarkindec), GST_ERROR_UNKNOWN,
+ g_strdup ("unconverted error, file a bug"),
+ g_strdup_printf("decoder not initialized (input is not audio?)"));
if (GST_IS_BUFFER (buf))
gst_buffer_unref (buf);
else
@@ -225,7 +227,9 @@ gst_tarkindec_chain (GstPad *pad, GstBuffer *buf)
"framerate", GST_PROPS_FLOAT (0.) /* FIXME!!! */
)) <= 0)
{
- gst_element_error (GST_ELEMENT (tarkindec), "could not output format");
+ gst_element_gerror(GST_ELEMENT (tarkindec), GST_ERROR_UNKNOWN,
+ g_strdup ("unconverted error, file a bug"),
+ g_strdup_printf("could not output format"));
gst_buffer_unref (buf);
return;
}
diff --git a/ext/tarkin/gsttarkinenc.c b/ext/tarkin/gsttarkinenc.c
index ff3d295e..78cc6f27 100644
--- a/ext/tarkin/gsttarkinenc.c
+++ b/ext/tarkin/gsttarkinenc.c
@@ -266,7 +266,9 @@ gst_tarkinenc_chain (GstPad *pad, GstBuffer *buf)
tarkinenc = GST_TARKINENC (gst_pad_get_parent (pad));
if (!tarkinenc->setup) {
- gst_element_error (GST_ELEMENT (tarkinenc), "encoder not initialized (input is not audio?)");
+ gst_element_gerror(GST_ELEMENT (tarkinenc), GST_ERROR_UNKNOWN,
+ g_strdup ("unconverted error, file a bug"),
+ g_strdup_printf("encoder not initialized (input is not audio?)"));
if (GST_IS_BUFFER (buf))
gst_buffer_unref (buf);
else