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/gstavimux.c | |
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/gstavimux.c')
-rw-r--r-- | gst/avi/gstavimux.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; |