mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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:
parent
7819b2bc67
commit
1454eff178
3 changed files with 10 additions and 3 deletions
|
@ -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>
|
||||
|
||||
* ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
|
||||
|
|
|
@ -234,7 +234,8 @@ gst_divxdec_setup (GstDivxDec *divxdec)
|
|||
if ((ret = decore(divxdec->handle, DEC_OPT_SETOUT,
|
||||
&output, NULL)) != 0) {
|
||||
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);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -270,7 +271,7 @@ gst_divxdec_chain (GstPad *pad,
|
|||
|
||||
if (!divxdec->handle) {
|
||||
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"));
|
||||
gst_buffer_unref(buf);
|
||||
return;
|
||||
|
|
|
@ -295,7 +295,7 @@ gst_divxenc_setup (GstDivxEnc *divxenc)
|
|||
output.temporal_level = 1.0;
|
||||
|
||||
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)",
|
||||
gst_divxenc_error(ret), ret));
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue