diff options
Diffstat (limited to 'ext/xvid/gstxvidenc.c')
-rw-r--r-- | ext/xvid/gstxvidenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/xvid/gstxvidenc.c b/ext/xvid/gstxvidenc.c index 1b9de2f5..02785b9d 100644 --- a/ext/xvid/gstxvidenc.c +++ b/ext/xvid/gstxvidenc.c @@ -299,7 +299,7 @@ gst_xvidenc_setup (GstXvidEnc *xvidenc) if ((ret = xvid_encore(NULL, XVID_ENC_CREATE, &xenc, NULL)) < 0) { - gst_element_error (xvidenc, LIBRARY, INIT, NULL, + GST_ELEMENT_ERROR (xvidenc, LIBRARY, INIT, NULL, ("Error setting up xvid encoder: %s (%d)", gst_xvid_error(ret), ret)); return FALSE; @@ -355,7 +355,7 @@ gst_xvidenc_chain (GstPad *pad, if ((ret = xvid_encore(xvidenc->handle, XVID_ENC_ENCODE, &xframe, &xstats)) < 0) { - gst_element_error (xvidenc, LIBRARY, ENCODE, NULL, + GST_ELEMENT_ERROR (xvidenc, LIBRARY, ENCODE, NULL, ("Error encoding xvid frame: %s (%d)", gst_xvid_error(ret), ret)); gst_buffer_unref(buf); |