debugutils: clockselect, a pipeline that enables clock selection
Sometimes, one wants to force a clock on some pipelines - for instance,
when testing TSN related pipelines, one usually uses GstPtpClock or
CLOCK_REALTIME (assuming system realtime clock is in sync with network
one). Until now, one needs to write an application for that - not
difficult, but quite boring if one just wants to test something. This
patch presents a new element to help that: clockselect.
clockselect is a pipeline with two properties to select a clock. One
property, "clock-id", enables one to choose between "monotonic",
"realtime", "ptp" or "default" clock - where default keeps pipeline
behaviour of choosing a clock based on its elements. The other property,
"ptp-domain" gives one the choice of which PTP domain should be used.
Some very simple tests also added for this new element.
2019-10-23 17:11:46 +00:00
|
|
|
/*
|
|
|
|
* GStreamer AVTP Plugin
|
|
|
|
* Copyright (C) 2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
#include <gst/check/gstharness.h>
|
|
|
|
|
2019-12-13 19:28:08 +00:00
|
|
|
GST_START_TEST (test_clock_select_tai_clock)
|
|
|
|
{
|
|
|
|
GstHarness *h;
|
|
|
|
GstElement *element;
|
|
|
|
GstClock *clock;
|
|
|
|
guint clock_type;
|
|
|
|
|
|
|
|
h = gst_harness_new_parse ("clockselect clock-id=tai");
|
|
|
|
|
|
|
|
/* Check if element provides right clock */
|
|
|
|
element = gst_harness_find_element (h, "clockselect");
|
|
|
|
clock = gst_element_provide_clock (element);
|
|
|
|
|
|
|
|
fail_unless (GST_IS_SYSTEM_CLOCK (clock));
|
|
|
|
g_object_get (G_OBJECT (clock), "clock-type", &clock_type, NULL);
|
|
|
|
fail_unless_equals_uint64 (clock_type, GST_CLOCK_TYPE_TAI);
|
|
|
|
|
|
|
|
gst_object_unref (element);
|
|
|
|
gst_object_unref (clock);
|
|
|
|
gst_harness_teardown (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
debugutils: clockselect, a pipeline that enables clock selection
Sometimes, one wants to force a clock on some pipelines - for instance,
when testing TSN related pipelines, one usually uses GstPtpClock or
CLOCK_REALTIME (assuming system realtime clock is in sync with network
one). Until now, one needs to write an application for that - not
difficult, but quite boring if one just wants to test something. This
patch presents a new element to help that: clockselect.
clockselect is a pipeline with two properties to select a clock. One
property, "clock-id", enables one to choose between "monotonic",
"realtime", "ptp" or "default" clock - where default keeps pipeline
behaviour of choosing a clock based on its elements. The other property,
"ptp-domain" gives one the choice of which PTP domain should be used.
Some very simple tests also added for this new element.
2019-10-23 17:11:46 +00:00
|
|
|
GST_START_TEST (test_clock_select_realtime_clock)
|
|
|
|
{
|
|
|
|
GstHarness *h;
|
|
|
|
GstElement *element;
|
|
|
|
GstClock *clock;
|
|
|
|
guint clock_type;
|
|
|
|
|
|
|
|
h = gst_harness_new_parse ("clockselect clock-id=realtime");
|
|
|
|
|
|
|
|
/* Check if element provides right clock */
|
|
|
|
element = gst_harness_find_element (h, "clockselect");
|
|
|
|
clock = gst_element_provide_clock (element);
|
|
|
|
|
|
|
|
fail_unless (GST_IS_SYSTEM_CLOCK (clock));
|
|
|
|
g_object_get (G_OBJECT (clock), "clock-type", &clock_type, NULL);
|
|
|
|
fail_unless_equals_uint64 (clock_type, GST_CLOCK_TYPE_REALTIME);
|
|
|
|
|
|
|
|
gst_object_unref (element);
|
|
|
|
gst_object_unref (clock);
|
|
|
|
gst_harness_teardown (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_clock_select_monotonic_clock)
|
|
|
|
{
|
|
|
|
GstHarness *h;
|
|
|
|
GstElement *element;
|
|
|
|
GstClock *clock;
|
|
|
|
guint clock_type;
|
|
|
|
|
|
|
|
h = gst_harness_new_parse ("clockselect clock-id=monotonic");
|
|
|
|
|
|
|
|
/* Check if element provides right clock */
|
|
|
|
element = gst_harness_find_element (h, "clockselect");
|
|
|
|
clock = gst_element_provide_clock (element);
|
|
|
|
|
|
|
|
fail_unless (GST_IS_SYSTEM_CLOCK (clock));
|
|
|
|
g_object_get (G_OBJECT (clock), "clock-type", &clock_type, NULL);
|
|
|
|
fail_unless_equals_uint64 (clock_type, GST_CLOCK_TYPE_MONOTONIC);
|
|
|
|
|
|
|
|
gst_object_unref (element);
|
|
|
|
gst_object_unref (clock);
|
|
|
|
gst_harness_teardown (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_clock_select_properties)
|
|
|
|
{
|
|
|
|
GstHarness *h;
|
|
|
|
GstElement *element;
|
|
|
|
guint clock_id, domain;
|
|
|
|
|
|
|
|
h = gst_harness_new_parse ("clockselect clock-id=ptp ptp-domain=2");
|
|
|
|
|
|
|
|
/* Check if all properties were properly set up */
|
|
|
|
element = gst_harness_find_element (h, "clockselect");
|
|
|
|
g_object_get (G_OBJECT (element), "clock-id", &clock_id, NULL);
|
|
|
|
fail_unless_equals_uint64 (clock_id, 3);
|
|
|
|
|
|
|
|
g_object_get (G_OBJECT (element), "ptp-domain", &domain, NULL);
|
|
|
|
fail_unless_equals_uint64 (domain, 2);
|
|
|
|
|
|
|
|
gst_object_unref (element);
|
|
|
|
gst_harness_teardown (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
clock_select_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("clockselect");
|
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
tcase_add_test (tc_chain, test_clock_select_properties);
|
|
|
|
tcase_add_test (tc_chain, test_clock_select_monotonic_clock);
|
|
|
|
tcase_add_test (tc_chain, test_clock_select_realtime_clock);
|
2019-12-13 19:28:08 +00:00
|
|
|
tcase_add_test (tc_chain, test_clock_select_tai_clock);
|
debugutils: clockselect, a pipeline that enables clock selection
Sometimes, one wants to force a clock on some pipelines - for instance,
when testing TSN related pipelines, one usually uses GstPtpClock or
CLOCK_REALTIME (assuming system realtime clock is in sync with network
one). Until now, one needs to write an application for that - not
difficult, but quite boring if one just wants to test something. This
patch presents a new element to help that: clockselect.
clockselect is a pipeline with two properties to select a clock. One
property, "clock-id", enables one to choose between "monotonic",
"realtime", "ptp" or "default" clock - where default keeps pipeline
behaviour of choosing a clock based on its elements. The other property,
"ptp-domain" gives one the choice of which PTP domain should be used.
Some very simple tests also added for this new element.
2019-10-23 17:11:46 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_CHECK_MAIN (clock_select);
|