GNOME Bugzilla – Bug 570781
[alawdec] spews ERROR debug messages on shutdown/seek/not-linked
Last modified: 2009-02-28 19:28:59 UTC
Sometimes our application indicates the following error : alawdec alaw-decode.c:248:gst_alaw_dec_chain:<alawdec0> pad alloc failed The following cmd reproduces the error (sometimes) : gst-launch audiotestsrc ! alawenc ! alawdec ! fakesink When hitting ^C the pipeline ends indicating "Setting pipeline to READY" and following is the 'pad alloc failed'.
May be a duplicate of bug #547352 ?
I'm not seeing anything wrong except for a misplaced GST_ERROR_OBJECT() that should be a GST_DEBUG_OBJECT(). what's the problem?
If it's not an error then there is no problem :)
Created attachment 128725 [details] [review] demote some debug messages from ERROR to WARNING or DEBUG
commit 7087da96dc850a931f7fca4c036fb0a2c58f04ac Author: Tim-Philipp Müller <tim.muller@collabora.co.uk> Date: Sat Feb 14 17:56:05 2009 +0000 alawdec, mulawdec: demote some debug messages from ERROR to WARNING or DEBUG Non-ok flow returns may happen for a variety of perfectly legitimate and expected reasons (temporarily not linked, seeking, pipeline shutdown), so we really shouldn't spew ERROR debug messages to stderr in those cases. Fixes #570781. (Seems like someone already took care of some of these.)