Revert "queue2: add overrun signal"

This reverts commit 8ae8b2723d.

It's not used anymore by anything and was considered a bad idea in general.
This commit is contained in:
Sebastian Dröge 2016-02-16 19:11:59 +02:00
parent d11e657412
commit fd253ab1ab
3 changed files with 2 additions and 101 deletions

View file

@ -97,7 +97,6 @@ GST_DEBUG_CATEGORY_STATIC (queue_dataflow);
enum
{
SIGNAL_OVERRUN,
LAST_SIGNAL
};
@ -293,7 +292,7 @@ typedef struct
GstMiniObject *item;
} GstQueue2Item;
static guint gst_queue2_signals[LAST_SIGNAL] = { 0 };
/* static guint gst_queue2_signals[LAST_SIGNAL] = { 0 }; */
static void
gst_queue2_class_init (GstQueue2Class * klass)
@ -304,23 +303,6 @@ gst_queue2_class_init (GstQueue2Class * klass)
gobject_class->set_property = gst_queue2_set_property;
gobject_class->get_property = gst_queue2_get_property;
/* signals */
/**
* GstQueue2::overrun:
* @queue: the queue2 instance
*
* Reports that the buffer became full (overrun).
* A buffer is full if the total amount of data inside it (num-buffers, time,
* size) is higher than the boundary values which can be set through the
* GObject properties.
*
* Since: 1.8
*/
gst_queue2_signals[SIGNAL_OVERRUN] =
g_signal_new ("overrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (GstQueue2Class, overrun), NULL, NULL,
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
/* properties */
g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_BYTES,
g_param_spec_uint ("current-level-bytes", "Current level (kB)",
@ -1766,13 +1748,6 @@ gst_queue2_wait_free_space (GstQueue2 * queue)
GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
"queue is full, waiting for free space");
do {
GST_QUEUE2_MUTEX_UNLOCK (queue);
g_signal_emit (queue, gst_queue2_signals[SIGNAL_OVERRUN], 0);
GST_QUEUE2_MUTEX_LOCK_CHECK (queue, queue->srcresult, out_flushing);
/* we recheck, the signal could have changed the thresholds */
if (!gst_queue2_is_filled (queue))
break;
/* Wait for space to be available, we could be unlocked because of a flush. */
GST_QUEUE2_WAIT_DEL_CHECK (queue, queue->sinkresult, out_flushing);
}

View file

@ -170,9 +170,6 @@ struct _GstQueue2
struct _GstQueue2Class
{
GstElementClass parent_class;
/* signals */
void (*overrun) (GstQueue2 *queue2);
};
G_GNUC_INTERNAL GType gst_queue2_get_type (void);

View file

@ -269,77 +269,6 @@ GST_START_TEST (test_filled_read)
GST_END_TEST;
static gint overrun_count;
static void
queue_overrun (GstElement * queue, gpointer user_data)
{
overrun_count++;
GST_DEBUG ("queue overrun %d", overrun_count);
}
static gpointer
pull_buffer (GstPad * srcpad)
{
GstBuffer *buffer = NULL;
gst_pad_get_range (srcpad, 0, 1024, &buffer);
gst_buffer_unref (buffer);
return NULL;
}
GST_START_TEST (test_overrun)
{
GstElement *queue2;
GstBuffer *buffer;
GstPad *sinkpad, *srcpad;
GstSegment segment;
GThread *thread;
overrun_count = 0;
queue2 = gst_element_factory_make ("queue2", NULL);
sinkpad = gst_element_get_static_pad (queue2, "sink");
srcpad = gst_element_get_static_pad (queue2, "src");
g_signal_connect (queue2, "overrun", G_CALLBACK (queue_overrun), srcpad);
g_object_set (queue2, "ring-buffer-max-size", (guint64) 4 * 1024,
"use-buffering", FALSE,
"max-size-buffers", (guint) 0, "max-size-time", (guint64) 0,
"max-size-bytes", (guint) 4 * 1024, NULL);
gst_pad_activate_mode (srcpad, GST_PAD_MODE_PULL, TRUE);
gst_element_set_state (queue2, GST_STATE_PLAYING);
gst_segment_init (&segment, GST_FORMAT_BYTES);
gst_pad_send_event (sinkpad, gst_event_new_stream_start ("test"));
gst_pad_send_event (sinkpad, gst_event_new_segment (&segment));
/* Fill the queue */
buffer = gst_buffer_new_and_alloc (4 * 1024);
fail_unless (gst_pad_chain (sinkpad, buffer) == GST_FLOW_OK);
/* Make sure the queue doesn't remain full */
thread =
g_thread_try_new ("gst-check", (GThreadFunc) pull_buffer, srcpad, NULL);
fail_unless (thread != NULL);
/* Push a new buffer in the full queue, should trigger overrun */
buffer = gst_buffer_new_and_alloc (1024);
fail_unless (gst_pad_chain (sinkpad, buffer) == GST_FLOW_OK);
fail_unless (overrun_count == 1);
g_thread_join (thread);
gst_element_set_state (queue2, GST_STATE_NULL);
gst_object_unref (sinkpad);
gst_object_unref (srcpad);
gst_object_unref (queue2);
}
GST_END_TEST;
static GstPadProbeReturn
block_callback (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
@ -418,7 +347,7 @@ queue2_suite (void)
tcase_add_test (tc_chain, test_simple_shutdown_while_running_ringbuffer);
tcase_add_test (tc_chain, test_filled_read);
tcase_add_test (tc_chain, test_percent_overflow);
tcase_add_test (tc_chain, test_overrun);
return s;
}