mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
pulsesink: remove unused member variable and misleading log message
Wim changed it in commit 8bfd80 so that pa_defer_ran is not read anywhere. The log message used to annotate a mainloop_wait call which is gone.
This commit is contained in:
parent
f2c8761a50
commit
3589cee762
2 changed files with 0 additions and 7 deletions
|
@ -1006,7 +1006,6 @@ mainloop_enter_defer_cb (pa_mainloop_api * api, void *userdata)
|
||||||
gst_element_post_message (GST_ELEMENT (pulsesink), message);
|
gst_element_post_message (GST_ELEMENT (pulsesink), message);
|
||||||
|
|
||||||
/* signal the waiter */
|
/* signal the waiter */
|
||||||
pulsesink->pa_defer_ran = TRUE;
|
|
||||||
pa_threaded_mainloop_signal (mainloop, 0);
|
pa_threaded_mainloop_signal (mainloop, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1023,7 +1022,6 @@ gst_pulseringbuffer_start (GstRingBuffer * buf)
|
||||||
pa_threaded_mainloop_lock (mainloop);
|
pa_threaded_mainloop_lock (mainloop);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (psink, "scheduling stream status");
|
GST_DEBUG_OBJECT (psink, "scheduling stream status");
|
||||||
psink->pa_defer_ran = FALSE;
|
|
||||||
pa_mainloop_api_once (pa_threaded_mainloop_get_api (mainloop),
|
pa_mainloop_api_once (pa_threaded_mainloop_get_api (mainloop),
|
||||||
mainloop_enter_defer_cb, psink);
|
mainloop_enter_defer_cb, psink);
|
||||||
|
|
||||||
|
@ -1083,7 +1081,6 @@ mainloop_leave_defer_cb (pa_mainloop_api * api, void *userdata)
|
||||||
gst_message_set_stream_status_object (message, &val);
|
gst_message_set_stream_status_object (message, &val);
|
||||||
gst_element_post_message (GST_ELEMENT (pulsesink), message);
|
gst_element_post_message (GST_ELEMENT (pulsesink), message);
|
||||||
|
|
||||||
pulsesink->pa_defer_ran = TRUE;
|
|
||||||
pa_threaded_mainloop_signal (mainloop, 0);
|
pa_threaded_mainloop_signal (mainloop, 0);
|
||||||
gst_object_unref (pulsesink);
|
gst_object_unref (pulsesink);
|
||||||
}
|
}
|
||||||
|
@ -1129,12 +1126,10 @@ cleanup:
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (psink, "scheduling stream status");
|
GST_DEBUG_OBJECT (psink, "scheduling stream status");
|
||||||
psink->pa_defer_ran = FALSE;
|
|
||||||
gst_object_ref (psink);
|
gst_object_ref (psink);
|
||||||
pa_mainloop_api_once (pa_threaded_mainloop_get_api (mainloop),
|
pa_mainloop_api_once (pa_threaded_mainloop_get_api (mainloop),
|
||||||
mainloop_leave_defer_cb, psink);
|
mainloop_leave_defer_cb, psink);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (psink, "waiting for stream status");
|
|
||||||
pa_threaded_mainloop_unlock (mainloop);
|
pa_threaded_mainloop_unlock (mainloop);
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
|
|
|
@ -64,8 +64,6 @@ struct _GstPulseSink
|
||||||
gboolean mute:1;
|
gboolean mute:1;
|
||||||
gboolean mute_set:1;
|
gboolean mute_set:1;
|
||||||
|
|
||||||
gboolean pa_defer_ran:1;
|
|
||||||
|
|
||||||
gint notify; /* atomic */
|
gint notify; /* atomic */
|
||||||
|
|
||||||
const gchar *pa_version;
|
const gchar *pa_version;
|
||||||
|
|
Loading…
Reference in a new issue