GNOME Bugzilla – Bug 645022
GstTask: typo in GST_TASK_BROADCAST - g_cond_breadcast should probably be g_cond_broadcast
Last modified: 2011-03-17 23:48:53 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..
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