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/gstdivxdec.c | |
parent | 054bbacfab1adbf6934dce52bee844f2950d3f64 (diff) | |
download | gst-plugins-bad-671eef9b9d7116af3fc41e4b6838dffb56b45c77.tar.gz gst-plugins-bad-671eef9b9d7116af3fc41e4b6838dffb56b45c77.tar.bz2 gst-plugins-bad-671eef9b9d7116af3fc41e4b6838dffb56b45c77.zip |
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/gstdivxdec.c')
-rw-r--r-- | ext/divx/gstdivxdec.c | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/ext/divx/gstdivxdec.c b/ext/divx/gstdivxdec.c index 173ee75c..011836f9 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; } |