From 156163e66af48035631f40237b2d42284bea6339 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 20 Jan 2004 13:01:40 +0000 Subject: fix error error Original commit message from CVS: fix error error --- ext/mpeg2enc/gstmpeg2enc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/mpeg2enc') diff --git a/ext/mpeg2enc/gstmpeg2enc.cc b/ext/mpeg2enc/gstmpeg2enc.cc index 039fa227..952affaa 100644 --- a/ext/mpeg2enc/gstmpeg2enc.cc +++ b/ext/mpeg2enc/gstmpeg2enc.cc @@ -239,7 +239,7 @@ gst_mpeg2enc_loop (GstElement *element) gst_pad_set_element_private (enc->sinkpad, data); if (!(caps = GST_PAD_CAPS (enc->sinkpad))) { - gst_element_error (element, CORE, NEGOTIATION, NULL, + gst_element_error (element, CORE, NEGOTIATION, (""), ("format wasn't negotiated before loop function")); return; } @@ -251,7 +251,7 @@ gst_mpeg2enc_loop (GstElement *element) /* and set caps on other side */ othercaps = enc->encoder->getFormat (); if (gst_pad_set_explicit_caps (enc->srcpad, othercaps) <= 0) { - gst_element_error (element, CORE, NEGOTIATION, NULL, NULL); + gst_element_error (element, CORE, NEGOTIATION, (""), ("")); delete enc->encoder; enc->encoder = NULL; return; -- cgit v1.2.1