summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Decina <alessandro.decina@collabora.co.uk>2011-11-16 17:41:31 +0100
committerAlessandro Decina <alessandro.decina@collabora.co.uk>2011-11-16 17:41:31 +0100
commit3e9b17f31ce17e658757b5c8e984cf04c0d16cf6 (patch)
treeacc9a31487684ea1074323bd4b1f16078ea9bf55
parent20b4906b10ecf215e8d7878809ef61f7aea09914 (diff)
ducatividdec: don't log an ERROR when pad_alloc returns wrong-state
...as it's a pretty common condition while seeking or shutting down the pipeline
-rw-r--r--src/gstducatividdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gstducatividdec.c b/src/gstducatividdec.c
index 4b14382..cacd996 100644
--- a/src/gstducatividdec.c
+++ b/src/gstducatividdec.c
@@ -634,7 +634,7 @@ allocate_buffer:
ret = gst_pad_alloc_buffer (self->srcpad, 0, self->outsize,
GST_PAD_CAPS (self->srcpad), &outbuf);
if (ret != GST_FLOW_OK) {
- GST_ERROR_OBJECT (self, "alloc_buffer failed %s", gst_flow_get_name (ret));
+ GST_DEBUG_OBJECT (self, "alloc_buffer failed %s", gst_flow_get_name (ret));
return ret;
}