diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/flx/gstflxdec.c | 2 | ||||
-rw-r--r-- | gst/modplug/gstmodplug.cc | 2 | ||||
-rw-r--r-- | gst/smpte/gstsmpte.c | 2 | ||||
-rw-r--r-- | gst/speed/gstspeed.c | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c index a8269ef6..c861a1f4 100644 --- a/gst/flx/gstflxdec.c +++ b/gst/flx/gstflxdec.c @@ -463,7 +463,7 @@ gst_flxdec_loop (GstElement *element) if (flxh->type != FLX_MAGICHDR_FLI && flxh->type != FLX_MAGICHDR_FLC && flxh->type != FLX_MAGICHDR_FLX) { - gst_element_error (element, "not a flx file (type %d)\n", flxh->type); + gst_element_error (element, STREAM, WRONG_TYPE, NULL, ("not a flx file (type %d)\n", flxh->type)); return; } diff --git a/gst/modplug/gstmodplug.cc b/gst/modplug/gstmodplug.cc index 2659d877..02699085 100644 --- a/gst/modplug/gstmodplug.cc +++ b/gst/modplug/gstmodplug.cc @@ -575,7 +575,7 @@ gst_modplug_loop (GstElement *element) if (!GST_PAD_CAPS (modplug->srcpad) && modplug_negotiate (modplug) <= 0) { - gst_element_error (GST_ELEMENT (modplug), "could not negotiate format"); + gst_element_error (modplug, CORE, NEGOTIATION, ("test"), ("test")); return; } diff --git a/gst/smpte/gstsmpte.c b/gst/smpte/gstsmpte.c index ea17dc8c..5cfbcc0b 100644 --- a/gst/smpte/gstsmpte.c +++ b/gst/smpte/gstsmpte.c @@ -371,7 +371,7 @@ gst_smpte_loop (GstElement *element) "framerate", G_TYPE_DOUBLE, smpte->fps, NULL); if (!gst_pad_try_set_caps (smpte->srcpad, caps)) { - gst_element_error (element, "cannot set caps"); + gst_element_error (smpte, CORE, NEGOTIATION, NULL, NULL); return; } } diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c index ec094156..6a058d48 100644 --- a/gst/speed/gstspeed.c +++ b/gst/speed/gstspeed.c @@ -245,7 +245,8 @@ speed_loop (GstElement *element) #include "filter.func" #undef _FORMAT } else { - gst_element_error (element, "capsnego was never performed, bailing..."); + gst_element_error (filter, CORE, NEGOTIATION, NULL, + ("format wasn't negotiated before chain function")); gst_element_yield (element); } } |