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 91292 - adder plugin has bug in loop
adder plugin has bug in loop
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other Linux
: Normal normal
: 0.4.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2002-08-21 00:13 UTC by matt romaine
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description matt romaine 2002-08-21 00:13:50 UTC
Here's a diff on the adder plugin from the cvs tree i pulled two days ago. 
(sometimes i wish people would read the statement out loud before checking
it in...:)

the top line is the corrected version, as what this section of code does is
ignore the pad if it is *not* usable.


422c422
<       if (!GST_PAD_IS_USABLE (input->sinkpad)) {
---
>       if (GST_PAD_IS_USABLE (input->sinkpad)) {
Comment 1 Thomas Vander Stichele 2002-08-26 15:50:54 UTC
fixed in cvs