After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 570781 - [alawdec] spews ERROR debug messages on shutdown/seek/not-linked
[alawdec] spews ERROR debug messages on shutdown/seek/not-linked
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Linux
: Normal normal
: 0.10.15
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-02-06 12:53 UTC by Laurent Glayal
Modified: 2009-02-28 19:28 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
demote some debug messages from ERROR to WARNING or DEBUG (1.86 KB, patch)
2009-02-14 18:16 UTC, Tim-Philipp Müller
committed Details | Review

Description Laurent Glayal 2009-02-06 12:53:36 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'.
Comment 1 Laurent Glayal 2009-02-06 13:36:17 UTC
May be a duplicate of bug #547352 ?
Comment 2 Wim Taymans 2009-02-13 13:37:26 UTC
I'm not seeing anything wrong except for a misplaced GST_ERROR_OBJECT()  that should be a GST_DEBUG_OBJECT(). what's the problem?
Comment 3 Laurent Glayal 2009-02-13 15:53:04 UTC
If it's not an error then there is no problem :)
Comment 4 Tim-Philipp Müller 2009-02-14 18:16:41 UTC
Created attachment 128725 [details] [review]
demote some debug messages from ERROR to WARNING or DEBUG
Comment 5 Tim-Philipp Müller 2009-02-28 19:28:59 UTC
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.)