From 399d4fcbe778388e0852612d4853a0da332294a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 8 Jul 2009 17:19:05 +0200 Subject: [PATCH] gio: Try to reuse the pipeline with the same stream objects --- tests/check/pipelines/gio.c | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/tests/check/pipelines/gio.c b/tests/check/pipelines/gio.c index c4b17f2a4b..b7bbc199e9 100644 --- a/tests/check/pipelines/gio.c +++ b/tests/check/pipelines/gio.c @@ -109,6 +109,27 @@ GST_START_TEST (test_memory_stream) gst_object_unref (bus); gst_element_set_state (bin, GST_STATE_PAUSED); + gst_element_get_state (bin, NULL, NULL, -1); + + fail_unless (gst_element_query_duration (bin, &fmt, &duration)); + fail_unless_equals_int (duration, 512); + + gst_element_set_state (bin, GST_STATE_PLAYING); + + g_main_loop_run (loop); + + gst_element_set_state (bin, GST_STATE_NULL); + + fail_unless (got_eos); + got_eos = FALSE; + + out_data = g_memory_output_stream_get_data (G_MEMORY_OUTPUT_STREAM (output)); + + for (i = 0; i < 512; i++) + fail_unless_equals_int (in_data[i], out_data[i]); + + gst_element_set_state (bin, GST_STATE_PAUSED); + gst_element_get_state (bin, NULL, NULL, -1); fail_unless (gst_element_query_duration (bin, &fmt, &duration)); fail_unless_equals_int (duration, 512); @@ -122,11 +143,6 @@ GST_START_TEST (test_memory_stream) fail_unless (got_eos); - out_data = g_memory_output_stream_get_data (G_MEMORY_OUTPUT_STREAM (output)); - - for (i = 0; i < 512; i++) - fail_unless_equals_int (in_data[i], out_data[i]); - g_object_unref (input); g_object_unref (output);