mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
check/states/sinks.c (test_src_sink): Cleanups from the state change patch.
Original commit message from CVS: 2005-10-10 Andy Wingo <wingo@pobox.com> * check/states/sinks.c (test_src_sink): Cleanups from the state change patch. (test_livesrc_sink): Sync on the state.
This commit is contained in:
parent
4353da375f
commit
a7d07e2b7e
3 changed files with 20 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
2005-10-10 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* check/states/sinks.c (test_src_sink): Cleanups from the state
|
||||
change patch.
|
||||
(test_livesrc_sink): Sync on the state.
|
||||
|
||||
* check/pipelines/simple_launch_lines.c (run_pipeline): Merge from
|
||||
the state change patch.
|
||||
|
||||
|
|
|
@ -91,6 +91,11 @@ GST_START_TEST (test_src_sink)
|
|||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "not playing");
|
||||
fail_unless (current == GST_STATE_PLAYING, "not playing");
|
||||
fail_unless (pending == GST_STATE_VOID_PENDING, "not playing");
|
||||
ret = gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "cannot null pipeline");
|
||||
|
||||
gst_object_unref (pipeline);
|
||||
|
||||
}
|
||||
|
||||
GST_END_TEST
|
||||
|
@ -177,7 +182,9 @@ GST_START_TEST (test_livesrc_sink)
|
|||
fail_unless (pending == GST_STATE_VOID_PENDING, "not playing");
|
||||
|
||||
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "cannot force play");
|
||||
ret = gst_element_get_state (pipeline, NULL, NULL, NULL);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "cannot force play got %d",
|
||||
ret);
|
||||
|
||||
ret = gst_element_get_state (pipeline, ¤t, &pending, NULL);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "not playing");
|
||||
|
|
|
@ -91,6 +91,11 @@ GST_START_TEST (test_src_sink)
|
|||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "not playing");
|
||||
fail_unless (current == GST_STATE_PLAYING, "not playing");
|
||||
fail_unless (pending == GST_STATE_VOID_PENDING, "not playing");
|
||||
ret = gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "cannot null pipeline");
|
||||
|
||||
gst_object_unref (pipeline);
|
||||
|
||||
}
|
||||
|
||||
GST_END_TEST
|
||||
|
@ -177,7 +182,9 @@ GST_START_TEST (test_livesrc_sink)
|
|||
fail_unless (pending == GST_STATE_VOID_PENDING, "not playing");
|
||||
|
||||
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "cannot force play");
|
||||
ret = gst_element_get_state (pipeline, NULL, NULL, NULL);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "cannot force play got %d",
|
||||
ret);
|
||||
|
||||
ret = gst_element_get_state (pipeline, ¤t, &pending, NULL);
|
||||
fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "not playing");
|
||||
|
|
Loading…
Reference in a new issue