reverting error patch before making a branch.

Original commit message from CVS:
reverting error patch before making a branch.
This commit is contained in:
Thomas Vander Stichele 2003-09-16 09:59:53 +00:00
parent c05cf86c52
commit 306d1a5ec4
3 changed files with 10 additions and 14 deletions

View file

@ -281,10 +281,9 @@ gst_ffmpegdec_chain (GstPad *pad,
gint have_data; gint have_data;
if (!ffmpegdec->opened) { if (!ffmpegdec->opened) {
gst_element_gerror(GST_ELEMENT (ffmpegdec), GST_ERROR_UNKNOWN, gst_element_error (GST_ELEMENT (ffmpegdec),
g_strdup ("unconverted error, file a bug"), "ffdec_%s: input format was not set before data-start",
g_strdup_printf("ffdec_%s: input format was not set before data-start", oclass->in_plugin->name);
oclass->in_plugin->name));
return; return;
} }
@ -346,10 +345,9 @@ gst_ffmpegdec_chain (GstPad *pad,
ffmpegdec->context); ffmpegdec->context);
if (caps == NULL || if (caps == NULL ||
gst_pad_try_set_caps (ffmpegdec->srcpad, caps) <= 0) { gst_pad_try_set_caps (ffmpegdec->srcpad, caps) <= 0) {
gst_element_gerror(GST_ELEMENT (ffmpegdec), GST_ERROR_UNKNOWN, gst_element_error (GST_ELEMENT (ffmpegdec),
g_strdup ("unconverted error, file a bug"), "Failed to link ffmpeg decoder (%s) to next element",
g_strdup_printf ("Failed to link ffmpeg decoder (%s) to next element", oclass->in_plugin->name);
oclass->in_plugin->name));
return; return;
} }
} }

View file

@ -212,9 +212,8 @@ gst_ffmpegdemux_loop (GstElement *element)
ffmpegdemux->sinkpad), ffmpegdemux->sinkpad),
oclass->in_plugin, 0, NULL); oclass->in_plugin, 0, NULL);
if (res < 0) { if (res < 0) {
gst_element_gerror(GST_ELEMENT (ffmpegdemux), GST_ERROR_UNKNOWN, gst_element_error (GST_ELEMENT (ffmpegdemux),
g_strdup ("unconverted error, file a bug"), "Failed to open demuxer/file context");
g_strdup_printf ("Failed to open demuxer/file context"));
return; return;
} }

View file

@ -295,9 +295,8 @@ gst_ffmpegmux_loop (GstElement *element)
if (url_fopen (&ffmpegmux->context->pb, if (url_fopen (&ffmpegmux->context->pb,
ffmpegmux->context->filename, ffmpegmux->context->filename,
URL_WRONLY) < 0) { URL_WRONLY) < 0) {
gst_element_gerror(element, GST_ERROR_UNKNOWN, gst_element_error (element,
g_strdup ("unconverted error, file a bug"), "Failed to open stream context in ffmux");
g_strdup_printf ("Failed to open stream context in ffmux"));
return; return;
} }