mssdemux: add manifest parsing
[platform/upstream/gstreamer.git] / ext / smoothstreaming / gstmssmanifest.c
1 /* GStreamer
2  * Copyright (C) 2012 Smart TV Alliance
3  *  Author: Thiago Sousa Santos <thiago.sousa.santos@collabora.com>, Collabora Ltd.
4  *
5  * gstmssmanifest.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <glib.h>
24 #include <string.h>
25 #include <libxml/parser.h>
26 #include <libxml/tree.h>
27
28 #include "gstmssmanifest.h"
29
30 struct _GstMssManifestStream
31 {
32   xmlNodePtr xmlnode;
33 };
34
35 struct _GstMssManifest
36 {
37   xmlDocPtr xml;
38   xmlNodePtr xmlrootnode;
39
40   GSList *streams;
41 };
42
43 GstMssManifest *
44 gst_mss_manifest_new (const GstBuffer * data)
45 {
46   GstMssManifest *manifest;
47   xmlNodePtr root;
48   xmlNodePtr nodeiter;
49
50   manifest = g_malloc0 (sizeof (GstMssManifest));
51
52   manifest->xml = xmlReadMemory ((const gchar *) GST_BUFFER_DATA (data),
53       GST_BUFFER_SIZE (data), "manifest", NULL, 0);
54   root = manifest->xmlrootnode = xmlDocGetRootElement (manifest->xml);
55
56   for (nodeiter = root->children; nodeiter; nodeiter = nodeiter->next) {
57     if (nodeiter->type == XML_ELEMENT_NODE
58         && (strcmp ((const char *) nodeiter->name, "StreamIndex") == 0)) {
59       GstMssManifestStream *stream = g_new0 (GstMssManifestStream, 1);
60
61       manifest->streams = g_slist_append (manifest->streams, stream);
62       stream->xmlnode = nodeiter;
63     }
64   }
65
66   return manifest;
67 }
68
69 void
70 gst_mss_manifest_free (GstMssManifest * manifest)
71 {
72   g_return_if_fail (manifest != NULL);
73
74   g_slist_free_full (manifest->streams, g_free);
75
76   xmlFreeDoc (manifest->xml);
77   g_free (manifest);
78 }
79
80 GSList *
81 gst_mss_manifest_get_streams (GstMssManifest * manifest)
82 {
83   return manifest->streams;
84 }
85
86 GstMssManifestStreamType
87 gst_mss_manifest_stream_get_type (GstMssManifestStream * stream)
88 {
89   gchar *prop = (gchar *) xmlGetProp (stream->xmlnode, (xmlChar *) "Type");
90   GstMssManifestStreamType ret = MSS_STREAM_TYPE_UNKNOWN;
91
92   if (strcmp (prop, "video") == 0) {
93     ret = MSS_STREAM_TYPE_VIDEO;
94   } else if (strcmp (prop, "audio") == 0) {
95     ret = MSS_STREAM_TYPE_AUDIO;
96   }
97   xmlFree (prop);
98   return ret;
99 }
100
101 const gchar *
102 gst_mss_manifest_stream_type_name (GstMssManifestStreamType streamtype)
103 {
104   switch (streamtype) {
105     case MSS_STREAM_TYPE_VIDEO:
106       return "video";
107     case MSS_STREAM_TYPE_AUDIO:
108       return "audio";
109     case MSS_STREAM_TYPE_UNKNOWN:
110     default:
111       return "unknown";
112   }
113 }