mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
75 lines
2.2 KiB
C
75 lines
2.2 KiB
C
/* GStreamer
|
|
*
|
|
* Copyright (C) 2019 Collabora Ltd.
|
|
* Author: Stéphane Cerveau <scerveau@collabora.com>
|
|
*
|
|
* 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 "gstmpdmetricsrangenode.h"
|
|
#include "gstmpdparser.h"
|
|
|
|
G_DEFINE_TYPE (GstMPDMetricsRangeNode, gst_mpd_metrics_range_node,
|
|
GST_TYPE_MPD_NODE);
|
|
|
|
/* Base class */
|
|
|
|
static xmlNodePtr
|
|
gst_mpd_metrics_range_get_xml_node (GstMPDNode * node)
|
|
{
|
|
xmlNodePtr metrics_range_xml_node = NULL;
|
|
GstMPDMetricsRangeNode *self = GST_MPD_METRICS_RANGE_NODE (node);
|
|
|
|
metrics_range_xml_node = xmlNewNode (NULL, (xmlChar *) "Range");
|
|
|
|
if (self->starttime)
|
|
gst_xml_helper_set_prop_duration (metrics_range_xml_node, "starttime",
|
|
self->starttime);
|
|
if (self->duration)
|
|
gst_xml_helper_set_prop_duration (metrics_range_xml_node, "duration",
|
|
self->duration);
|
|
|
|
return metrics_range_xml_node;
|
|
}
|
|
|
|
static void
|
|
gst_mpd_metrics_range_node_class_init (GstMPDMetricsRangeNodeClass * klass)
|
|
{
|
|
GstMPDNodeClass *m_klass;
|
|
|
|
m_klass = GST_MPD_NODE_CLASS (klass);
|
|
|
|
m_klass->get_xml_node = gst_mpd_metrics_range_get_xml_node;
|
|
}
|
|
|
|
static void
|
|
gst_mpd_metrics_range_node_init (GstMPDMetricsRangeNode * self)
|
|
{
|
|
self->starttime = 0; /* [ms] */
|
|
self->duration = 0; /* [ms] */
|
|
}
|
|
|
|
GstMPDMetricsRangeNode *
|
|
gst_mpd_metrics_range_node_new (void)
|
|
{
|
|
return g_object_new (GST_TYPE_MPD_METRICS_RANGE_NODE, NULL);
|
|
}
|
|
|
|
void
|
|
gst_mpd_metrics_range_node_free (GstMPDMetricsRangeNode * self)
|
|
{
|
|
if (self)
|
|
gst_object_unref (self);
|
|
}
|