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 645022 - GstTask: typo in GST_TASK_BROADCAST - g_cond_breadcast should probably be g_cond_broadcast
GstTask: typo in GST_TASK_BROADCAST - g_cond_breadcast should probably be g_c...
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
unspecified
Other All
: Normal normal
: 0.10.33
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2011-03-17 14:14 UTC by Rune Sætre
Modified: 2011-03-17 23:48 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Rune Sætre 2011-03-17 14:14:31 UTC
The macro GST_TASK_BROADCAST in gst/gsttask.h is defined as

#define GST_TASK_BROADCAST(task)        g_cond_breadcast(GST_TASK_GET_COND (task))

I would expect this should be g_cond_broadcast instead.

Since gstreamer generally compiles the macro cannot be very frequently used though..
Comment 1 Tim-Philipp Müller 2011-03-17 23:48:53 UTC
Thanks, fixed:

 commit 02d27de048ae7f30114f7a76ff964143413d0edf
 Author: Tim-Philipp Müller <tim.muller@collabora.co.uk>
 Date:   Thu Mar 17 23:42:48 2011 +0000

    task: fix GST_TASK_BROADCAST
    
    Surprisingly enough, you can't "breadcast" on a GCond.
    
    Spotted by Rune Sætre.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645022