GNOME Bugzilla – Bug 91292
adder plugin has bug in loop
Last modified: 2004-12-22 21:47:04 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)) {
fixed in cvs