ext/divx/: Fix for new error system.

Original commit message from CVS:
2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>

* ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
* ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
Fix for new error system.
This commit is contained in:
Ronald S. Bultje 2004-01-20 12:48:10 +00:00
parent 7819b2bc67
commit 1454eff178
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
* ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
* ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
Fix for new error system.
2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org> 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
* ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain): * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):

View File

@ -234,7 +234,8 @@ gst_divxdec_setup (GstDivxDec *divxdec)
if ((ret = decore(divxdec->handle, DEC_OPT_SETOUT, if ((ret = decore(divxdec->handle, DEC_OPT_SETOUT,
&output, NULL)) != 0) { &output, NULL)) != 0) {
gst_element_error (divxdec, LIBRARY, SETTINGS, NULL, gst_element_error (divxdec, LIBRARY, SETTINGS, NULL,
("error setting output: %s (%d)", gst_divxdec_error (ret)), ret); ("error setting output: %s (%d)",
gst_divxdec_error (ret), ret));
gst_divxdec_unset(divxdec); gst_divxdec_unset(divxdec);
return FALSE; return FALSE;
} }
@ -270,7 +271,7 @@ gst_divxdec_chain (GstPad *pad,
if (!divxdec->handle) { if (!divxdec->handle) {
if (gst_divxdec_negotiate(divxdec) <= 0) { if (gst_divxdec_negotiate(divxdec) <= 0) {
gst_element_error (divxdec, CORE, TOO_LAZY, gst_element_error (divxdec, CORE, TOO_LAZY, NULL,
("No format set - aborting")); ("No format set - aborting"));
gst_buffer_unref(buf); gst_buffer_unref(buf);
return; return;

View File

@ -295,7 +295,7 @@ gst_divxenc_setup (GstDivxEnc *divxenc)
output.temporal_level = 1.0; output.temporal_level = 1.0;
if ((ret = encore(&handle, ENC_OPT_INIT, &input, &output))) { if ((ret = encore(&handle, ENC_OPT_INIT, &input, &output))) {
gst_element_error (divxenc, LIBRARY, INIT, NULL, gst_element_error (divxenc, LIBRARY, SETTINGS, NULL,
("Error setting up divx encoder: %s (%d)", ("Error setting up divx encoder: %s (%d)",
gst_divxenc_error(ret), ret)); gst_divxenc_error(ret), ret));
return FALSE; return FALSE;