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
This commit is contained in:
Benjamin Otte 2003-09-15 00:34:47 +00:00
parent 7d23752c25
commit 2cefb50429
10 changed files with 36 additions and 12 deletions

View file

@ -287,7 +287,9 @@ gst_auparse_chain (GstPad *pad, GstBuffer *buf)
if (gst_pad_try_set_caps (auparse->srcpad, tempcaps) <= 0) {
gst_buffer_unref (buf);
gst_element_error (GST_ELEMENT (auparse), "could not set audio caps");
gst_element_gerror(GST_ELEMENT (auparse), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("could not set audio caps"));
return;
}

View file

@ -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;

View file

@ -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;

View file

@ -499,7 +499,9 @@ gst_flxdec_loop (GstElement *element)
if (flxh->type != FLX_MAGICHDR_FLI &&
flxh->type != FLX_MAGICHDR_FLC &&
flxh->type != FLX_MAGICHDR_FLX) {
gst_element_error (element, "not a flx file (type %d)\n", flxh->type);
gst_element_gerror(element, GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("not a flx file (type %d)\n", flxh->type));
return;
}

View file

@ -300,7 +300,9 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin)
}
if (goom->channels == 0) {
gst_element_error (GST_ELEMENT (goom), "sink format not negotiated");
gst_element_gerror(GST_ELEMENT (goom), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("sink format not negotiated"));
goto done;
}
@ -309,7 +311,9 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin)
if (!goom->srcnegotiated) {
if (!gst_goom_negotiate_default (goom)) {
gst_element_error (GST_ELEMENT (goom), "could not negotiate src format");
gst_element_gerror(GST_ELEMENT (goom), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("could not negotiate src format"));
goto done;
}
}

View file

@ -285,7 +285,9 @@ gst_monoscope_chain (GstPad *pad, GstBuffer *bufin)
GST_DEBUG ("making new pad");
if (!GST_PAD_CAPS (monoscope->srcpad)) {
if (gst_monoscope_negotiate (monoscope) <= 0) {
gst_element_error (GST_ELEMENT (monoscope), "could not set caps");
gst_element_gerror(GST_ELEMENT (monoscope), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("could not set caps"));
return;
}
}

View file

@ -364,7 +364,9 @@ gst_smpte_loop (GstElement *element)
"framerate", GST_PROPS_FLOAT (smpte->fps)
)))
{
gst_element_error (element, "cannot set caps");
gst_element_gerror(element, GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("cannot set caps"));
return;
}
}

View file

@ -380,7 +380,9 @@ gst_video_crop_chain (GstPad *pad, GstBuffer *buffer)
"framerate", GST_PROPS_FLOAT (video_crop->fps)
)) <= 0)
{
gst_element_error (GST_ELEMENT (video_crop), "could not negotiate pads");
gst_element_gerror(GST_ELEMENT (video_crop), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("could not negotiate pads"));
return;
}
}

View file

@ -322,7 +322,9 @@ gst_wavenc_chain (GstPad *pad,
if (!wavenc->setup) {
gst_buffer_unref (buf);
gst_element_error (GST_ELEMENT (wavenc), "encoder not initialised (input is not audio?)");
gst_element_gerror(GST_ELEMENT (wavenc), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("encoder not initialised (input is not audio?)"));
return;
}

View file

@ -292,12 +292,16 @@ static void wav_new_chunk_callback(GstRiffChunk *chunk, gpointer data)
break;
default:
gst_element_error (GST_ELEMENT (wavparse), "wavparse: format %d not handled", wavparse->format);
gst_element_gerror(GST_ELEMENT (wavparse), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("wavparse: format %d not handled", wavparse->format));
return;
}
if (gst_pad_try_set_caps (wavparse->srcpad, caps) <= 0) {
gst_element_error (GST_ELEMENT (wavparse), "Could not set caps");
gst_element_gerror(GST_ELEMENT (wavparse), GST_ERROR_UNKNOWN,
g_strdup ("unconverted error, file a bug"),
g_strdup_printf("Could not set caps"));
return;
}