diff options
author | Benjamin Otte <otte@gnome.org> | 2003-09-15 00:34:47 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-09-15 00:34:47 +0000 |
commit | 2cefb5042912663dbc507f6b717232119549e8c1 (patch) | |
tree | ae0d418d824a349102ef67e654d30d41648978a5 /gst/avi | |
parent | 7d23752c25a4f4f818bee217278334ea675430fc (diff) |
converted gst_element_error to new format in gst/ - gettext pending
Original commit message from CVS:
converted gst_element_error to new format in gst/ - gettext pending
Diffstat (limited to 'gst/avi')
-rw-r--r-- | gst/avi/gstavidemux.c | 4 | ||||
-rw-r--r-- | gst/avi/gstavimux.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index ed605935..e79d707e 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -1691,7 +1691,9 @@ gst_avi_demux_loop (GstElement *element) case GST_AVI_DEMUX_START: if (chunk.id != GST_RIFF_TAG_RIFF && chunk.type != GST_RIFF_RIFF_AVI) { - gst_element_error (element, "This doesn't appear to be an AVI file %08x %08x", chunk.id, chunk.type); + gst_element_gerror(element, GST_ERROR_UNKNOWN, + g_strdup ("unconverted error, file a bug"), + g_strdup_printf("This doesn't appear to be an AVI file %08x %08x", chunk.id, chunk.type)); return; } avi_demux->state = GST_AVI_DEMUX_HEADER; diff --git a/gst/avi/gstavimux.c b/gst/avi/gstavimux.c index 4a980a13..68105d91 100644 --- a/gst/avi/gstavimux.c +++ b/gst/avi/gstavimux.c @@ -1062,7 +1062,9 @@ gst_avimux_stop_file (GstAviMux *avimux) if (avimux->audio_time) { avimux->auds_hdr.rate = (GST_SECOND * avimux->audio_size) / avimux->audio_time; } else { - gst_element_error (GST_ELEMENT (avimux), "Audio stream available, but no audio data transferred (or data with invalid timestamps). Resulting AVI will be corrupt"); + gst_element_gerror(GST_ELEMENT (avimux), GST_ERROR_UNKNOWN, + g_strdup ("unconverted error, file a bug"), + g_strdup ("Audio stream availablebut no audio data transferred (or data with invalid timestamps). Resulting AVI will be corrupt")); avimux->auds_hdr.rate = 0; } avimux->auds.av_bps = avimux->auds_hdr.rate * avimux->auds_hdr.scale; |