コード例 #1
0
ファイル: bin.c プロジェクト: WangCrystal/gstreamer
static void
test_element_in_bin (gchar * bin_name)
{
  gint i;
  GstState test_states[] = { GST_STATE_NULL, GST_STATE_READY,
    GST_STATE_PAUSED, GST_STATE_PLAYING
  };
  GstElement *id, *bin = gst_element_factory_make (bin_name, NULL);

  g_assert (bin);

  /* test correct behaviour in empty bins */
  test_adding_one_element (bin);

  id = gst_element_factory_make ("identity", NULL);
  g_assert (id);
  assert_state (id, GST_STATE_NULL);
  gst_bin_add (GST_BIN (bin), id);
  /* test correct behaviour in bins which contain elements in various states */
  for (i = 0; i < G_N_ELEMENTS (test_states); i++) {
    GstState test_state = test_states[i];

    assert_state_change (bin, test_state, GST_STATE_CHANGE_SUCCESS, test_state);
    assert_state (id, test_state);
    test_adding_one_element (bin);
  }

  gst_object_unref (bin);
}
コード例 #2
0
ファイル: bin.c プロジェクト: WangCrystal/gstreamer
static void
test_adding_one_element (GstElement * bin)
{
  /* Tests behaviour of adding/removing elements to/from bins. It makes sure the
   * state of the bin is always the highest of all contained children. */
  GstState test_states[] = { GST_STATE_READY, GST_STATE_PAUSED,
    GST_STATE_PLAYING, GST_STATE_PAUSED, GST_STATE_READY, GST_STATE_NULL
  };
  GstElement *test = gst_element_factory_make ("identity", NULL);
  GstState bin_state;
  gint i;

  gst_element_get_state (bin, &bin_state, NULL, NULL);
  g_assert (test);
  gst_object_ref (test);
  assert_state (test, GST_STATE_NULL);
  gst_bin_add (GST_BIN (bin), test);
  assert_state (bin, MAX (bin_state, GST_STATE_NULL));
  for (i = 0; i < G_N_ELEMENTS (test_states); i++) {
    GstState test_state = test_states[i];

    assert_state_change (test, test_state, GST_STATE_CHANGE_SUCCESS,
        test_state);
    assert_state (test, test_state);
    assert_state (bin, MAX (bin_state, test_state));
    gst_bin_remove (GST_BIN (bin), test);
    assert_state (bin, bin_state);
    gst_bin_add (GST_BIN (bin), test);
    assert_state (test, test_state);
    assert_state (bin, MAX (bin_state, test_state));
  }
  gst_bin_remove (GST_BIN (bin), test);
  gst_object_unref (test);
  assert_state (bin, bin_state);
}
コード例 #3
0
ファイル: bin.c プロジェクト: WangCrystal/gstreamer
static void
assert_state_change (GstElement * element, GstState new_state,
    GstStateChangeReturn result, GstState result_state)
{
  GstStateChangeReturn ret = gst_element_set_state (element, new_state);

  if (ret != result) {
    g_printerr ("%s: change state to %s returned %s instead of %s",
        GST_OBJECT_NAME (element), gst_element_state_get_name (new_state),
        RETURN_NAME (ret), RETURN_NAME (result));
    g_assert_not_reached ();
  }
  assert_state (element, result_state);
}
コード例 #4
0
ファイル: bin.c プロジェクト: WangCrystal/gstreamer
static void
empty_bin (gchar * bin_name)
{
  /* Test the behaviour of empty bins. Since a bin's state is always the state
   * of its highest child, nothing should change in here
   * Return values when no error occured but the state didn't change should be
   * GST_STATE_CHANGE_ASYNC */
  GstElement *bin = gst_element_factory_make (bin_name, NULL);

  g_assert (bin);
  /* obvious */
  assert_state (bin, GST_STATE_NULL);
  /* see above */
  assert_state_change (bin, GST_STATE_READY, GST_STATE_CHANGE_SUCCESS,
      GST_STATE_READY);
  assert_state_change (bin, GST_STATE_PAUSED, GST_STATE_CHANGE_SUCCESS,
      GST_STATE_PAUSED);
  assert_state_change (bin, GST_STATE_PLAYING, GST_STATE_CHANGE_SUCCESS,
      GST_STATE_PLAYING);
}
コード例 #5
0
ファイル: MovementBase.cpp プロジェクト: SilverIce/Movement
 void MovementBase::SetGlobalPosition(const Location& loc)
 {
     assert_state(loc.isFinite());
     world_position = loc;
     Imports.UpdateMapPosition(&Owner, world_position);
 }