diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-09-16 10:00:00 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-09-16 10:00:00 +0000 |
commit | 671eef9b9d7116af3fc41e4b6838dffb56b45c77 (patch) | |
tree | b23179bec589972c4cb162963911bef4e237a8e1 /ext/divx | |
parent | 054bbacfab1adbf6934dce52bee844f2950d3f64 (diff) | |
download | gstreamer-plugins-bad-671eef9b9d7116af3fc41e4b6838dffb56b45c77.tar.gz |
reverting error patch before making a branch.BRANCH-ERROR-ROOTBRANCH-ERROR
Original commit message from CVS:
reverting error patch before making a branch.
Diffstat (limited to 'ext/divx')
-rw-r--r-- | ext/divx/gstdivxdec.c | 26 | ||||
-rw-r--r-- | ext/divx/gstdivxenc.c | 14 |
2 files changed, 17 insertions, 23 deletions
diff --git a/ext/divx/gstdivxdec.c b/ext/divx/gstdivxdec.c index 173ee75ce..011836f9b 100644 --- a/ext/divx/gstdivxdec.c +++ b/ext/divx/gstdivxdec.c @@ -221,10 +221,9 @@ gst_divxdec_setup (GstDivxDec *divxdec) /* initialize the handle */ memset(&xinit, 0, sizeof(DEC_INIT)); if ((ret = decore(&handle, DEC_OPT_INIT, &xinit, NULL)) != 0) { - gst_element_gerror(GST_ELEMENT(divxdec), GST_ERROR_UNKNOWN, - g_strdup ("unconverted error, file a bug"), - g_strdup_printf("Error initializing divx decoding library: %s (%d)", - gst_divxdec_error(ret), ret)); + gst_element_error(GST_ELEMENT(divxdec), + "Error initializing divx decoding library: %s (%d)", + gst_divxdec_error(ret), ret); return FALSE; } @@ -241,10 +240,9 @@ gst_divxdec_setup (GstDivxDec *divxdec) if ((ret = decore(divxdec->handle, DEC_OPT_SETOUT, &output, NULL)) != 0) { - gst_element_gerror(GST_ELEMENT(divxdec), GST_ERROR_UNKNOWN, - g_strdup ("unconverted error, file a bug"), - g_strdup_printf("Error setting output format: %s (%d)", - gst_divxdec_error(ret), ret)); + gst_element_error(GST_ELEMENT(divxdec), + "Error setting output format: %s (%d)", + gst_divxdec_error(ret), ret); gst_divxdec_unset(divxdec); return FALSE; } @@ -279,9 +277,8 @@ gst_divxdec_chain (GstPad *pad, if (!divxdec->handle) { if (gst_divxdec_negotiate(divxdec) <= 0) { - gst_element_gerror(GST_ELEMENT(divxdec), GST_ERROR_UNKNOWN, - g_strdup ("unconverted error, file a bug"), - g_strdup_printf("No format set - aborting")); + gst_element_error(GST_ELEMENT(divxdec), + "No format set - aborting"); gst_buffer_unref(buf); return; } @@ -304,10 +301,9 @@ gst_divxdec_chain (GstPad *pad, if ((ret = decore(divxdec->handle, DEC_OPT_FRAME, &xframe, NULL))) { - gst_element_gerror(GST_ELEMENT(divxdec), GST_ERROR_UNKNOWN, - g_strdup ("unconverted error, file a bug"), - g_strdup_printf("Error decoding divx frame: %s (%d)", - gst_divxdec_error(ret), ret)); + gst_element_error(GST_ELEMENT(divxdec), + "Error decoding divx frame: %s (%d)", + gst_divxdec_error(ret), ret); gst_buffer_unref(buf); return; } diff --git a/ext/divx/gstdivxenc.c b/ext/divx/gstdivxenc.c index cbd3159ef..bd7547a14 100644 --- a/ext/divx/gstdivxenc.c +++ b/ext/divx/gstdivxenc.c @@ -302,10 +302,9 @@ gst_divxenc_setup (GstDivxEnc *divxenc) output.spatial_passes = 0; if ((ret = encore(&handle, ENC_OPT_INIT, &input, &output))) { - gst_element_gerror(GST_ELEMENT(divxenc), GST_ERROR_UNKNOWN, - g_strdup ("unconverted error, file a bug"), - g_strdup_printf("Error setting up divx encoder: %s (%d)", - gst_divxenc_error(ret), ret)); + gst_element_error(GST_ELEMENT(divxenc), + "Error setting up divx encoder: %s (%d)", + gst_divxenc_error(ret), ret); return FALSE; } @@ -364,10 +363,9 @@ gst_divxenc_chain (GstPad *pad, if ((ret = encore(divxenc->handle, ENC_OPT_ENCODE, &xframe, &xres))) { - gst_element_gerror(GST_ELEMENT(divxenc), GST_ERROR_UNKNOWN, - g_strdup ("unconverted error, file a bug"), - g_strdup_printf("Error encoding divx frame: %s (%d)", - gst_divxenc_error(ret), ret)); + gst_element_error(GST_ELEMENT(divxenc), + "Error encoding divx frame: %s (%d)", + gst_divxenc_error(ret), ret); gst_buffer_unref(buf); return; } |