• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
2  *
3  * Copyright (C) 2019 Collabora Ltd.
4  *   Author: Stéphane Cerveau <scerveau@collabora.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library (COPYING); if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 #ifndef __GSTMPDADAPTATIONSETNODE_H__
22 #define __GSTMPDADAPTATIONSETNODE_H__
23 
24 #include <gst/gst.h>
25 #include "gstmpdhelper.h"
26 #include "gstmpdrepresentationbasenode.h"
27 #include "gstmpdsegmentlistnode.h"
28 #include "gstmpdsegmenttemplatenode.h"
29 
30 G_BEGIN_DECLS
31 
32 #define GST_TYPE_MPD_ADAPTATION_SET_NODE gst_mpd_adaptation_set_node_get_type ()
33 G_DECLARE_FINAL_TYPE (GstMPDAdaptationSetNode, gst_mpd_adaptation_set_node, GST, MPD_ADAPTATION_SET_NODE, GstMPDRepresentationBaseNode)
34 
35 struct _GstMPDAdaptationSetNode
36 {
37   GstMPDRepresentationBaseNode parent_instance;
38   guint id;
39   guint group;
40   gchar *lang;                      /* LangVectorType RFC 5646 */
41   gchar *contentType;
42   GstXMLRatio *par;
43   guint minBandwidth;
44   guint maxBandwidth;
45   guint minWidth;
46   guint maxWidth;
47   guint minHeight;
48   guint maxHeight;
49   GstXMLConditionalUintType *segmentAlignment;
50   GstXMLConditionalUintType *subsegmentAlignment;
51   GstMPDSAPType subsegmentStartsWithSAP;
52   gboolean bitstreamSwitching;
53   /* list of Accessibility DescriptorType nodes */
54   GList *Accessibility;
55   /* list of Role DescriptorType nodes */
56   GList *Role;
57   /* list of Rating DescriptorType nodes */
58   GList *Rating;
59   /* list of Viewpoint DescriptorType nodes */
60   GList *Viewpoint;
61   /* SegmentBase node */
62   GstMPDSegmentBaseNode *SegmentBase;
63   /* SegmentList node */
64   GstMPDSegmentListNode *SegmentList;
65   /* SegmentTemplate node */
66   GstMPDSegmentTemplateNode *SegmentTemplate;
67   /* list of BaseURL nodes */
68   GList *BaseURLs;
69   /* list of Representation nodes */
70   GList *Representations;
71   /* list of ContentComponent nodes */
72   GList *ContentComponents;
73 
74   gchar *xlink_href;
75   GstMPDXLinkActuate actuate;
76 };
77 
78 GstMPDAdaptationSetNode * gst_mpd_adaptation_set_node_new (void);
79 void gst_mpd_adaptation_set_node_free (GstMPDAdaptationSetNode* self);
80 
81 G_END_DECLS
82 
83 #endif /* __GSTMPDADAPTATIONSETNODE_H__ */
84