GNOME Bugzilla – Bug 137042
sinesrc calls gst_element_found_tags_for_pad
Last modified: 2004-12-22 21:47:04 UTC
Description of Problem: sinesrc issues a taglist using gst_element_found_tags_for_pad but it is a get-based element. gst_element_found_tags_for_pad can't be used from get-based elements because it pushes the taglist onto the pad. I _think_ the fix is the sinesrc should just fire the signal by calling gst_element_found_tags and then return the taglist as the buffer.
That's correct. To be exact it should return a tagevent with the taglist as the buffer. I've fixed it so it does that.