File: gstmpdsubsetnode.c

package info (click to toggle)
gst-plugins-bad1.0 1.26.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 69,996 kB
  • sloc: ansic: 722,568; cpp: 278,154; objc: 3,556; xml: 3,351; sh: 1,095; python: 508; makefile: 175; java: 75
file content (92 lines) | stat: -rw-r--r-- 2,411 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* 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 "gstmpdsubsetnode.h"
#include "gstmpdparser.h"

G_DEFINE_TYPE (GstMPDSubsetNode, gst_mpd_subset_node, GST_TYPE_MPD_NODE);

/* GObject VMethods */

static void
gst_mpd_subset_node_finalize (GObject * object)
{
  GstMPDSubsetNode *self = GST_MPD_SUBSET_NODE (object);

  if (self->contains)
    xmlFree (self->contains);

  G_OBJECT_CLASS (gst_mpd_subset_node_parent_class)->finalize (object);
}

/* Base class */

static xmlNodePtr
gst_mpd_subset_get_xml_node (GstMPDNode * node)
{
  xmlNodePtr subset_xml_node = NULL;
  GstMPDSubsetNode *self = GST_MPD_SUBSET_NODE (node);

  subset_xml_node = xmlNewNode (NULL, (xmlChar *) "Subset");

  if (self->contains)
    gst_xml_helper_set_prop_uint_vector_type (subset_xml_node, "contains",
        self->contains, self->contains_size);

  return subset_xml_node;
}

static void
gst_mpd_subset_node_class_init (GstMPDSubsetNodeClass * klass)
{
  GObjectClass *object_class;
  GstMPDNodeClass *m_klass;

  object_class = G_OBJECT_CLASS (klass);
  m_klass = GST_MPD_NODE_CLASS (klass);

  object_class->finalize = gst_mpd_subset_node_finalize;

  m_klass->get_xml_node = gst_mpd_subset_get_xml_node;
}

static void
gst_mpd_subset_node_init (GstMPDSubsetNode * self)
{
  self->contains_size = 0;
  self->contains = NULL;
}

GstMPDSubsetNode *
gst_mpd_subset_node_new (void)
{
  GstMPDSubsetNode *ret;

  ret = g_object_new (GST_TYPE_MPD_SUBSET_NODE, NULL);
  gst_object_ref_sink (ret);
  return ret;
}

void
gst_mpd_subset_node_free (GstMPDSubsetNode * self)
{
  if (self)
    gst_object_unref (self);
}