summaryrefslogtreecommitdiffstats
path: root/ext/audiofile/gstafsink.c
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/audiofile/gstafsink.c
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/audiofile/gstafsink.c')
-rw-r--r--ext/audiofile/gstafsink.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c
index 3392717c..3e27adbf 100644
--- a/ext/audiofile/gstafsink.c
+++ b/ext/audiofile/gstafsink.c
@@ -294,7 +294,9 @@ gst_afsink_open_file (GstAFSink *sink)
sink->file = fopen (sink->filename, "w");
if (sink->file == NULL) {
perror ("open");
- gst_element_error (GST_ELEMENT (sink), g_strconcat("opening file \"", sink->filename, "\"", NULL));
+ gst_element_gerror(GST_ELEMENT (sink), g_strconcat("opening file \"", sink->filename, "\"", GST_ERROR_UNKNOWN,
+ g_strdup ("unconverted error, file a bug"),
+ g_strdup_printf(NULL)));
return FALSE;
}
*/
@@ -351,7 +353,9 @@ gst_afsink_open_file (GstAFSink *sink)
if (sink->file == AF_NULL_FILEHANDLE)
{
perror ("open");
- gst_element_error (GST_ELEMENT (sink), g_strconcat("opening file \"", sink->filename, "\"", NULL));
+ gst_element_gerror(GST_ELEMENT (sink), GST_ERROR_UNKNOWN,
+ g_strdup ("unconverted error, file a bug"),
+ g_strdup_printf("error openning file %s", sink->filename));
return FALSE;
}
@@ -374,7 +378,9 @@ gst_afsink_close_file (GstAFSink *sink)
{
g_print ("WARNING: afsink: oops, error closing !\n");
perror ("close");
- gst_element_error (GST_ELEMENT (sink), g_strconcat("closing file \"", sink->filename, "\"", NULL));
+ gst_element_gerror(GST_ELEMENT (sink), GST_ERROR_UNKNOWN,
+ g_strdup ("unconverted error, file a bug"),
+ g_strdup_printf("error closing file %s", sink->filename));
}
else {
GST_FLAG_UNSET (sink, GST_AFSINK_OPEN);