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 137042 - sinesrc calls gst_element_found_tags_for_pad
sinesrc calls gst_element_found_tags_for_pad
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other Linux
: Normal normal
: 0.8.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2004-03-13 06:06 UTC by Jan Schmidt
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jan Schmidt 2004-03-13 06:06:15 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.
Comment 1 Benjamin Otte (Company) 2004-03-13 10:01:56 UTC
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.