71fd576a26cec984fdbc5d8d6ddd013ea7ed5416
[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 /* for parsing h264 codec data */
29 #include <gst/codecparsers/gsth264parser.h>
30
31 #include "gstmssmanifest.h"
32
33 #define DEFAULT_TIMESCALE             10000000
34
35 #define MSS_NODE_STREAM_FRAGMENT      "c"
36 #define MSS_NODE_STREAM_QUALITY       "QualityLevel"
37
38 #define MSS_PROP_BITRATE              "Bitrate"
39 #define MSS_PROP_DURATION             "d"
40 #define MSS_PROP_NUMBER               "n"
41 #define MSS_PROP_STREAM_DURATION      "Duration"
42 #define MSS_PROP_TIME                 "t"
43 #define MSS_PROP_TIMESCALE            "TimeScale"
44 #define MSS_PROP_URL                  "Url"
45
46 /* TODO check if atoi is successful? */
47
48 typedef struct _GstMssStreamFragment
49 {
50   guint number;
51   guint64 time;
52   guint64 duration;
53 } GstMssStreamFragment;
54
55 typedef struct _GstMssStreamQuality
56 {
57   xmlNodePtr xmlnode;
58
59   gchar *bitrate_str;
60   guint64 bitrate;
61 } GstMssStreamQuality;
62
63 struct _GstMssStream
64 {
65   xmlNodePtr xmlnode;
66
67   gboolean active;              /* if the stream is currently being used */
68   gint selectedQualityIndex;
69
70   GList *fragments;
71   GList *qualities;
72
73   gchar *url;
74
75   GList *current_fragment;
76   GList *current_quality;
77
78   /* TODO move this to somewhere static */
79   GRegex *regex_bitrate;
80   GRegex *regex_position;
81 };
82
83 struct _GstMssManifest
84 {
85   xmlDocPtr xml;
86   xmlNodePtr xmlrootnode;
87
88   GSList *streams;
89 };
90
91 static gboolean
92 node_has_type (xmlNodePtr node, const gchar * name)
93 {
94   return strcmp ((gchar *) node->name, name) == 0;
95 }
96
97 static GstMssStreamQuality *
98 gst_mss_stream_quality_new (xmlNodePtr node)
99 {
100   GstMssStreamQuality *q = g_slice_new (GstMssStreamQuality);
101
102   q->xmlnode = node;
103   q->bitrate_str = (gchar *) xmlGetProp (node, (xmlChar *) MSS_PROP_BITRATE);
104   q->bitrate = strtoull (q->bitrate_str, NULL, 10);
105
106   return q;
107 }
108
109 static void
110 gst_mss_stream_quality_free (GstMssStreamQuality * quality)
111 {
112   g_return_if_fail (quality != NULL);
113
114   g_free (quality->bitrate_str);
115   g_slice_free (GstMssStreamQuality, quality);
116 }
117
118 static gint
119 compare_bitrate (GstMssStreamQuality * a, GstMssStreamQuality * b)
120 {
121   if (a->bitrate > b->bitrate)
122     return 1;
123   if (a->bitrate < b->bitrate)
124     return -1;
125   return 0;
126
127 }
128
129 static void
130 _gst_mss_stream_init (GstMssStream * stream, xmlNodePtr node)
131 {
132   xmlNodePtr iter;
133   GstMssStreamFragment *previous_fragment = NULL;
134   guint fragment_number = 0;
135   guint fragment_time_accum = 0;
136   GError *gerror = NULL;
137
138   stream->xmlnode = node;
139
140   /* get the base url path generator */
141   stream->url = (gchar *) xmlGetProp (node, (xmlChar *) MSS_PROP_URL);
142
143   for (iter = node->children; iter; iter = iter->next) {
144     if (node_has_type (iter, MSS_NODE_STREAM_FRAGMENT)) {
145       gchar *duration_str;
146       gchar *time_str;
147       gchar *seqnum_str;
148       GstMssStreamFragment *fragment = g_new (GstMssStreamFragment, 1);
149
150       duration_str = (gchar *) xmlGetProp (iter, (xmlChar *) MSS_PROP_DURATION);
151       time_str = (gchar *) xmlGetProp (iter, (xmlChar *) MSS_PROP_TIME);
152       seqnum_str = (gchar *) xmlGetProp (iter, (xmlChar *) MSS_PROP_NUMBER);
153
154       /* use the node's seq number or use the previous + 1 */
155       if (seqnum_str) {
156         fragment->number = atoi (seqnum_str);
157         g_free (seqnum_str);
158       } else {
159         fragment->number = fragment_number;
160       }
161       fragment_number = fragment->number + 1;
162
163       if (time_str) {
164         fragment->time = atoi (time_str);
165         g_free (time_str);
166       } else {
167         fragment->time = fragment_time_accum;
168       }
169
170       /* if we have a previous fragment, means we need to set its duration */
171       if (previous_fragment)
172         previous_fragment->duration = fragment->time - previous_fragment->time;
173
174       if (duration_str) {
175         fragment->duration = atoi (duration_str);
176
177         previous_fragment = NULL;
178         fragment_time_accum += fragment->duration;
179         g_free (duration_str);
180       } else {
181         /* store to set the duration at the next iteration */
182         previous_fragment = fragment;
183       }
184
185       /* we reverse it later */
186       stream->fragments = g_list_prepend (stream->fragments, fragment);
187
188     } else if (node_has_type (iter, MSS_NODE_STREAM_QUALITY)) {
189       GstMssStreamQuality *quality = gst_mss_stream_quality_new (iter);
190       stream->qualities = g_list_prepend (stream->qualities, quality);
191     } else {
192       /* TODO gst log this */
193     }
194   }
195
196   stream->fragments = g_list_reverse (stream->fragments);
197
198   /* order them from smaller to bigger based on bitrates */
199   stream->qualities =
200       g_list_sort (stream->qualities, (GCompareFunc) compare_bitrate);
201
202   stream->current_fragment = stream->fragments;
203   stream->current_quality = stream->qualities;
204
205   stream->regex_bitrate = g_regex_new ("\\{[Bb]itrate\\}", 0, 0, &gerror);
206   stream->regex_position = g_regex_new ("\\{start[ _]time\\}", 0, 0, &gerror);
207 }
208
209 GstMssManifest *
210 gst_mss_manifest_new (const GstBuffer * data)
211 {
212   GstMssManifest *manifest;
213   xmlNodePtr root;
214   xmlNodePtr nodeiter;
215
216   manifest = g_malloc0 (sizeof (GstMssManifest));
217
218   manifest->xml = xmlReadMemory ((const gchar *) GST_BUFFER_DATA (data),
219       GST_BUFFER_SIZE (data), "manifest", NULL, 0);
220   root = manifest->xmlrootnode = xmlDocGetRootElement (manifest->xml);
221
222   for (nodeiter = root->children; nodeiter; nodeiter = nodeiter->next) {
223     if (nodeiter->type == XML_ELEMENT_NODE
224         && (strcmp ((const char *) nodeiter->name, "StreamIndex") == 0)) {
225       GstMssStream *stream = g_new0 (GstMssStream, 1);
226
227       manifest->streams = g_slist_append (manifest->streams, stream);
228       _gst_mss_stream_init (stream, nodeiter);
229     }
230   }
231
232   return manifest;
233 }
234
235 static void
236 gst_mss_stream_free (GstMssStream * stream)
237 {
238   g_list_free_full (stream->fragments, g_free);
239   g_list_free_full (stream->qualities,
240       (GDestroyNotify) gst_mss_stream_quality_free);
241   g_free (stream->url);
242   g_regex_unref (stream->regex_position);
243   g_regex_unref (stream->regex_bitrate);
244   g_free (stream);
245 }
246
247 void
248 gst_mss_manifest_free (GstMssManifest * manifest)
249 {
250   g_return_if_fail (manifest != NULL);
251
252   g_slist_free_full (manifest->streams, (GDestroyNotify) gst_mss_stream_free);
253
254   xmlFreeDoc (manifest->xml);
255   g_free (manifest);
256 }
257
258 GSList *
259 gst_mss_manifest_get_streams (GstMssManifest * manifest)
260 {
261   return manifest->streams;
262 }
263
264 GstMssStreamType
265 gst_mss_stream_get_type (GstMssStream * stream)
266 {
267   gchar *prop = (gchar *) xmlGetProp (stream->xmlnode, (xmlChar *) "Type");
268   GstMssStreamType ret = MSS_STREAM_TYPE_UNKNOWN;
269
270   if (strcmp (prop, "video") == 0) {
271     ret = MSS_STREAM_TYPE_VIDEO;
272   } else if (strcmp (prop, "audio") == 0) {
273     ret = MSS_STREAM_TYPE_AUDIO;
274   }
275   xmlFree (prop);
276   return ret;
277 }
278
279 static GstCaps *
280 _gst_mss_stream_video_caps_from_fourcc (gchar * fourcc)
281 {
282   if (!fourcc)
283     return NULL;
284
285   if (strcmp (fourcc, "H264") == 0 || strcmp (fourcc, "AVC1") == 0) {
286     return gst_caps_new_simple ("video/x-h264", "stream-format", G_TYPE_STRING,
287         "avc", NULL);
288   } else if (strcmp (fourcc, "WVC1") == 0) {
289     return gst_caps_new_simple ("video/x-wmv", "wmvversion", G_TYPE_INT, 3,
290         NULL);
291   }
292   return NULL;
293 }
294
295 static GstCaps *
296 _gst_mss_stream_audio_caps_from_fourcc (gchar * fourcc)
297 {
298   if (!fourcc)
299     return NULL;
300
301   if (strcmp (fourcc, "AACL") == 0) {
302     return gst_caps_new_simple ("audio/mpeg", "mpegversion", G_TYPE_INT, 4,
303         NULL);
304   } else if (strcmp (fourcc, "WmaPro") == 0) {
305     return gst_caps_new_simple ("audio/x-wma", "wmaversion", G_TYPE_INT, 2,
306         NULL);
307   }
308   return NULL;
309 }
310
311 /* copied and adapted from h264parse */
312 static GstBuffer *
313 _make_h264_codec_data (GstBuffer * sps, GstBuffer * pps)
314 {
315   GstBuffer *buf;
316   gint sps_size = 0, pps_size = 0, num_sps = 0, num_pps = 0;
317   guint8 profile_idc = 0, profile_comp = 0, level_idc = 0;
318   guint8 *data;
319   gint nl;
320
321   sps_size += GST_BUFFER_SIZE (sps) + 2;
322   profile_idc = GST_BUFFER_DATA (sps)[1];
323   profile_comp = GST_BUFFER_DATA (sps)[2];
324   level_idc = GST_BUFFER_DATA (sps)[3];
325   num_sps = 1;
326
327   pps_size += GST_BUFFER_SIZE (pps) + 2;
328   num_pps = 1;
329
330   buf = gst_buffer_new_and_alloc (5 + 1 + sps_size + 1 + pps_size);
331   data = GST_BUFFER_DATA (buf);
332   nl = 4;
333
334   data[0] = 1;                  /* AVC Decoder Configuration Record ver. 1 */
335   data[1] = profile_idc;        /* profile_idc                             */
336   data[2] = profile_comp;       /* profile_compability                     */
337   data[3] = level_idc;          /* level_idc                               */
338   data[4] = 0xfc | (nl - 1);    /* nal_length_size_minus1                  */
339   data[5] = 0xe0 | num_sps;     /* number of SPSs */
340
341   data += 6;
342   GST_WRITE_UINT16_BE (data, GST_BUFFER_SIZE (sps));
343   memcpy (data + 2, GST_BUFFER_DATA (sps), GST_BUFFER_SIZE (sps));
344   data += 2 + GST_BUFFER_SIZE (sps);
345
346   data[0] = num_pps;
347   data++;
348   GST_WRITE_UINT16_BE (data, GST_BUFFER_SIZE (pps));
349   memcpy (data + 2, GST_BUFFER_DATA (pps), GST_BUFFER_SIZE (pps));
350   data += 2 + GST_BUFFER_SIZE (pps);
351
352   return buf;
353 }
354
355 static void
356 _gst_mss_stream_add_h264_codec_data (GstCaps * caps, const gchar * codecdatastr)
357 {
358   GValue sps_value = { 0, };
359   GValue pps_value = { 0, };
360   GstBuffer *sps;
361   GstBuffer *pps;
362   GstBuffer *buffer;
363   gchar *sps_str;
364   gchar *pps_str;
365   GstH264NalUnit nalu;
366   GstH264SPS sps_struct;
367   GstH264ParserResult parseres;
368
369   /* search for the sps start */
370   if (g_str_has_prefix (codecdatastr, "00000001")) {
371     sps_str = (gchar *) codecdatastr + 8;
372   } else {
373     return;                     /* invalid mss codec data */
374   }
375
376   /* search for the pps start */
377   pps_str = g_strstr_len (sps_str, -1, "00000001");
378   if (!pps_str) {
379     return;                     /* invalid mss codec data */
380   }
381
382   g_value_init (&sps_value, GST_TYPE_BUFFER);
383   pps_str[0] = '\0';
384   gst_value_deserialize (&sps_value, sps_str);
385   pps_str[0] = '0';
386
387   g_value_init (&pps_value, GST_TYPE_BUFFER);
388   pps_str = pps_str + 8;
389   gst_value_deserialize (&pps_value, pps_str);
390
391   sps = gst_value_get_buffer (&sps_value);
392   pps = gst_value_get_buffer (&pps_value);
393
394   nalu.ref_idc = (GST_BUFFER_DATA (sps)[0] & 0x60) >> 5;
395   nalu.type = GST_H264_NAL_SPS;
396   nalu.size = GST_BUFFER_SIZE (sps);
397   nalu.data = GST_BUFFER_DATA (sps);
398   nalu.offset = 0;
399   nalu.sc_offset = 0;
400   nalu.valid = TRUE;
401
402   parseres = gst_h264_parse_sps (&nalu, &sps_struct, TRUE);
403   if (parseres == GST_H264_PARSER_OK) {
404     gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION,
405         sps_struct.fps_num, sps_struct.fps_den, NULL);
406   }
407
408   buffer = _make_h264_codec_data (sps, pps);
409   g_value_reset (&sps_value);
410   g_value_reset (&pps_value);
411
412   gst_caps_set_simple (caps, "codec_data", GST_TYPE_BUFFER, buffer, NULL);
413   gst_buffer_unref (buffer);
414 }
415
416 static GstCaps *
417 _gst_mss_stream_video_caps_from_qualitylevel_xml (xmlNodePtr node)
418 {
419   GstCaps *caps;
420   GstStructure *structure;
421   gchar *fourcc = (gchar *) xmlGetProp (node, (xmlChar *) "FourCC");
422   gchar *max_width = (gchar *) xmlGetProp (node, (xmlChar *) "MaxWidth");
423   gchar *max_height = (gchar *) xmlGetProp (node, (xmlChar *) "MaxHeight");
424   gchar *codec_data =
425       (gchar *) xmlGetProp (node, (xmlChar *) "CodecPrivateData");
426
427   if (!max_width)
428     max_width = (gchar *) xmlGetProp (node, (xmlChar *) "Width");
429   if (!max_height)
430     max_height = (gchar *) xmlGetProp (node, (xmlChar *) "Height");
431
432   caps = _gst_mss_stream_video_caps_from_fourcc (fourcc);
433   if (!caps)
434     goto end;
435
436   structure = gst_caps_get_structure (caps, 0);
437
438   if (max_width)
439     gst_structure_set (structure, "width", G_TYPE_INT, atoi (max_width), NULL);
440   if (max_height)
441     gst_structure_set (structure, "height", G_TYPE_INT, atoi (max_height),
442         NULL);
443
444   if (codec_data && strlen (codec_data)) {
445     if (strcmp (fourcc, "H264") == 0 || strcmp (fourcc, "AVC1") == 0) {
446       _gst_mss_stream_add_h264_codec_data (caps, codec_data);
447     } else {
448       GValue *value = g_new0 (GValue, 1);
449       g_value_init (value, GST_TYPE_BUFFER);
450       gst_value_deserialize (value, (gchar *) codec_data);
451       gst_structure_take_value (structure, "codec_data", value);
452     }
453   }
454
455 end:
456   g_free (fourcc);
457   g_free (max_width);
458   g_free (max_height);
459   g_free (codec_data);
460
461   return caps;
462 }
463
464 static GstCaps *
465 _gst_mss_stream_audio_caps_from_qualitylevel_xml (xmlNodePtr node)
466 {
467   GstCaps *caps;
468   GstStructure *structure;
469   gchar *fourcc = (gchar *) xmlGetProp (node, (xmlChar *) "FourCC");
470   gchar *channels = (gchar *) xmlGetProp (node, (xmlChar *) "Channels");
471   gchar *rate = (gchar *) xmlGetProp (node, (xmlChar *) "SamplingRate");
472   gchar *codec_data =
473       (gchar *) xmlGetProp (node, (xmlChar *) "CodecPrivateData");
474
475   if (!fourcc)                  /* sometimes the fourcc is omitted, we fallback to the Subtype in the StreamIndex node */
476     fourcc = (gchar *) xmlGetProp (node->parent, (xmlChar *) "Subtype");
477   if (!codec_data)
478     codec_data = (gchar *) xmlGetProp (node, (xmlChar *) "WaveFormatEx");
479
480   caps = _gst_mss_stream_audio_caps_from_fourcc (fourcc);
481   if (!caps)
482     goto end;
483
484   structure = gst_caps_get_structure (caps, 0);
485
486   if (channels)
487     gst_structure_set (structure, "channels", G_TYPE_INT, atoi (channels),
488         NULL);
489   if (rate)
490     gst_structure_set (structure, "rate", G_TYPE_INT, atoi (rate), NULL);
491
492   if (codec_data && strlen (codec_data)) {
493     GValue *value = g_new0 (GValue, 1);
494     g_value_init (value, GST_TYPE_BUFFER);
495     gst_value_deserialize (value, (gchar *) codec_data);
496     gst_structure_take_value (structure, "codec_data", value);
497   }
498
499 end:
500   g_free (fourcc);
501   g_free (channels);
502   g_free (rate);
503   g_free (codec_data);
504
505   return caps;
506 }
507
508 void
509 gst_mss_stream_set_active (GstMssStream * stream, gboolean active)
510 {
511   stream->active = active;
512 }
513
514 guint64
515 gst_mss_stream_get_timescale (GstMssStream * stream)
516 {
517   gchar *timescale;
518   guint64 ts = DEFAULT_TIMESCALE;
519
520   timescale =
521       (gchar *) xmlGetProp (stream->xmlnode, (xmlChar *) MSS_PROP_TIMESCALE);
522   if (!timescale) {
523     timescale =
524         (gchar *) xmlGetProp (stream->xmlnode->parent,
525         (xmlChar *) MSS_PROP_TIMESCALE);
526   }
527
528   if (timescale) {
529     ts = strtoull (timescale, NULL, 10);
530     g_free (timescale);
531   }
532   return ts;
533 }
534
535 guint64
536 gst_mss_manifest_get_timescale (GstMssManifest * manifest)
537 {
538   gchar *timescale;
539   guint64 ts = DEFAULT_TIMESCALE;
540
541   timescale =
542       (gchar *) xmlGetProp (manifest->xmlrootnode,
543       (xmlChar *) MSS_PROP_TIMESCALE);
544   if (timescale) {
545     ts = strtoull (timescale, NULL, 10);
546     g_free (timescale);
547   }
548   return ts;
549 }
550
551 guint64
552 gst_mss_manifest_get_duration (GstMssManifest * manifest)
553 {
554   gchar *duration;
555   guint64 dur = -1;
556
557   duration =
558       (gchar *) xmlGetProp (manifest->xmlrootnode,
559       (xmlChar *) MSS_PROP_STREAM_DURATION);
560   if (duration) {
561     dur = strtoull (duration, NULL, 10);
562     g_free (duration);
563   }
564   return dur;
565 }
566
567
568 /**
569  * Gets the duration in nanoseconds
570  */
571 GstClockTime
572 gst_mss_manifest_get_gst_duration (GstMssManifest * manifest)
573 {
574   guint64 duration = -1;
575   guint64 timescale;
576   GstClockTime gstdur = GST_CLOCK_TIME_NONE;
577
578   duration = gst_mss_manifest_get_duration (manifest);
579   timescale = gst_mss_manifest_get_timescale (manifest);
580
581   if (duration != -1 && timescale != -1)
582     gstdur =
583         (GstClockTime) gst_util_uint64_scale_round (duration, GST_SECOND,
584         timescale);
585
586   return gstdur;
587 }
588
589 GstCaps *
590 gst_mss_stream_get_caps (GstMssStream * stream)
591 {
592   GstMssStreamType streamtype = gst_mss_stream_get_type (stream);
593   GstMssStreamQuality *qualitylevel = stream->current_quality->data;
594   GstCaps *caps = NULL;
595
596   if (streamtype == MSS_STREAM_TYPE_VIDEO)
597     caps =
598         _gst_mss_stream_video_caps_from_qualitylevel_xml
599         (qualitylevel->xmlnode);
600   else if (streamtype == MSS_STREAM_TYPE_AUDIO)
601     caps =
602         _gst_mss_stream_audio_caps_from_qualitylevel_xml
603         (qualitylevel->xmlnode);
604
605   return caps;
606 }
607
608 GstFlowReturn
609 gst_mss_stream_get_fragment_url (GstMssStream * stream, gchar ** url)
610 {
611   gchar *tmp;
612   gchar *start_time_str;
613   GstMssStreamFragment *fragment;
614   GstMssStreamQuality *quality = stream->current_quality->data;
615
616   g_return_val_if_fail (stream->active, GST_FLOW_ERROR);
617
618   if (stream->current_fragment == NULL) /* stream is over */
619     return GST_FLOW_UNEXPECTED;
620
621   fragment = stream->current_fragment->data;
622
623   start_time_str = g_strdup_printf ("%" G_GUINT64_FORMAT, fragment->time);
624
625   tmp = g_regex_replace_literal (stream->regex_bitrate, stream->url,
626       strlen (stream->url), 0, quality->bitrate_str, 0, NULL);
627   *url = g_regex_replace_literal (stream->regex_position, tmp,
628       strlen (tmp), 0, start_time_str, 0, NULL);
629
630   g_free (tmp);
631   g_free (start_time_str);
632   return GST_FLOW_OK;
633 }
634
635 GstClockTime
636 gst_mss_stream_get_fragment_gst_timestamp (GstMssStream * stream)
637 {
638   guint64 time;
639   guint64 timescale;
640   GstMssStreamFragment *fragment;
641
642   g_return_val_if_fail (stream->active, GST_FLOW_ERROR);
643
644   if (!stream->current_fragment)
645     return GST_CLOCK_TIME_NONE;
646
647   fragment = stream->current_fragment->data;
648
649   time = fragment->time;
650   timescale = gst_mss_stream_get_timescale (stream);
651   return (GstClockTime) gst_util_uint64_scale_round (time, GST_SECOND,
652       timescale);
653 }
654
655 GstClockTime
656 gst_mss_stream_get_fragment_gst_duration (GstMssStream * stream)
657 {
658   guint64 dur;
659   guint64 timescale;
660   GstMssStreamFragment *fragment;
661
662   g_return_val_if_fail (stream->active, GST_FLOW_ERROR);
663
664   if (!stream->current_fragment)
665     return GST_CLOCK_TIME_NONE;
666
667   fragment = stream->current_fragment->data;
668
669   dur = fragment->duration;
670   timescale = gst_mss_stream_get_timescale (stream);
671   return (GstClockTime) gst_util_uint64_scale_round (dur, GST_SECOND,
672       timescale);
673 }
674
675 GstFlowReturn
676 gst_mss_stream_advance_fragment (GstMssStream * stream)
677 {
678   g_return_val_if_fail (stream->active, GST_FLOW_ERROR);
679
680   if (stream->current_fragment == NULL)
681     return GST_FLOW_UNEXPECTED;
682
683   stream->current_fragment = g_list_next (stream->current_fragment);
684   if (stream->current_fragment == NULL)
685     return GST_FLOW_UNEXPECTED;
686   return GST_FLOW_OK;
687 }
688
689 const gchar *
690 gst_mss_stream_type_name (GstMssStreamType streamtype)
691 {
692   switch (streamtype) {
693     case MSS_STREAM_TYPE_VIDEO:
694       return "video";
695     case MSS_STREAM_TYPE_AUDIO:
696       return "audio";
697     case MSS_STREAM_TYPE_UNKNOWN:
698     default:
699       return "unknown";
700   }
701 }
702
703 /**
704  * Seeks all streams to the fragment that contains the set time
705  *
706  * @time: time in nanoseconds
707  */
708 gboolean
709 gst_mss_manifest_seek (GstMssManifest * manifest, guint64 time)
710 {
711   gboolean ret = TRUE;
712   GSList *iter;
713
714   for (iter = manifest->streams; iter; iter = g_slist_next (iter)) {
715     ret = gst_mss_stream_seek (iter->data, time) & ret;
716   }
717
718   return ret;
719 }
720
721 /**
722  * Seeks this stream to the fragment that contains the sample at time
723  *
724  * @time: time in nanoseconds
725  */
726 gboolean
727 gst_mss_stream_seek (GstMssStream * stream, guint64 time)
728 {
729   GList *iter;
730   guint64 timescale;
731
732   timescale = gst_mss_stream_get_timescale (stream);
733   time = gst_util_uint64_scale_round (time, timescale, GST_SECOND);
734
735   for (iter = stream->fragments; iter; iter = g_list_next (iter)) {
736     GList *next = g_list_next (iter);
737     if (next) {
738       GstMssStreamFragment *fragment = next->data;
739
740       if (fragment->time > time) {
741         stream->current_fragment = iter;
742         break;
743       }
744     } else {
745       GstMssStreamFragment *fragment = iter->data;
746       if (fragment->time + fragment->duration > time) {
747         stream->current_fragment = iter;
748       } else {
749         stream->current_fragment = NULL;        /* EOS */
750       }
751       break;
752     }
753   }
754
755   return TRUE;
756 }