Original commit message from CVS:
* gst/playback/gstqueue2.c:
Do not double notify. Remove the unsued return value.
#define QUEUE_THRESHOLD_CHANGE(q)\
g_cond_signal (queue->item_add);
-static gboolean
+static void
gst_queue_set_temp_location (GstQueue * queue, const gchar * location)
{
GstState state;
g_free (queue->temp_location);
queue->temp_location = g_strdup (location);
- g_object_notify (G_OBJECT (queue), "temp-location");
-
- return TRUE;
+ return;
/* ERROR */
wrong_state:
{
- GST_DEBUG_OBJECT (queue, "setting temp-location in wrong state");
+ GST_WARNING_OBJECT (queue, "setting temp-location in wrong state");
GST_OBJECT_UNLOCK (queue);
- return FALSE;
}
}