Merge branch 'master' into 0.11
[platform/upstream/gstreamer.git] / gst / realmedia / rmdemux.c
1 /* GStreamer RealMedia demuxer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2003> David A. Schleef <ds@schleef.org>
4  * Copyright (C) <2004> Stephane Loeuillet <gstreamer@leroutier.net>
5  * Copyright (C) <2005> Owen Fraser-Green <owen@discobabe.net>
6  * Copyright (C) <2005> Michael Smith <fluendo.com>
7  * Copyright (C) <2006> Wim Taymans <wim@fluendo.com>
8  * Copyright (C) <2006> Tim-Philipp Müller <tim centricular net>
9  * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Library General Public License for more details.
20  *
21  * You should have received a copy of the GNU Library General Public
22  * License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  * Boston, MA 02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #  include "config.h"
29 #endif
30
31 #include "rmdemux.h"
32 #include "rmutils.h"
33
34 #include <string.h>
35 #include <ctype.h>
36
37 #define RMDEMUX_GUINT32_GET(a)  GST_READ_UINT32_BE(a)
38 #define RMDEMUX_GUINT16_GET(a)  GST_READ_UINT16_BE(a)
39 #define RMDEMUX_FOURCC_GET(a)   GST_READ_UINT32_LE(a)
40 #define HEADER_SIZE 10
41 #define DATA_SIZE 8
42
43 #define MAX_FRAGS 256
44
45 static const guint8 sipr_subpk_size[4] = { 29, 19, 37, 20 };
46
47 typedef struct _GstRMDemuxIndex GstRMDemuxIndex;
48
49 struct _GstRMDemuxStream
50 {
51   guint32 subtype;
52   guint32 fourcc;
53   guint32 subformat;
54   guint32 format;
55
56   int id;
57   GstPad *pad;
58   GstFlowReturn last_flow;
59   gboolean discont;
60   int timescale;
61
62   int sample_index;
63   GstRMDemuxIndex *index;
64   int index_length;
65   gint framerate_numerator;
66   gint framerate_denominator;
67   guint32 seek_offset;
68
69   guint16 width;
70   guint16 height;
71   guint16 flavor;
72   guint16 rate;                 /* samplerate         */
73   guint16 n_channels;           /* channels           */
74   guint16 sample_width;         /* bits_per_sample    */
75   guint16 leaf_size;            /* subpacket_size     */
76   guint32 packet_size;          /* coded_frame_size   */
77   guint16 version;
78   guint32 extra_data_size;      /* codec_data_length  */
79   guint8 *extra_data;           /* extras             */
80   guint32 bitrate;
81
82   gboolean needs_descrambling;
83   guint subpackets_needed;      /* subpackets needed for descrambling    */
84   GPtrArray *subpackets;        /* array containing subpacket GstBuffers */
85
86   /* Variables needed for fixing timestamps. */
87   GstClockTime next_ts, last_ts;
88   guint16 next_seq, last_seq;
89
90   gint frag_seqnum;
91   gint frag_subseq;
92   guint frag_length;
93   guint frag_current;
94   guint frag_count;
95   guint frag_offset[MAX_FRAGS];
96   GstAdapter *adapter;
97
98   GstTagList *pending_tags;
99 };
100
101 struct _GstRMDemuxIndex
102 {
103   guint32 offset;
104   GstClockTime timestamp;
105 };
106
107 static GstStaticPadTemplate gst_rmdemux_sink_template =
108 GST_STATIC_PAD_TEMPLATE ("sink",
109     GST_PAD_SINK,
110     GST_PAD_ALWAYS,
111     GST_STATIC_CAPS ("application/vnd.rn-realmedia")
112     );
113
114 static GstStaticPadTemplate gst_rmdemux_videosrc_template =
115 GST_STATIC_PAD_TEMPLATE ("video_%02d",
116     GST_PAD_SRC,
117     GST_PAD_SOMETIMES,
118     GST_STATIC_CAPS_ANY);
119
120 static GstStaticPadTemplate gst_rmdemux_audiosrc_template =
121 GST_STATIC_PAD_TEMPLATE ("audio_%02d",
122     GST_PAD_SRC,
123     GST_PAD_SOMETIMES,
124     GST_STATIC_CAPS_ANY);
125
126 GST_DEBUG_CATEGORY_STATIC (rmdemux_debug);
127 #define GST_CAT_DEFAULT rmdemux_debug
128
129 static GstElementClass *parent_class = NULL;
130
131 static void gst_rmdemux_class_init (GstRMDemuxClass * klass);
132 static void gst_rmdemux_base_init (GstRMDemuxClass * klass);
133 static void gst_rmdemux_init (GstRMDemux * rmdemux);
134 static void gst_rmdemux_finalize (GObject * object);
135 static GstStateChangeReturn gst_rmdemux_change_state (GstElement * element,
136     GstStateChange transition);
137 static GstFlowReturn gst_rmdemux_chain (GstPad * pad, GstBuffer * buffer);
138 static void gst_rmdemux_loop (GstPad * pad);
139 static gboolean gst_rmdemux_sink_activate (GstPad * sinkpad);
140 static gboolean gst_rmdemux_sink_activate_push (GstPad * sinkpad,
141     gboolean active);
142 static gboolean gst_rmdemux_sink_activate_pull (GstPad * sinkpad,
143     gboolean active);
144 static gboolean gst_rmdemux_sink_event (GstPad * pad, GstEvent * event);
145 static gboolean gst_rmdemux_src_event (GstPad * pad, GstEvent * event);
146 static void gst_rmdemux_send_event (GstRMDemux * rmdemux, GstEvent * event);
147 static const GstQueryType *gst_rmdemux_src_query_types (GstPad * pad);
148 static gboolean gst_rmdemux_src_query (GstPad * pad, GstQuery * query);
149 static gboolean gst_rmdemux_perform_seek (GstRMDemux * rmdemux,
150     GstEvent * event);
151
152 static void gst_rmdemux_parse__rmf (GstRMDemux * rmdemux, const guint8 * data,
153     int length);
154 static void gst_rmdemux_parse_prop (GstRMDemux * rmdemux, const guint8 * data,
155     int length);
156 static void gst_rmdemux_parse_mdpr (GstRMDemux * rmdemux,
157     const guint8 * data, int length);
158 static guint gst_rmdemux_parse_indx (GstRMDemux * rmdemux, const guint8 * data,
159     int length);
160 static void gst_rmdemux_parse_data (GstRMDemux * rmdemux, const guint8 * data,
161     int length);
162 static void gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data,
163     int length);
164 static GstFlowReturn gst_rmdemux_parse_packet (GstRMDemux * rmdemux,
165     GstBuffer * in, guint16 version);
166 static void gst_rmdemux_parse_indx_data (GstRMDemux * rmdemux,
167     const guint8 * data, int length);
168 static void gst_rmdemux_stream_clear_cached_subpackets (GstRMDemux * rmdemux,
169     GstRMDemuxStream * stream);
170 static GstRMDemuxStream *gst_rmdemux_get_stream_by_id (GstRMDemux * rmdemux,
171     int id);
172
173 static GType
174 gst_rmdemux_get_type (void)
175 {
176   static GType rmdemux_type = 0;
177
178   if (!rmdemux_type) {
179     static const GTypeInfo rmdemux_info = {
180       sizeof (GstRMDemuxClass),
181       (GBaseInitFunc) gst_rmdemux_base_init, NULL,
182       (GClassInitFunc) gst_rmdemux_class_init,
183       NULL, NULL, sizeof (GstRMDemux), 0,
184       (GInstanceInitFunc) gst_rmdemux_init,
185     };
186
187     rmdemux_type =
188         g_type_register_static (GST_TYPE_ELEMENT, "GstRMDemux", &rmdemux_info,
189         0);
190   }
191   return rmdemux_type;
192 }
193
194 static void
195 gst_rmdemux_base_init (GstRMDemuxClass * klass)
196 {
197   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
198
199   gst_element_class_add_pad_template (element_class,
200       gst_static_pad_template_get (&gst_rmdemux_sink_template));
201   gst_element_class_add_pad_template (element_class,
202       gst_static_pad_template_get (&gst_rmdemux_videosrc_template));
203   gst_element_class_add_pad_template (element_class,
204       gst_static_pad_template_get (&gst_rmdemux_audiosrc_template));
205   gst_element_class_set_details_simple (element_class, "RealMedia Demuxer",
206       "Codec/Demuxer",
207       "Demultiplex a RealMedia file into audio and video streams",
208       "David Schleef <ds@schleef.org>");
209 }
210
211 static void
212 gst_rmdemux_class_init (GstRMDemuxClass * klass)
213 {
214   GObjectClass *gobject_class;
215   GstElementClass *gstelement_class;
216
217   gobject_class = (GObjectClass *) klass;
218   gstelement_class = (GstElementClass *) klass;
219
220   parent_class = g_type_class_peek_parent (klass);
221
222   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rmdemux_change_state);
223
224   GST_DEBUG_CATEGORY_INIT (rmdemux_debug, "rmdemux",
225       0, "Demuxer for Realmedia streams");
226
227   gobject_class->finalize = gst_rmdemux_finalize;
228 }
229
230 static void
231 gst_rmdemux_finalize (GObject * object)
232 {
233   GstRMDemux *rmdemux = GST_RMDEMUX (object);
234
235   if (rmdemux->adapter) {
236     g_object_unref (rmdemux->adapter);
237     rmdemux->adapter = NULL;
238   }
239
240   GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
241 }
242
243 static void
244 gst_rmdemux_init (GstRMDemux * rmdemux)
245 {
246   rmdemux->sinkpad =
247       gst_pad_new_from_static_template (&gst_rmdemux_sink_template, "sink");
248   gst_pad_set_event_function (rmdemux->sinkpad,
249       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_event));
250   gst_pad_set_chain_function (rmdemux->sinkpad,
251       GST_DEBUG_FUNCPTR (gst_rmdemux_chain));
252   gst_pad_set_activate_function (rmdemux->sinkpad,
253       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate));
254   gst_pad_set_activatepull_function (rmdemux->sinkpad,
255       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate_pull));
256   gst_pad_set_activatepush_function (rmdemux->sinkpad,
257       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate_push));
258
259   gst_element_add_pad (GST_ELEMENT (rmdemux), rmdemux->sinkpad);
260
261   rmdemux->adapter = gst_adapter_new ();
262   rmdemux->first_ts = GST_CLOCK_TIME_NONE;
263   rmdemux->base_ts = GST_CLOCK_TIME_NONE;
264   rmdemux->need_newsegment = TRUE;
265
266   gst_rm_utils_run_tests ();
267 }
268
269 static gboolean
270 gst_rmdemux_sink_event (GstPad * pad, GstEvent * event)
271 {
272   GstRMDemux *rmdemux;
273   gboolean ret;
274
275   rmdemux = GST_RMDEMUX (gst_pad_get_parent (pad));
276
277   GST_LOG_OBJECT (pad, "%s event", GST_EVENT_TYPE_NAME (event));
278
279   switch (GST_EVENT_TYPE (event)) {
280     case GST_EVENT_NEWSEGMENT:
281       gst_event_unref (event);
282       ret = TRUE;
283       break;
284     default:
285       ret = gst_pad_event_default (pad, event);
286       break;
287   }
288
289   gst_object_unref (rmdemux);
290   return ret;
291 }
292
293 static gboolean
294 gst_rmdemux_src_event (GstPad * pad, GstEvent * event)
295 {
296   gboolean ret = TRUE;
297
298   GstRMDemux *rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
299
300   GST_LOG_OBJECT (rmdemux, "handling src event");
301
302   switch (GST_EVENT_TYPE (event)) {
303     case GST_EVENT_SEEK:
304     {
305       gboolean running;
306
307       GST_LOG_OBJECT (rmdemux, "Event on src: SEEK");
308       /* can't seek if we are not seekable, FIXME could pass the
309        * seek query upstream after converting it to bytes using
310        * the average bitrate of the stream. */
311       if (!rmdemux->seekable) {
312         ret = FALSE;
313         GST_DEBUG ("seek on non seekable stream");
314         goto done_unref;
315       }
316
317       GST_OBJECT_LOCK (rmdemux);
318       /* check if we can do the seek now */
319       running = rmdemux->running;
320       GST_OBJECT_UNLOCK (rmdemux);
321
322       /* now do the seek */
323       if (running) {
324         ret = gst_rmdemux_perform_seek (rmdemux, event);
325       } else
326         ret = TRUE;
327
328       gst_event_unref (event);
329       break;
330     }
331     default:
332       GST_LOG_OBJECT (rmdemux, "Event on src: type=%d", GST_EVENT_TYPE (event));
333       ret = gst_pad_event_default (pad, event);
334       break;
335   }
336
337   return ret;
338
339 done_unref:
340   GST_DEBUG ("error handling event");
341   gst_event_unref (event);
342   return ret;
343 }
344
345 /* Validate that this looks like a reasonable point to seek to */
346 static gboolean
347 gst_rmdemux_validate_offset (GstRMDemux * rmdemux)
348 {
349   GstBuffer *buffer;
350   GstFlowReturn flowret;
351   guint16 version, length;
352   gboolean ret = TRUE;
353
354   flowret = gst_pad_pull_range (rmdemux->sinkpad, rmdemux->offset, 4, &buffer);
355
356   if (flowret != GST_FLOW_OK) {
357     GST_DEBUG_OBJECT (rmdemux, "Failed to pull data at offset %d",
358         rmdemux->offset);
359     return FALSE;
360   }
361   /* TODO: Can we also be seeking to a 'DATA' chunk header? Check this.
362    * Also, for the case we currently handle, can we check any more? It's pretty
363    * sucky to not be validating a little more heavily than this... */
364   /* This should now be the start of a data packet header. That begins with
365    * a 2-byte 'version' field, which has to be 0 or 1, then a length. I'm not
366    * certain what values are valid for length, but it must always be at least
367    * 4 bytes, and we can check that it won't take us past our known total size
368    */
369
370   version = RMDEMUX_GUINT16_GET (GST_BUFFER_DATA (buffer));
371   if (version != 0 && version != 1) {
372     GST_DEBUG_OBJECT (rmdemux, "Expected version 0 or 1, got %d",
373         (int) version);
374     ret = FALSE;
375   }
376
377   length = RMDEMUX_GUINT16_GET (GST_BUFFER_DATA (buffer) + 2);
378   /* TODO: Also check against total stream length */
379   if (length < 4) {
380     GST_DEBUG_OBJECT (rmdemux, "Expected length >= 4, got %d", (int) length);
381     ret = FALSE;
382   }
383
384   if (ret) {
385     rmdemux->offset += 4;
386     gst_adapter_clear (rmdemux->adapter);
387     gst_adapter_push (rmdemux->adapter, buffer);
388   } else {
389     GST_WARNING_OBJECT (rmdemux, "Failed to validate seek offset at %d",
390         rmdemux->offset);
391   }
392
393   return ret;
394 }
395
396 static gboolean
397 find_seek_offset_bytes (GstRMDemux * rmdemux, guint target)
398 {
399   int i;
400   GSList *cur;
401   gboolean ret = FALSE;
402
403   for (cur = rmdemux->streams; cur; cur = cur->next) {
404     GstRMDemuxStream *stream = cur->data;
405
406     /* Search backwards through this stream's index until we find the first
407      * timestamp before our target time */
408     for (i = stream->index_length - 1; i >= 0; i--) {
409       if (stream->index[i].offset <= target) {
410         /* Set the seek_offset for the stream so we don't bother parsing it
411          * until we've passed that point */
412         stream->seek_offset = stream->index[i].offset;
413         rmdemux->offset = stream->index[i].offset;
414         ret = TRUE;
415         break;
416       }
417     }
418   }
419   return ret;
420 }
421
422 static gboolean
423 find_seek_offset_time (GstRMDemux * rmdemux, GstClockTime time)
424 {
425   int i, n_stream;
426   gboolean ret = FALSE;
427   GSList *cur;
428   GstClockTime earliest = GST_CLOCK_TIME_NONE;
429
430   n_stream = 0;
431   for (cur = rmdemux->streams; cur; cur = cur->next, n_stream++) {
432     GstRMDemuxStream *stream = cur->data;
433
434     /* Search backwards through this stream's index until we find the first
435      * timestamp before our target time */
436     for (i = stream->index_length - 1; i >= 0; i--) {
437       if (stream->index[i].timestamp <= time) {
438         /* Set the seek_offset for the stream so we don't bother parsing it
439          * until we've passed that point */
440         stream->seek_offset = stream->index[i].offset;
441
442         /* If it's also the earliest timestamp we've seen of all streams, then
443          * that's our target!
444          */
445         if (earliest == GST_CLOCK_TIME_NONE ||
446             stream->index[i].timestamp < earliest) {
447           earliest = stream->index[i].timestamp;
448           rmdemux->offset = stream->index[i].offset;
449           GST_DEBUG_OBJECT (rmdemux,
450               "We're looking for %" GST_TIME_FORMAT
451               " and we found that stream %d has the latest index at %"
452               GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start), n_stream,
453               GST_TIME_ARGS (earliest));
454         }
455
456         ret = TRUE;
457
458         break;
459       }
460     }
461     stream->discont = TRUE;
462   }
463   return ret;
464 }
465
466 static gboolean
467 gst_rmdemux_perform_seek (GstRMDemux * rmdemux, GstEvent * event)
468 {
469   gboolean validated;
470   gboolean ret = TRUE;
471   gboolean flush;
472   GstFormat format;
473   gdouble rate;
474   GstSeekFlags flags;
475   GstSeekType cur_type, stop_type;
476   gint64 cur, stop;
477   gboolean update;
478
479   if (event) {
480     GST_DEBUG_OBJECT (rmdemux, "seek with event");
481
482     gst_event_parse_seek (event, &rate, &format, &flags,
483         &cur_type, &cur, &stop_type, &stop);
484
485     /* we can only seek on time */
486     if (format != GST_FORMAT_TIME) {
487       GST_DEBUG_OBJECT (rmdemux, "can only seek on TIME");
488       goto error;
489     }
490     /* cannot yet do backwards playback */
491     if (rate <= 0.0) {
492       GST_DEBUG_OBJECT (rmdemux, "can only seek with positive rate, not %lf",
493           rate);
494       goto error;
495     }
496   } else {
497     GST_DEBUG_OBJECT (rmdemux, "seek without event");
498
499     flags = 0;
500     rate = 1.0;
501   }
502
503   GST_DEBUG_OBJECT (rmdemux, "seek, rate %g", rate);
504
505   flush = flags & GST_SEEK_FLAG_FLUSH;
506
507   /* first step is to unlock the streaming thread if it is
508    * blocked in a chain call, we do this by starting the flush. */
509   if (flush) {
510     gst_pad_push_event (rmdemux->sinkpad, gst_event_new_flush_start ());
511     gst_rmdemux_send_event (rmdemux, gst_event_new_flush_start ());
512   } else {
513     gst_pad_pause_task (rmdemux->sinkpad);
514   }
515
516   GST_LOG_OBJECT (rmdemux, "Done starting flushes");
517
518   /* now grab the stream lock so that streaming cannot continue, for
519    * non flushing seeks when the element is in PAUSED this could block
520    * forever. */
521   GST_PAD_STREAM_LOCK (rmdemux->sinkpad);
522
523   GST_LOG_OBJECT (rmdemux, "Took streamlock");
524
525   /* close current segment first */
526   if (rmdemux->segment_running && !flush) {
527     GstEvent *newseg;
528
529     newseg = gst_event_new_new_segment (TRUE, rmdemux->segment.rate,
530         GST_FORMAT_TIME, rmdemux->segment.start,
531         rmdemux->segment.last_stop, rmdemux->segment.time);
532
533     gst_rmdemux_send_event (rmdemux, newseg);
534   }
535
536   if (event) {
537     gst_segment_set_seek (&rmdemux->segment, rate, format, flags,
538         cur_type, cur, stop_type, stop, &update);
539   }
540
541   GST_DEBUG_OBJECT (rmdemux, "segment positions set to %" GST_TIME_FORMAT "-%"
542       GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start),
543       GST_TIME_ARGS (rmdemux->segment.stop));
544
545   /* we need to stop flushing on the sinkpad as we're going to use it
546    * next. We can do this as we have the STREAM lock now. */
547   gst_pad_push_event (rmdemux->sinkpad, gst_event_new_flush_stop ());
548
549   GST_LOG_OBJECT (rmdemux, "Pushed FLUSH_STOP event");
550
551   /* For each stream, find the first index offset equal to or before our seek 
552    * target. Of these, find the smallest offset. That's where we seek to.
553    *
554    * Then we pull 4 bytes from that offset, and validate that we've seeked to a
555    * what looks like a plausible packet.
556    * If that fails, restart, with the seek target set to one less than the
557    * offset we just tried. If we run out of places to try, treat that as a fatal
558    * error.
559    */
560   if (!find_seek_offset_time (rmdemux, rmdemux->segment.last_stop)) {
561     GST_LOG_OBJECT (rmdemux, "Failed to find seek offset by time");
562     ret = FALSE;
563     goto done;
564   }
565
566   GST_LOG_OBJECT (rmdemux, "Validating offset %u", rmdemux->offset);
567   validated = gst_rmdemux_validate_offset (rmdemux);
568   while (!validated) {
569     GST_INFO_OBJECT (rmdemux, "Failed to validate offset at %u",
570         rmdemux->offset);
571     if (!find_seek_offset_bytes (rmdemux, rmdemux->offset - 1)) {
572       ret = FALSE;
573       goto done;
574     }
575     validated = gst_rmdemux_validate_offset (rmdemux);
576   }
577
578   GST_LOG_OBJECT (rmdemux, "Found final offset. Excellent!");
579
580   /* now we have a new position, prepare for streaming again */
581   {
582     /* Reset the demuxer state */
583     rmdemux->state = RMDEMUX_STATE_DATA_PACKET;
584
585     if (flush)
586       gst_rmdemux_send_event (rmdemux, gst_event_new_flush_stop ());
587
588     /* must send newsegment event from streaming thread, so just set flag */
589     rmdemux->need_newsegment = TRUE;
590
591     /* notify start of new segment */
592     if (rmdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
593       gst_element_post_message (GST_ELEMENT_CAST (rmdemux),
594           gst_message_new_segment_start (GST_OBJECT_CAST (rmdemux),
595               GST_FORMAT_TIME, rmdemux->segment.last_stop));
596     }
597
598     /* restart our task since it might have been stopped when we did the 
599      * flush. */
600     gst_pad_start_task (rmdemux->sinkpad, (GstTaskFunction) gst_rmdemux_loop,
601         rmdemux->sinkpad);
602   }
603
604 done:
605   /* streaming can continue now */
606   GST_PAD_STREAM_UNLOCK (rmdemux->sinkpad);
607
608   return ret;
609
610 error:
611   {
612     GST_DEBUG_OBJECT (rmdemux, "seek failed");
613     return FALSE;
614   }
615 }
616
617
618 static gboolean
619 gst_rmdemux_src_query (GstPad * pad, GstQuery * query)
620 {
621   gboolean res = FALSE;
622   GstRMDemux *rmdemux;
623
624   rmdemux = GST_RMDEMUX (gst_pad_get_parent (pad));
625
626   switch (GST_QUERY_TYPE (query)) {
627     case GST_QUERY_POSITION:
628       GST_DEBUG_OBJECT (rmdemux, "Position query: no idea from demuxer!");
629       break;
630     case GST_QUERY_DURATION:{
631       GstFormat fmt;
632
633       gst_query_parse_duration (query, &fmt, NULL);
634       if (fmt == GST_FORMAT_TIME) {
635         GST_OBJECT_LOCK (rmdemux);
636         if (G_LIKELY (rmdemux->running)) {
637           gst_query_set_duration (query, GST_FORMAT_TIME, rmdemux->duration);
638           GST_DEBUG_OBJECT (rmdemux, "duration set to %" GST_TIME_FORMAT,
639               GST_TIME_ARGS (rmdemux->duration));
640           res = TRUE;
641         }
642         GST_OBJECT_UNLOCK (rmdemux);
643       }
644       break;
645     }
646     case GST_QUERY_SEEKING:{
647       GstFormat fmt;
648
649       gst_query_parse_seeking (query, &fmt, NULL, NULL, NULL);
650       if (fmt == GST_FORMAT_TIME) {
651         GST_OBJECT_LOCK (rmdemux);
652         if (G_LIKELY (rmdemux->running)) {
653           gst_query_set_seeking (query, GST_FORMAT_TIME, rmdemux->seekable,
654               0, rmdemux->duration);
655           res = TRUE;
656         }
657         GST_OBJECT_UNLOCK (rmdemux);
658       }
659       break;
660     }
661     default:
662       res = gst_pad_query_default (pad, query);
663       break;
664   }
665
666   gst_object_unref (rmdemux);
667   return res;
668 }
669
670 static const GstQueryType *
671 gst_rmdemux_src_query_types (GstPad * pad)
672 {
673   static const GstQueryType query_types[] = {
674     GST_QUERY_POSITION,
675     GST_QUERY_DURATION,
676     GST_QUERY_SEEKING,
677     0
678   };
679
680   return query_types;
681 }
682
683 static void
684 gst_rmdemux_reset (GstRMDemux * rmdemux)
685 {
686   GSList *cur;
687
688   GST_OBJECT_LOCK (rmdemux);
689   rmdemux->running = FALSE;
690   GST_OBJECT_UNLOCK (rmdemux);
691
692   for (cur = rmdemux->streams; cur; cur = cur->next) {
693     GstRMDemuxStream *stream = cur->data;
694
695     g_object_unref (stream->adapter);
696     gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
697     gst_element_remove_pad (GST_ELEMENT (rmdemux), stream->pad);
698     if (stream->pending_tags)
699       gst_tag_list_free (stream->pending_tags);
700     if (stream->subpackets)
701       g_ptr_array_free (stream->subpackets, TRUE);
702     g_free (stream->index);
703     g_free (stream);
704   }
705   g_slist_free (rmdemux->streams);
706   rmdemux->streams = NULL;
707   rmdemux->n_audio_streams = 0;
708   rmdemux->n_video_streams = 0;
709
710   gst_adapter_clear (rmdemux->adapter);
711   rmdemux->state = RMDEMUX_STATE_HEADER;
712   rmdemux->have_pads = FALSE;
713
714   gst_segment_init (&rmdemux->segment, GST_FORMAT_UNDEFINED);
715   rmdemux->first_ts = GST_CLOCK_TIME_NONE;
716   rmdemux->base_ts = GST_CLOCK_TIME_NONE;
717   rmdemux->need_newsegment = TRUE;
718 }
719
720 static GstStateChangeReturn
721 gst_rmdemux_change_state (GstElement * element, GstStateChange transition)
722 {
723   GstRMDemux *rmdemux = GST_RMDEMUX (element);
724   GstStateChangeReturn res;
725
726   switch (transition) {
727     case GST_STATE_CHANGE_NULL_TO_READY:
728       break;
729     case GST_STATE_CHANGE_READY_TO_PAUSED:
730       rmdemux->state = RMDEMUX_STATE_HEADER;
731       rmdemux->have_pads = FALSE;
732       gst_segment_init (&rmdemux->segment, GST_FORMAT_TIME);
733       rmdemux->running = FALSE;
734       break;
735     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
736       break;
737     default:
738       break;
739   }
740
741   res = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
742
743   switch (transition) {
744     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
745       break;
746     case GST_STATE_CHANGE_PAUSED_TO_READY:{
747       gst_rmdemux_reset (rmdemux);
748       break;
749     }
750     case GST_STATE_CHANGE_READY_TO_NULL:
751       break;
752     default:
753       break;
754   }
755
756   return res;
757 }
758
759 /* this function is called when the pad is activated and should start
760  * processing data.
761  *
762  * We check if we can do random access to decide if we work push or
763  * pull based.
764  */
765 static gboolean
766 gst_rmdemux_sink_activate (GstPad * sinkpad)
767 {
768   if (gst_pad_check_pull_range (sinkpad)) {
769     return gst_pad_activate_pull (sinkpad, TRUE);
770   } else {
771     return gst_pad_activate_push (sinkpad, TRUE);
772   }
773 }
774
775 /* this function gets called when we activate ourselves in push mode.
776  * We cannot seek (ourselves) in the stream */
777 static gboolean
778 gst_rmdemux_sink_activate_push (GstPad * pad, gboolean active)
779 {
780   GstRMDemux *rmdemux;
781
782   rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
783
784   GST_DEBUG_OBJECT (rmdemux, "activate_push");
785
786   rmdemux->seekable = FALSE;
787
788   return TRUE;
789 }
790
791 /* this function gets called when we activate ourselves in pull mode.
792  * We can perform  random access to the resource and we start a task
793  * to start reading */
794 static gboolean
795 gst_rmdemux_sink_activate_pull (GstPad * pad, gboolean active)
796 {
797   GstRMDemux *rmdemux;
798
799   rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
800
801   GST_DEBUG_OBJECT (rmdemux, "activate_pull");
802
803   if (active) {
804     rmdemux->seekable = TRUE;
805     rmdemux->offset = 0;
806     rmdemux->loop_state = RMDEMUX_LOOP_STATE_HEADER;
807     rmdemux->data_offset = G_MAXUINT;
808
809     return gst_pad_start_task (pad, (GstTaskFunction) gst_rmdemux_loop, pad);
810   } else {
811     return gst_pad_stop_task (pad);
812   }
813 }
814
815 /* random access mode - just pass over to our chain function */
816 static void
817 gst_rmdemux_loop (GstPad * pad)
818 {
819   GstRMDemux *rmdemux;
820   GstBuffer *buffer;
821   GstFlowReturn ret = GST_FLOW_OK;
822   guint size;
823
824   rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
825
826   GST_LOG_OBJECT (rmdemux, "loop with state=%d and offset=0x%x",
827       rmdemux->loop_state, rmdemux->offset);
828
829   switch (rmdemux->state) {
830     case RMDEMUX_STATE_HEADER:
831       size = HEADER_SIZE;
832       break;
833     case RMDEMUX_STATE_HEADER_DATA:
834       size = DATA_SIZE;
835       break;
836     case RMDEMUX_STATE_DATA_PACKET:
837       size = rmdemux->avg_packet_size;
838       break;
839     case RMDEMUX_STATE_EOS:
840       GST_LOG_OBJECT (rmdemux, "At EOS, pausing task");
841       ret = GST_FLOW_UNEXPECTED;
842       goto need_pause;
843     default:
844       GST_LOG_OBJECT (rmdemux, "Default: requires %d bytes (state is %d)",
845           (int) rmdemux->size, rmdemux->state);
846       size = rmdemux->size;
847   }
848
849   ret = gst_pad_pull_range (pad, rmdemux->offset, size, &buffer);
850   if (ret != GST_FLOW_OK) {
851     if (rmdemux->offset == rmdemux->index_offset) {
852       /* The index isn't available so forget about it */
853       rmdemux->loop_state = RMDEMUX_LOOP_STATE_DATA;
854       rmdemux->offset = rmdemux->data_offset;
855       GST_OBJECT_LOCK (rmdemux);
856       rmdemux->running = TRUE;
857       rmdemux->seekable = FALSE;
858       GST_OBJECT_UNLOCK (rmdemux);
859       return;
860     } else {
861       GST_DEBUG_OBJECT (rmdemux, "Unable to pull %d bytes at offset 0x%08x "
862           "(pull_range returned flow %s, state is %d)", (gint) size,
863           rmdemux->offset, gst_flow_get_name (ret), GST_STATE (rmdemux));
864       goto need_pause;
865     }
866   }
867
868   size = GST_BUFFER_SIZE (buffer);
869
870   /* Defer to the chain function */
871   ret = gst_rmdemux_chain (pad, buffer);
872   if (ret != GST_FLOW_OK) {
873     GST_DEBUG_OBJECT (rmdemux, "Chain flow failed at offset 0x%08x",
874         rmdemux->offset);
875     goto need_pause;
876   }
877
878   rmdemux->offset += size;
879
880   switch (rmdemux->loop_state) {
881     case RMDEMUX_LOOP_STATE_HEADER:
882       if (rmdemux->offset >= rmdemux->data_offset) {
883         /* It's the end of the header */
884         rmdemux->loop_state = RMDEMUX_LOOP_STATE_INDEX;
885         rmdemux->offset = rmdemux->index_offset;
886       }
887       break;
888     case RMDEMUX_LOOP_STATE_INDEX:
889       if (rmdemux->state == RMDEMUX_STATE_HEADER) {
890         if (rmdemux->index_offset == 0) {
891           /* We've read the last index */
892           rmdemux->loop_state = RMDEMUX_LOOP_STATE_DATA;
893           rmdemux->offset = rmdemux->data_offset;
894           GST_OBJECT_LOCK (rmdemux);
895           rmdemux->running = TRUE;
896           GST_OBJECT_UNLOCK (rmdemux);
897         } else {
898           /* Get the next index */
899           rmdemux->offset = rmdemux->index_offset;
900         }
901       }
902       break;
903     case RMDEMUX_LOOP_STATE_DATA:
904       break;
905   }
906
907   return;
908
909   /* ERRORS */
910 need_pause:
911   {
912     const gchar *reason = gst_flow_get_name (ret);
913
914     GST_LOG_OBJECT (rmdemux, "pausing task, reason %s", reason);
915     rmdemux->segment_running = FALSE;
916     gst_pad_pause_task (rmdemux->sinkpad);
917
918     if (ret == GST_FLOW_UNEXPECTED) {
919       /* perform EOS logic */
920       if (rmdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
921         gint64 stop;
922
923         /* for segment playback we need to post when (in stream time)
924          * we stopped, this is either stop (when set) or the duration. */
925         if ((stop = rmdemux->segment.stop) == -1)
926           stop = rmdemux->segment.duration;
927
928         GST_LOG_OBJECT (rmdemux, "Sending segment done, at end of segment");
929         gst_element_post_message (GST_ELEMENT (rmdemux),
930             gst_message_new_segment_done (GST_OBJECT (rmdemux),
931                 GST_FORMAT_TIME, stop));
932       } else {
933         /* normal playback, send EOS to all linked pads */
934         GST_LOG_OBJECT (rmdemux, "Sending EOS, at end of stream");
935         gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
936       }
937     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_UNEXPECTED) {
938       GST_ELEMENT_ERROR (rmdemux, STREAM, FAILED,
939           (NULL), ("stream stopped, reason %s", reason));
940       gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
941     }
942     return;
943   }
944 }
945
946 static gboolean
947 gst_rmdemux_fourcc_isplausible (guint32 fourcc)
948 {
949   int i;
950
951   for (i = 0; i < 4; i++) {
952     if (!isprint ((int) ((unsigned char *) (&fourcc))[i])) {
953       return FALSE;
954     }
955   }
956   return TRUE;
957 }
958
959 static GstFlowReturn
960 gst_rmdemux_chain (GstPad * pad, GstBuffer * buffer)
961 {
962   GstFlowReturn ret = GST_FLOW_OK;
963   const guint8 *data;
964   guint16 version;
965   guint avail;
966
967   GstRMDemux *rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
968
969   if (rmdemux->base_ts == -1) {
970     rmdemux->base_ts = GST_BUFFER_TIMESTAMP (buffer);
971     GST_LOG_OBJECT (rmdemux, "base_ts %" GST_TIME_FORMAT,
972         GST_TIME_ARGS (rmdemux->base_ts));
973   }
974
975   gst_adapter_push (rmdemux->adapter, buffer);
976
977   GST_LOG_OBJECT (rmdemux, "Chaining buffer of size %d",
978       GST_BUFFER_SIZE (buffer));
979
980   while (TRUE) {
981     avail = gst_adapter_available (rmdemux->adapter);
982
983     GST_LOG_OBJECT (rmdemux, "looping in chain, avail %u", avail);
984     switch (rmdemux->state) {
985       case RMDEMUX_STATE_HEADER:
986       {
987         if (gst_adapter_available (rmdemux->adapter) < HEADER_SIZE)
988           goto unlock;
989
990         data = gst_adapter_peek (rmdemux->adapter, HEADER_SIZE);
991
992         rmdemux->object_id = RMDEMUX_FOURCC_GET (data + 0);
993         rmdemux->size = RMDEMUX_GUINT32_GET (data + 4) - HEADER_SIZE;
994         rmdemux->object_version = RMDEMUX_GUINT16_GET (data + 8);
995
996         /* Sanity-check. We assume that the FOURCC is printable ASCII */
997         if (!gst_rmdemux_fourcc_isplausible (rmdemux->object_id)) {
998           /* Failed. Remain in HEADER state, try again... We flush only 
999            * the actual FOURCC, not the entire header, because we could 
1000            * need to resync anywhere at all... really, this should never 
1001            * happen. */
1002           GST_WARNING_OBJECT (rmdemux, "Bogus looking header, unprintable "
1003               "FOURCC");
1004           gst_adapter_flush (rmdemux->adapter, 4);
1005
1006           break;
1007         }
1008
1009         GST_LOG_OBJECT (rmdemux, "header found with object_id=%"
1010             GST_FOURCC_FORMAT
1011             " size=%08x object_version=%d",
1012             GST_FOURCC_ARGS (rmdemux->object_id), rmdemux->size,
1013             rmdemux->object_version);
1014
1015         gst_adapter_flush (rmdemux->adapter, HEADER_SIZE);
1016
1017         switch (rmdemux->object_id) {
1018           case GST_MAKE_FOURCC ('.', 'R', 'M', 'F'):
1019             rmdemux->state = RMDEMUX_STATE_HEADER_RMF;
1020             break;
1021           case GST_MAKE_FOURCC ('P', 'R', 'O', 'P'):
1022             rmdemux->state = RMDEMUX_STATE_HEADER_PROP;
1023             break;
1024           case GST_MAKE_FOURCC ('M', 'D', 'P', 'R'):
1025             rmdemux->state = RMDEMUX_STATE_HEADER_MDPR;
1026             break;
1027           case GST_MAKE_FOURCC ('I', 'N', 'D', 'X'):
1028             rmdemux->state = RMDEMUX_STATE_HEADER_INDX;
1029             break;
1030           case GST_MAKE_FOURCC ('D', 'A', 'T', 'A'):
1031             rmdemux->state = RMDEMUX_STATE_HEADER_DATA;
1032             break;
1033           case GST_MAKE_FOURCC ('C', 'O', 'N', 'T'):
1034             rmdemux->state = RMDEMUX_STATE_HEADER_CONT;
1035             break;
1036           default:
1037             rmdemux->state = RMDEMUX_STATE_HEADER_UNKNOWN;
1038             break;
1039         }
1040         break;
1041       }
1042       case RMDEMUX_STATE_HEADER_UNKNOWN:
1043       {
1044         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1045           goto unlock;
1046
1047         GST_WARNING_OBJECT (rmdemux, "Unknown object_id %" GST_FOURCC_FORMAT,
1048             GST_FOURCC_ARGS (rmdemux->object_id));
1049
1050         gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1051         rmdemux->state = RMDEMUX_STATE_HEADER;
1052         break;
1053       }
1054       case RMDEMUX_STATE_HEADER_RMF:
1055       {
1056         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1057           goto unlock;
1058
1059         if ((rmdemux->object_version == 0) || (rmdemux->object_version == 1)) {
1060           data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1061
1062           gst_rmdemux_parse__rmf (rmdemux, data, rmdemux->size);
1063         }
1064
1065         gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1066         rmdemux->state = RMDEMUX_STATE_HEADER;
1067         break;
1068       }
1069       case RMDEMUX_STATE_HEADER_PROP:
1070       {
1071         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1072           goto unlock;
1073         data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1074
1075         gst_rmdemux_parse_prop (rmdemux, data, rmdemux->size);
1076
1077         gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1078         rmdemux->state = RMDEMUX_STATE_HEADER;
1079         break;
1080       }
1081       case RMDEMUX_STATE_HEADER_MDPR:
1082       {
1083         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1084           goto unlock;
1085         data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1086
1087         gst_rmdemux_parse_mdpr (rmdemux, data, rmdemux->size);
1088
1089         gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1090         rmdemux->state = RMDEMUX_STATE_HEADER;
1091         break;
1092       }
1093       case RMDEMUX_STATE_HEADER_CONT:
1094       {
1095         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1096           goto unlock;
1097         data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1098
1099         gst_rmdemux_parse_cont (rmdemux, data, rmdemux->size);
1100
1101         gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1102         rmdemux->state = RMDEMUX_STATE_HEADER;
1103         break;
1104       }
1105       case RMDEMUX_STATE_HEADER_DATA:
1106       {
1107         /* If we haven't already done so then signal there are no more pads */
1108         if (!rmdemux->have_pads) {
1109           GST_LOG_OBJECT (rmdemux, "no more pads");
1110           gst_element_no_more_pads (GST_ELEMENT (rmdemux));
1111           rmdemux->have_pads = TRUE;
1112         }
1113
1114         /* The actual header is only 8 bytes */
1115         rmdemux->size = DATA_SIZE;
1116         GST_LOG_OBJECT (rmdemux, "data available %d",
1117             gst_adapter_available (rmdemux->adapter));
1118         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1119           goto unlock;
1120
1121         data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1122
1123         gst_rmdemux_parse_data (rmdemux, data, rmdemux->size);
1124
1125         gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1126
1127         rmdemux->state = RMDEMUX_STATE_DATA_PACKET;
1128         break;
1129       }
1130       case RMDEMUX_STATE_HEADER_INDX:
1131       {
1132         if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1133           goto unlock;
1134         data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1135
1136         rmdemux->size = gst_rmdemux_parse_indx (rmdemux, data, rmdemux->size);
1137
1138         /* Only flush the header */
1139         gst_adapter_flush (rmdemux->adapter, HEADER_SIZE);
1140
1141         rmdemux->state = RMDEMUX_STATE_INDX_DATA;
1142         break;
1143       }
1144       case RMDEMUX_STATE_INDX_DATA:
1145       {
1146         /* There's not always an data to get... */
1147         if (rmdemux->size > 0) {
1148           if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1149             goto unlock;
1150
1151           data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1152
1153           gst_rmdemux_parse_indx_data (rmdemux, data, rmdemux->size);
1154
1155           gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1156         }
1157
1158         rmdemux->state = RMDEMUX_STATE_HEADER;
1159         break;
1160       }
1161       case RMDEMUX_STATE_DATA_PACKET:
1162       {
1163         if (gst_adapter_available (rmdemux->adapter) < 2)
1164           goto unlock;
1165
1166         data = gst_adapter_peek (rmdemux->adapter, 2);
1167         version = RMDEMUX_GUINT16_GET (data);
1168         GST_LOG_OBJECT (rmdemux, "Data packet with version=%d", version);
1169
1170         if (version == 0 || version == 1) {
1171           guint16 length;
1172
1173           if (gst_adapter_available (rmdemux->adapter) < 4)
1174             goto unlock;
1175           data = gst_adapter_peek (rmdemux->adapter, 4);
1176
1177           length = RMDEMUX_GUINT16_GET (data + 2);
1178           GST_LOG_OBJECT (rmdemux, "Got length %d", length);
1179
1180           if (length < 4) {
1181             GST_LOG_OBJECT (rmdemux, "length too small, dropping");
1182             /* Invalid, just drop it */
1183             gst_adapter_flush (rmdemux->adapter, 4);
1184           } else {
1185             GstBuffer *buffer;
1186
1187             avail = gst_adapter_available (rmdemux->adapter);
1188             if (avail < length)
1189               goto unlock;
1190
1191             GST_LOG_OBJECT (rmdemux, "we have %u available and we needed %d",
1192                 avail, length);
1193
1194             /* flush version and length */
1195             gst_adapter_flush (rmdemux->adapter, 4);
1196             length -= 4;
1197
1198             buffer = gst_adapter_take_buffer (rmdemux->adapter, length);
1199
1200             ret = gst_rmdemux_parse_packet (rmdemux, buffer, version);
1201             rmdemux->chunk_index++;
1202           }
1203
1204           if (rmdemux->chunk_index == rmdemux->n_chunks || length == 0)
1205             rmdemux->state = RMDEMUX_STATE_HEADER;
1206         } else {
1207           /* Stream done */
1208           gst_adapter_flush (rmdemux->adapter, 2);
1209
1210           if (rmdemux->data_offset == 0) {
1211             GST_LOG_OBJECT (rmdemux,
1212                 "No further data, internal demux state EOS");
1213             rmdemux->state = RMDEMUX_STATE_EOS;
1214           } else
1215             rmdemux->state = RMDEMUX_STATE_HEADER;
1216         }
1217         break;
1218       }
1219       case RMDEMUX_STATE_EOS:
1220         gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
1221         goto unlock;
1222       default:
1223         GST_WARNING_OBJECT (rmdemux, "Unhandled state %d", rmdemux->state);
1224         goto unlock;
1225     }
1226   }
1227
1228 unlock:
1229   return ret;
1230 }
1231
1232 static GstRMDemuxStream *
1233 gst_rmdemux_get_stream_by_id (GstRMDemux * rmdemux, int id)
1234 {
1235   GSList *cur;
1236
1237   for (cur = rmdemux->streams; cur; cur = cur->next) {
1238     GstRMDemuxStream *stream = cur->data;
1239
1240     if (stream->id == id) {
1241       return stream;
1242     }
1243   }
1244
1245   return NULL;
1246 }
1247
1248 static void
1249 gst_rmdemux_send_event (GstRMDemux * rmdemux, GstEvent * event)
1250 {
1251   GSList *cur;
1252
1253   for (cur = rmdemux->streams; cur; cur = cur->next) {
1254     GstRMDemuxStream *stream = cur->data;
1255
1256     GST_DEBUG_OBJECT (rmdemux, "Pushing %s event on pad %s",
1257         GST_EVENT_TYPE_NAME (event), GST_PAD_NAME (stream->pad));
1258
1259     switch (GST_EVENT_TYPE (event)) {
1260       case GST_EVENT_FLUSH_STOP:
1261         stream->last_ts = -1;
1262         stream->next_ts = -1;
1263         stream->last_seq = -1;
1264         stream->next_seq = -1;
1265         stream->last_flow = GST_FLOW_OK;
1266         break;
1267       default:
1268         break;
1269     }
1270     gst_event_ref (event);
1271     gst_pad_push_event (stream->pad, event);
1272   }
1273   gst_event_unref (event);
1274 }
1275
1276 static void
1277 gst_rmdemux_add_stream (GstRMDemux * rmdemux, GstRMDemuxStream * stream)
1278 {
1279   GstCaps *stream_caps = NULL;
1280   const gchar *codec_tag = NULL;
1281   gchar *codec_name = NULL;
1282   int version = 0;
1283
1284   if (stream->subtype == GST_RMDEMUX_STREAM_VIDEO) {
1285     char *name = g_strdup_printf ("video_%02d", rmdemux->n_video_streams);
1286
1287     stream->pad =
1288         gst_pad_new_from_static_template (&gst_rmdemux_videosrc_template, name);
1289     g_free (name);
1290
1291     codec_tag = GST_TAG_VIDEO_CODEC;
1292
1293     switch (stream->fourcc) {
1294       case GST_RM_VDO_RV10:
1295         version = 1;
1296         break;
1297       case GST_RM_VDO_RV20:
1298         version = 2;
1299         break;
1300       case GST_RM_VDO_RV30:
1301         version = 3;
1302         break;
1303       case GST_RM_VDO_RV40:
1304         version = 4;
1305         break;
1306       default:
1307         stream_caps = gst_caps_new_simple ("video/x-unknown-fourcc",
1308             "fourcc", GST_TYPE_FOURCC, stream->fourcc, NULL);
1309         GST_WARNING_OBJECT (rmdemux,
1310             "Unknown video FOURCC code \"%" GST_FOURCC_FORMAT "\" (%08x)",
1311             GST_FOURCC_ARGS (stream->fourcc), stream->fourcc);
1312     }
1313
1314     if (version) {
1315       stream_caps =
1316           gst_caps_new_simple ("video/x-pn-realvideo", "rmversion", G_TYPE_INT,
1317           (int) version,
1318           "format", G_TYPE_INT,
1319           (int) stream->format,
1320           "subformat", G_TYPE_INT, (int) stream->subformat, NULL);
1321     }
1322
1323     if (stream_caps) {
1324       gst_caps_set_simple (stream_caps,
1325           "width", G_TYPE_INT, stream->width,
1326           "height", G_TYPE_INT, stream->height,
1327           "framerate", GST_TYPE_FRACTION, stream->framerate_numerator,
1328           stream->framerate_denominator, NULL);
1329     }
1330     rmdemux->n_video_streams++;
1331
1332   } else if (stream->subtype == GST_RMDEMUX_STREAM_AUDIO) {
1333     char *name = g_strdup_printf ("audio_%02d", rmdemux->n_audio_streams);
1334
1335     stream->pad =
1336         gst_pad_new_from_static_template (&gst_rmdemux_audiosrc_template, name);
1337     GST_LOG_OBJECT (rmdemux, "Created audio pad \"%s\"", name);
1338     g_free (name);
1339
1340     codec_tag = GST_TAG_AUDIO_CODEC;
1341
1342     switch (stream->fourcc) {
1343         /* Older RealAudio Codecs */
1344       case GST_RM_AUD_14_4:
1345         version = 1;
1346         break;
1347
1348       case GST_RM_AUD_28_8:
1349         version = 2;
1350         break;
1351
1352         /* DolbyNet (Dolby AC3, low bitrate) */
1353       case GST_RM_AUD_DNET:
1354         stream_caps =
1355             gst_caps_new_simple ("audio/x-ac3", "rate", G_TYPE_INT,
1356             (int) stream->rate, NULL);
1357         stream->needs_descrambling = TRUE;
1358         stream->subpackets_needed = 1;
1359         stream->subpackets = NULL;
1360         break;
1361
1362         /* MPEG-4 based */
1363       case GST_RM_AUD_RAAC:
1364       case GST_RM_AUD_RACP:
1365         stream_caps =
1366             gst_caps_new_simple ("audio/mpeg", "mpegversion", G_TYPE_INT,
1367             (int) 4, "framed", G_TYPE_BOOLEAN, TRUE, NULL);
1368         if (stream->extra_data_size > 0) {
1369           /* strip off an unknown byte in the extra data */
1370           stream->extra_data_size--;
1371           stream->extra_data++;
1372         }
1373         stream->needs_descrambling = TRUE;
1374         stream->subpackets_needed = 1;
1375         stream->subpackets = NULL;
1376         break;
1377
1378         /* Sony ATRAC3 */
1379       case GST_RM_AUD_ATRC:
1380         stream_caps = gst_caps_new_simple ("audio/x-vnd.sony.atrac3", NULL);
1381         stream->needs_descrambling = TRUE;
1382         stream->subpackets_needed = stream->height;
1383         stream->subpackets = NULL;
1384         break;
1385
1386         /* RealAudio G2 audio */
1387       case GST_RM_AUD_COOK:
1388         version = 8;
1389         stream->needs_descrambling = TRUE;
1390         stream->subpackets_needed = stream->height;
1391         stream->subpackets = NULL;
1392         break;
1393
1394         /* RALF is lossless */
1395       case GST_RM_AUD_RALF:
1396         GST_DEBUG_OBJECT (rmdemux, "RALF");
1397         stream_caps = gst_caps_new_simple ("audio/x-ralf-mpeg4-generic", NULL);
1398         break;
1399
1400       case GST_RM_AUD_SIPR:
1401
1402         if (stream->flavor > 3) {
1403           GST_WARNING_OBJECT (rmdemux, "bad SIPR flavor %d, freeing it",
1404               stream->flavor);
1405           g_free (stream);
1406           goto beach;
1407         }
1408
1409         GST_DEBUG_OBJECT (rmdemux, "SIPR");
1410         stream_caps = gst_caps_new_simple ("audio/x-sipro", NULL);
1411         stream->needs_descrambling = TRUE;
1412         stream->subpackets_needed = stream->height;
1413         stream->subpackets = NULL;
1414         stream->leaf_size = sipr_subpk_size[stream->flavor];
1415
1416         break;
1417
1418       default:
1419         stream_caps = gst_caps_new_simple ("video/x-unknown-fourcc",
1420             "fourcc", GST_TYPE_FOURCC, stream->fourcc, NULL);
1421         GST_WARNING_OBJECT (rmdemux,
1422             "Unknown audio FOURCC code \"%" GST_FOURCC_FORMAT "\" (%08x)",
1423             GST_FOURCC_ARGS (stream->fourcc), stream->fourcc);
1424         break;
1425     }
1426
1427     if (version) {
1428       stream_caps =
1429           gst_caps_new_simple ("audio/x-pn-realaudio", "raversion", G_TYPE_INT,
1430           (int) version, NULL);
1431     }
1432
1433     if (stream_caps) {
1434       gst_caps_set_simple (stream_caps,
1435           "flavor", G_TYPE_INT, (int) stream->flavor,
1436           "rate", G_TYPE_INT, (int) stream->rate,
1437           "channels", G_TYPE_INT, (int) stream->n_channels,
1438           "width", G_TYPE_INT, (int) stream->sample_width,
1439           "leaf_size", G_TYPE_INT, (int) stream->leaf_size,
1440           "packet_size", G_TYPE_INT, (int) stream->packet_size,
1441           "bitrate", G_TYPE_INT, (int) stream->bitrate,
1442           "height", G_TYPE_INT, (int) stream->height, NULL);
1443     }
1444     rmdemux->n_audio_streams++;
1445   } else {
1446     GST_WARNING_OBJECT (rmdemux, "not adding stream of type %d, freeing it",
1447         stream->subtype);
1448     g_free (stream);
1449     goto beach;
1450   }
1451
1452   GST_PAD_ELEMENT_PRIVATE (stream->pad) = stream;
1453   rmdemux->streams = g_slist_append (rmdemux->streams, stream);
1454   GST_LOG_OBJECT (rmdemux, "n_streams is now %d",
1455       g_slist_length (rmdemux->streams));
1456
1457   GST_LOG ("stream->pad = %p, stream_caps = %" GST_PTR_FORMAT, stream->pad,
1458       stream_caps);
1459
1460   if (stream->pad && stream_caps) {
1461
1462     GST_LOG_OBJECT (rmdemux, "%d bytes of extra data for stream %s",
1463         stream->extra_data_size, GST_PAD_NAME (stream->pad));
1464
1465     /* add codec_data if there is any */
1466     if (stream->extra_data_size > 0) {
1467       GstBuffer *buffer;
1468
1469       buffer = gst_buffer_new_and_alloc (stream->extra_data_size);
1470       memcpy (GST_BUFFER_DATA (buffer), stream->extra_data,
1471           stream->extra_data_size);
1472
1473       gst_caps_set_simple (stream_caps, "codec_data", GST_TYPE_BUFFER,
1474           buffer, NULL);
1475
1476       gst_buffer_unref (buffer);
1477     }
1478
1479     gst_pad_use_fixed_caps (stream->pad);
1480
1481     gst_pad_set_caps (stream->pad, stream_caps);
1482     gst_pad_set_event_function (stream->pad,
1483         GST_DEBUG_FUNCPTR (gst_rmdemux_src_event));
1484     gst_pad_set_query_type_function (stream->pad,
1485         GST_DEBUG_FUNCPTR (gst_rmdemux_src_query_types));
1486     gst_pad_set_query_function (stream->pad,
1487         GST_DEBUG_FUNCPTR (gst_rmdemux_src_query));
1488
1489     GST_DEBUG_OBJECT (rmdemux, "adding pad %s with caps %" GST_PTR_FORMAT
1490         ", stream_id=%d", GST_PAD_NAME (stream->pad), stream_caps, stream->id);
1491     gst_pad_set_active (stream->pad, TRUE);
1492     gst_element_add_pad (GST_ELEMENT_CAST (rmdemux), stream->pad);
1493
1494     codec_name = gst_pb_utils_get_codec_description (stream_caps);
1495
1496     /* save for later, we must send the tags after the newsegment event */
1497     if (codec_tag != NULL && codec_name != NULL) {
1498       if (stream->pending_tags == NULL)
1499         stream->pending_tags = gst_tag_list_new ();
1500       gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_KEEP,
1501           codec_tag, codec_name, NULL);
1502       g_free (codec_name);
1503     }
1504   }
1505
1506 beach:
1507
1508   if (stream_caps)
1509     gst_caps_unref (stream_caps);
1510 }
1511
1512 static int
1513 re_skip_pascal_string (const guint8 * ptr)
1514 {
1515   int length;
1516
1517   length = ptr[0];
1518
1519   return length + 1;
1520 }
1521
1522 static void
1523 gst_rmdemux_parse__rmf (GstRMDemux * rmdemux, const guint8 * data, int length)
1524 {
1525   GST_LOG_OBJECT (rmdemux, "file_version: %d", RMDEMUX_GUINT32_GET (data));
1526   GST_LOG_OBJECT (rmdemux, "num_headers: %d", RMDEMUX_GUINT32_GET (data + 4));
1527 }
1528
1529 static void
1530 gst_rmdemux_parse_prop (GstRMDemux * rmdemux, const guint8 * data, int length)
1531 {
1532   GST_LOG_OBJECT (rmdemux, "max bitrate: %d", RMDEMUX_GUINT32_GET (data));
1533   GST_LOG_OBJECT (rmdemux, "avg bitrate: %d", RMDEMUX_GUINT32_GET (data + 4));
1534   GST_LOG_OBJECT (rmdemux, "max packet size: %d",
1535       RMDEMUX_GUINT32_GET (data + 8));
1536   rmdemux->avg_packet_size = RMDEMUX_GUINT32_GET (data + 12);
1537   GST_LOG_OBJECT (rmdemux, "avg packet size: %d", rmdemux->avg_packet_size);
1538   rmdemux->num_packets = RMDEMUX_GUINT32_GET (data + 16);
1539   GST_LOG_OBJECT (rmdemux, "number of packets: %d", rmdemux->num_packets);
1540
1541   GST_LOG_OBJECT (rmdemux, "duration: %d", RMDEMUX_GUINT32_GET (data + 20));
1542   rmdemux->duration = RMDEMUX_GUINT32_GET (data + 20) * GST_MSECOND;
1543
1544   GST_LOG_OBJECT (rmdemux, "preroll: %d", RMDEMUX_GUINT32_GET (data + 24));
1545   rmdemux->index_offset = RMDEMUX_GUINT32_GET (data + 28);
1546   GST_LOG_OBJECT (rmdemux, "offset of INDX section: 0x%08x",
1547       rmdemux->index_offset);
1548   rmdemux->data_offset = RMDEMUX_GUINT32_GET (data + 32);
1549   GST_LOG_OBJECT (rmdemux, "offset of DATA section: 0x%08x",
1550       rmdemux->data_offset);
1551   GST_LOG_OBJECT (rmdemux, "n streams: %d", RMDEMUX_GUINT16_GET (data + 36));
1552   GST_LOG_OBJECT (rmdemux, "flags: 0x%04x", RMDEMUX_GUINT16_GET (data + 38));
1553 }
1554
1555 static void
1556 gst_rmdemux_parse_mdpr (GstRMDemux * rmdemux, const guint8 * data, int length)
1557 {
1558   GstRMDemuxStream *stream;
1559   char *stream1_type_string;
1560   char *stream2_type_string;
1561   guint str_len = 0;
1562   int stream_type;
1563   int offset;
1564   guint32 max_bitrate;
1565   guint32 avg_bitrate;
1566
1567   stream = g_new0 (GstRMDemuxStream, 1);
1568
1569   stream->id = RMDEMUX_GUINT16_GET (data);
1570   stream->index = NULL;
1571   stream->seek_offset = 0;
1572   stream->last_ts = -1;
1573   stream->next_ts = -1;
1574   stream->last_flow = GST_FLOW_OK;
1575   stream->discont = TRUE;
1576   stream->adapter = gst_adapter_new ();
1577   GST_LOG_OBJECT (rmdemux, "stream_number=%d", stream->id);
1578
1579   /* parse the bitrates */
1580   max_bitrate = RMDEMUX_GUINT32_GET (data + 2);
1581   avg_bitrate = RMDEMUX_GUINT32_GET (data + 6);
1582   stream->bitrate = avg_bitrate;
1583   GST_LOG_OBJECT (rmdemux, "Stream max bitrate=%u", max_bitrate);
1584   GST_LOG_OBJECT (rmdemux, "Stream avg bitrate=%u", avg_bitrate);
1585   if (max_bitrate != 0) {
1586     if (stream->pending_tags == NULL)
1587       stream->pending_tags = gst_tag_list_new ();
1588     gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE,
1589         GST_TAG_MAXIMUM_BITRATE, max_bitrate, NULL);
1590   }
1591   if (avg_bitrate != 0) {
1592     if (stream->pending_tags == NULL)
1593       stream->pending_tags = gst_tag_list_new ();
1594     gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE,
1595         GST_TAG_BITRATE, avg_bitrate, NULL);
1596   }
1597
1598   offset = 30;
1599   stream1_type_string = gst_rm_utils_read_string8 (data + offset,
1600       length - offset, &str_len);
1601   offset += str_len;
1602   stream2_type_string = gst_rm_utils_read_string8 (data + offset,
1603       length - offset, &str_len);
1604   offset += str_len;
1605
1606   /* stream1_type_string for audio and video stream is a "put_whatever_you_want" field :
1607    * observed values :
1608    * - "[The ]Video/Audio Stream" (File produced by an official Real encoder)
1609    * - "RealVideoPremierePlugIn-VIDEO/AUDIO" (File produced by Abobe Premiere)
1610    *
1611    * so, we should not rely on it to know which stream type it is
1612    */
1613
1614   GST_LOG_OBJECT (rmdemux, "stream type: %s", stream1_type_string);
1615   GST_LOG_OBJECT (rmdemux, "MIME type=%s", stream2_type_string);
1616
1617   if (strcmp (stream2_type_string, "video/x-pn-realvideo") == 0) {
1618     stream_type = GST_RMDEMUX_STREAM_VIDEO;
1619   } else if (strcmp (stream2_type_string,
1620           "video/x-pn-multirate-realvideo") == 0) {
1621     stream_type = GST_RMDEMUX_STREAM_VIDEO;
1622   } else if (strcmp (stream2_type_string, "audio/x-pn-realaudio") == 0) {
1623     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1624   } else if (strcmp (stream2_type_string,
1625           "audio/x-pn-multirate-realaudio") == 0) {
1626     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1627   } else if (strcmp (stream2_type_string,
1628           "audio/x-pn-multirate-realaudio-live") == 0) {
1629     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1630   } else if (strcmp (stream2_type_string, "audio/x-ralf-mpeg4-generic") == 0) {
1631     /* Another audio type found in the real testsuite */
1632     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1633   } else if (strcmp (stream1_type_string, "") == 0 &&
1634       strcmp (stream2_type_string, "logical-fileinfo") == 0) {
1635     stream_type = GST_RMDEMUX_STREAM_FILEINFO;
1636   } else {
1637     stream_type = GST_RMDEMUX_STREAM_UNKNOWN;
1638     GST_WARNING_OBJECT (rmdemux, "unknown stream type \"%s\",\"%s\"",
1639         stream1_type_string, stream2_type_string);
1640   }
1641   g_free (stream1_type_string);
1642   g_free (stream2_type_string);
1643
1644   offset += 4;
1645
1646   stream->subtype = stream_type;
1647   switch (stream_type) {
1648
1649     case GST_RMDEMUX_STREAM_VIDEO:
1650       /* RV10/RV20/RV30/RV40 => video/x-pn-realvideo, version=1,2,3,4 */
1651       stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 8);
1652       stream->width = RMDEMUX_GUINT16_GET (data + offset + 12);
1653       stream->height = RMDEMUX_GUINT16_GET (data + offset + 14);
1654       stream->rate = RMDEMUX_GUINT16_GET (data + offset + 16);
1655       stream->subformat = RMDEMUX_GUINT32_GET (data + offset + 26);
1656       stream->format = RMDEMUX_GUINT32_GET (data + offset + 30);
1657       stream->extra_data_size = length - (offset + 26);
1658       stream->extra_data = (guint8 *) data + offset + 26;
1659       /* Natural way to represent framerates here requires unsigned 32 bit
1660        * numerator, which we don't have. For the nasty case, approximate...
1661        */
1662       {
1663         guint32 numerator = RMDEMUX_GUINT16_GET (data + offset + 22) * 65536 +
1664             RMDEMUX_GUINT16_GET (data + offset + 24);
1665         if (numerator > G_MAXINT) {
1666           stream->framerate_numerator = (gint) (numerator >> 1);
1667           stream->framerate_denominator = 32768;
1668         } else {
1669           stream->framerate_numerator = (gint) numerator;
1670           stream->framerate_denominator = 65536;
1671         }
1672       }
1673
1674       GST_DEBUG_OBJECT (rmdemux,
1675           "Video stream with fourcc=%" GST_FOURCC_FORMAT
1676           " width=%d height=%d rate=%d framerate=%d/%d subformat=%x format=%x extra_data_size=%d",
1677           GST_FOURCC_ARGS (stream->fourcc), stream->width, stream->height,
1678           stream->rate, stream->framerate_numerator,
1679           stream->framerate_denominator, stream->subformat, stream->format,
1680           stream->extra_data_size);
1681       break;
1682     case GST_RMDEMUX_STREAM_AUDIO:{
1683       stream->version = RMDEMUX_GUINT16_GET (data + offset + 4);
1684       GST_INFO ("stream version = %u", stream->version);
1685       switch (stream->version) {
1686         case 3:
1687           stream->fourcc = GST_RM_AUD_14_4;
1688           stream->packet_size = 20;
1689           stream->rate = 8000;
1690           stream->n_channels = 1;
1691           stream->sample_width = 16;
1692           stream->flavor = 1;
1693           stream->leaf_size = 0;
1694           stream->height = 0;
1695           break;
1696         case 4:
1697           stream->flavor = RMDEMUX_GUINT16_GET (data + offset + 22);
1698           stream->packet_size = RMDEMUX_GUINT32_GET (data + offset + 24);
1699           /* stream->frame_size = RMDEMUX_GUINT32_GET (data + offset + 42); */
1700           stream->leaf_size = RMDEMUX_GUINT16_GET (data + offset + 44);
1701           stream->height = RMDEMUX_GUINT16_GET (data + offset + 40);
1702           stream->rate = RMDEMUX_GUINT16_GET (data + offset + 48);
1703           stream->sample_width = RMDEMUX_GUINT16_GET (data + offset + 52);
1704           stream->n_channels = RMDEMUX_GUINT16_GET (data + offset + 54);
1705           stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 62);
1706           stream->extra_data_size = RMDEMUX_GUINT32_GET (data + offset + 69);
1707           GST_DEBUG_OBJECT (rmdemux, "%u bytes of extra codec data",
1708               stream->extra_data_size);
1709           if (length - (offset + 73) >= stream->extra_data_size) {
1710             stream->extra_data = (guint8 *) data + offset + 73;
1711           } else {
1712             GST_WARNING_OBJECT (rmdemux, "codec data runs beyond MDPR chunk");
1713             stream->extra_data_size = 0;
1714           }
1715           break;
1716         case 5:
1717           stream->flavor = RMDEMUX_GUINT16_GET (data + offset + 22);
1718           stream->packet_size = RMDEMUX_GUINT32_GET (data + offset + 24);
1719           /* stream->frame_size = RMDEMUX_GUINT32_GET (data + offset + 42); */
1720           stream->leaf_size = RMDEMUX_GUINT16_GET (data + offset + 44);
1721           stream->height = RMDEMUX_GUINT16_GET (data + offset + 40);
1722           stream->rate = RMDEMUX_GUINT16_GET (data + offset + 54);
1723           stream->sample_width = RMDEMUX_GUINT16_GET (data + offset + 58);
1724           stream->n_channels = RMDEMUX_GUINT16_GET (data + offset + 60);
1725           stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 66);
1726           stream->extra_data_size = RMDEMUX_GUINT32_GET (data + offset + 74);
1727           GST_DEBUG_OBJECT (rmdemux, "%u bytes of extra codec data",
1728               stream->extra_data_size);
1729           if (length - (offset + 78) >= stream->extra_data_size) {
1730             stream->extra_data = (guint8 *) data + offset + 78;
1731           } else {
1732             GST_WARNING_OBJECT (rmdemux, "codec data runs beyond MDPR chunk");
1733             stream->extra_data_size = 0;
1734           }
1735           break;
1736         default:{
1737           GST_WARNING_OBJECT (rmdemux, "Unhandled audio stream version %d",
1738               stream->version);
1739           break;
1740         }
1741       }
1742       /*  14_4, 28_8, cook, dnet, sipr, raac, racp, ralf, atrc */
1743       GST_DEBUG_OBJECT (rmdemux,
1744           "Audio stream with rate=%d sample_width=%d n_channels=%d",
1745           stream->rate, stream->sample_width, stream->n_channels);
1746
1747       break;
1748     }
1749     case GST_RMDEMUX_STREAM_FILEINFO:
1750     {
1751       int element_nb;
1752
1753       /* Length of this section */
1754       GST_DEBUG_OBJECT (rmdemux, "length2: 0x%08x",
1755           RMDEMUX_GUINT32_GET (data + offset));
1756       offset += 4;
1757
1758       /* Unknown : 00 00 00 00 */
1759       offset += 4;
1760
1761       /* Number of variables that would follow (loop iterations) */
1762       element_nb = RMDEMUX_GUINT32_GET (data + offset);
1763       offset += 4;
1764
1765       while (element_nb) {
1766         /* Category Id : 00 00 00 XX 00 00 */
1767         offset += 6;
1768
1769         /* Variable Name */
1770         offset += re_skip_pascal_string (data + offset);
1771
1772         /* Variable Value Type */
1773         /*   00 00 00 00 00 => integer/boolean, preceded by length */
1774         /*   00 00 00 02 00 => pascal string, preceded by length, no trailing \0 */
1775         offset += 5;
1776
1777         /* Variable Value */
1778         offset += re_skip_pascal_string (data + offset);
1779
1780         element_nb--;
1781       }
1782     }
1783       break;
1784     case GST_RMDEMUX_STREAM_UNKNOWN:
1785     default:
1786       break;
1787   }
1788
1789   gst_rmdemux_add_stream (rmdemux, stream);
1790 }
1791
1792 static guint
1793 gst_rmdemux_parse_indx (GstRMDemux * rmdemux, const guint8 * data, int length)
1794 {
1795   int n;
1796   int id;
1797
1798   n = RMDEMUX_GUINT32_GET (data);
1799   id = RMDEMUX_GUINT16_GET (data + 4);
1800   rmdemux->index_offset = RMDEMUX_GUINT32_GET (data + 6);
1801
1802   GST_DEBUG_OBJECT (rmdemux, "Number of indices=%d Stream ID=%d length=%d", n,
1803       id, length);
1804
1805   /* Point to the next index_stream */
1806   rmdemux->index_stream = gst_rmdemux_get_stream_by_id (rmdemux, id);
1807
1808   /* Return the length of the index */
1809   return 14 * n;
1810 }
1811
1812 static void
1813 gst_rmdemux_parse_indx_data (GstRMDemux * rmdemux, const guint8 * data,
1814     int length)
1815 {
1816   int i;
1817   int n;
1818   GstRMDemuxIndex *index;
1819
1820   /* The number of index records */
1821   n = length / 14;
1822
1823   if (rmdemux->index_stream == NULL)
1824     return;
1825
1826   /* don't parse the index a second time when operating pull-based and
1827    * reaching the end of the file */
1828   if (rmdemux->index_stream->index_length > 0) {
1829     GST_DEBUG_OBJECT (rmdemux, "Already have an index for this stream");
1830     return;
1831   }
1832
1833   index = g_malloc (sizeof (GstRMDemuxIndex) * n);
1834   rmdemux->index_stream->index = index;
1835   rmdemux->index_stream->index_length = n;
1836
1837   for (i = 0; i < n; i++) {
1838     index[i].timestamp = RMDEMUX_GUINT32_GET (data + 2) * GST_MSECOND;
1839     index[i].offset = RMDEMUX_GUINT32_GET (data + 6);
1840
1841     GST_DEBUG_OBJECT (rmdemux, "Index found for timestamp=%f (at offset=%x)",
1842         gst_guint64_to_gdouble (index[i].timestamp) / GST_SECOND,
1843         index[i].offset);
1844     data += 14;
1845   }
1846 }
1847
1848 static void
1849 gst_rmdemux_parse_data (GstRMDemux * rmdemux, const guint8 * data, int length)
1850 {
1851   rmdemux->n_chunks = RMDEMUX_GUINT32_GET (data);
1852   rmdemux->data_offset = RMDEMUX_GUINT32_GET (data + 4);
1853   rmdemux->chunk_index = 0;
1854   GST_DEBUG_OBJECT (rmdemux, "Data chunk found with %d packets "
1855       "(next data at 0x%08x)", rmdemux->n_chunks, rmdemux->data_offset);
1856 }
1857
1858 static void
1859 gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data, int length)
1860 {
1861   GstTagList *tags;
1862
1863   tags = gst_rm_utils_read_tags (data, length, gst_rm_utils_read_string16);
1864   if (tags) {
1865     gst_element_found_tags (GST_ELEMENT (rmdemux), tags);
1866   }
1867 }
1868
1869 static GstFlowReturn
1870 gst_rmdemux_combine_flows (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
1871     GstFlowReturn ret)
1872 {
1873   GSList *cur;
1874
1875   /* store the value */
1876   stream->last_flow = ret;
1877
1878   /* if it's success we can return the value right away */
1879   if (ret == GST_FLOW_OK)
1880     goto done;
1881
1882   /* any other error that is not-linked can be returned right
1883    * away */
1884   if (ret != GST_FLOW_NOT_LINKED)
1885     goto done;
1886
1887   for (cur = rmdemux->streams; cur; cur = cur->next) {
1888     GstRMDemuxStream *ostream = cur->data;
1889
1890     ret = ostream->last_flow;
1891     /* some other return value (must be SUCCESS but we can return
1892      * other values as well) */
1893     if (ret != GST_FLOW_NOT_LINKED)
1894       goto done;
1895   }
1896   /* if we get here, all other pads were unlinked and we return
1897    * NOT_LINKED then */
1898 done:
1899   return ret;
1900 }
1901
1902 static void
1903 gst_rmdemux_stream_clear_cached_subpackets (GstRMDemux * rmdemux,
1904     GstRMDemuxStream * stream)
1905 {
1906   if (stream->subpackets == NULL || stream->subpackets->len == 0)
1907     return;
1908
1909   GST_DEBUG_OBJECT (rmdemux, "discarding %u previously collected subpackets",
1910       stream->subpackets->len);
1911   g_ptr_array_foreach (stream->subpackets, (GFunc) gst_mini_object_unref, NULL);
1912   g_ptr_array_set_size (stream->subpackets, 0);
1913 }
1914
1915 static GstFlowReturn
1916 gst_rmdemux_descramble_audio (GstRMDemux * rmdemux, GstRMDemuxStream * stream)
1917 {
1918   GstFlowReturn ret = GST_FLOW_ERROR;
1919   GstBuffer *outbuf;
1920   guint packet_size = stream->packet_size;
1921   guint height = stream->subpackets->len;
1922   guint leaf_size = stream->leaf_size;
1923   guint p, x;
1924
1925   g_assert (stream->height == height);
1926
1927   GST_LOG ("packet_size = %u, leaf_size = %u, height= %u", packet_size,
1928       leaf_size, height);
1929
1930   outbuf = gst_buffer_new_and_alloc (height * packet_size);
1931   gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
1932
1933   for (p = 0; p < height; ++p) {
1934     GstBuffer *b = g_ptr_array_index (stream->subpackets, p);
1935     guint8 *b_data = GST_BUFFER_DATA (b);
1936
1937     if (p == 0)
1938       GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (b);
1939
1940     for (x = 0; x < packet_size / leaf_size; ++x) {
1941       guint idx;
1942
1943       idx = height * x + ((height + 1) / 2) * (p % 2) + (p / 2);
1944       /* GST_LOG ("%3u => %3u", (height * p) + x, idx); */
1945       memcpy (GST_BUFFER_DATA (outbuf) + leaf_size * idx, b_data, leaf_size);
1946       b_data += leaf_size;
1947     }
1948   }
1949
1950   /* some decoders, such as realaudiodec, need to be fed in packet units */
1951   for (p = 0; p < height; ++p) {
1952     GstBuffer *subbuf;
1953
1954     subbuf = gst_buffer_create_sub (outbuf, p * packet_size, packet_size);
1955
1956     GST_LOG_OBJECT (rmdemux, "pushing buffer timestamp %" GST_TIME_FORMAT,
1957         GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (subbuf)));
1958
1959     if (stream->discont) {
1960       GST_BUFFER_FLAG_SET (subbuf, GST_BUFFER_FLAG_DISCONT);
1961       stream->discont = FALSE;
1962     }
1963
1964     gst_buffer_set_caps (subbuf, GST_PAD_CAPS (stream->pad));
1965     ret = gst_pad_push (stream->pad, subbuf);
1966     if (ret != GST_FLOW_OK)
1967       break;
1968   }
1969
1970   gst_buffer_unref (outbuf);
1971
1972   gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
1973
1974   return ret;
1975 }
1976
1977 static GstFlowReturn
1978 gst_rmdemux_descramble_dnet_audio (GstRMDemux * rmdemux,
1979     GstRMDemuxStream * stream)
1980 {
1981   GstBuffer *buf;
1982
1983   buf = g_ptr_array_index (stream->subpackets, 0);
1984   g_ptr_array_index (stream->subpackets, 0) = NULL;
1985   g_ptr_array_set_size (stream->subpackets, 0);
1986
1987   buf = gst_rm_utils_descramble_dnet_buffer (buf);
1988
1989   if (stream->discont) {
1990     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
1991     stream->discont = FALSE;
1992   }
1993   return gst_pad_push (stream->pad, buf);
1994 }
1995
1996 static GstFlowReturn
1997 gst_rmdemux_descramble_mp4a_audio (GstRMDemux * rmdemux,
1998     GstRMDemuxStream * stream)
1999 {
2000   GstFlowReturn res;
2001   GstBuffer *buf, *outbuf;
2002   guint frames, index, i;
2003   guint8 *data;
2004   GstClockTime timestamp;
2005
2006   res = GST_FLOW_OK;
2007
2008   buf = g_ptr_array_index (stream->subpackets, 0);
2009   g_ptr_array_index (stream->subpackets, 0) = NULL;
2010   g_ptr_array_set_size (stream->subpackets, 0);
2011
2012   data = GST_BUFFER_DATA (buf);
2013   timestamp = GST_BUFFER_TIMESTAMP (buf);
2014
2015   frames = (data[1] & 0xf0) >> 4;
2016   index = 2 * frames + 2;
2017
2018   for (i = 0; i < frames; i++) {
2019     guint len = (data[i * 2 + 2] << 8) | data[i * 2 + 3];
2020
2021     outbuf = gst_buffer_create_sub (buf, index, len);
2022     if (i == 0)
2023       GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
2024     gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
2025
2026     index += len;
2027
2028     if (stream->discont) {
2029       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
2030       stream->discont = FALSE;
2031     }
2032     res = gst_pad_push (stream->pad, outbuf);
2033     if (res != GST_FLOW_OK)
2034       break;
2035   }
2036   gst_buffer_unref (buf);
2037   return res;
2038 }
2039
2040 static GstFlowReturn
2041 gst_rmdemux_descramble_sipr_audio (GstRMDemux * rmdemux,
2042     GstRMDemuxStream * stream)
2043 {
2044   GstFlowReturn ret;
2045   GstBuffer *outbuf;
2046   guint packet_size = stream->packet_size;
2047   guint height = stream->subpackets->len;
2048   guint p;
2049
2050   g_assert (stream->height == height);
2051
2052   GST_LOG ("packet_size = %u, leaf_size = %u, height= %u", packet_size,
2053       stream->leaf_size, height);
2054
2055   outbuf = gst_buffer_new_and_alloc (height * packet_size);
2056   gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
2057
2058   for (p = 0; p < height; ++p) {
2059     GstBuffer *b = g_ptr_array_index (stream->subpackets, p);
2060     guint8 *b_data = GST_BUFFER_DATA (b);
2061
2062     if (p == 0)
2063       GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (b);
2064
2065     memcpy (GST_BUFFER_DATA (outbuf) + packet_size * p, b_data, packet_size);
2066   }
2067
2068   GST_LOG_OBJECT (rmdemux, "pushing buffer timestamp %" GST_TIME_FORMAT,
2069       GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)));
2070
2071   if (stream->discont) {
2072     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
2073     stream->discont = FALSE;
2074   }
2075
2076   outbuf = gst_rm_utils_descramble_sipr_buffer (outbuf);
2077
2078   gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
2079   ret = gst_pad_push (stream->pad, outbuf);
2080
2081   gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
2082
2083   return ret;
2084 }
2085
2086 static GstFlowReturn
2087 gst_rmdemux_handle_scrambled_packet (GstRMDemux * rmdemux,
2088     GstRMDemuxStream * stream, GstBuffer * buf, gboolean keyframe)
2089 {
2090   GstFlowReturn ret;
2091
2092   if (stream->subpackets == NULL)
2093     stream->subpackets = g_ptr_array_sized_new (stream->subpackets_needed);
2094
2095   GST_LOG ("Got subpacket %u/%u, len=%u, key=%d", stream->subpackets->len + 1,
2096       stream->subpackets_needed, GST_BUFFER_SIZE (buf), keyframe);
2097
2098   if (keyframe && stream->subpackets->len > 0) {
2099     gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
2100   }
2101
2102   g_ptr_array_add (stream->subpackets, buf);
2103
2104   if (stream->subpackets->len < stream->subpackets_needed)
2105     return GST_FLOW_OK;
2106
2107   g_assert (stream->subpackets->len >= 1);
2108
2109   switch (stream->fourcc) {
2110     case GST_RM_AUD_DNET:
2111       ret = gst_rmdemux_descramble_dnet_audio (rmdemux, stream);
2112       break;
2113     case GST_RM_AUD_COOK:
2114     case GST_RM_AUD_ATRC:
2115       ret = gst_rmdemux_descramble_audio (rmdemux, stream);
2116       break;
2117     case GST_RM_AUD_RAAC:
2118     case GST_RM_AUD_RACP:
2119       ret = gst_rmdemux_descramble_mp4a_audio (rmdemux, stream);
2120       break;
2121     case GST_RM_AUD_SIPR:
2122       ret = gst_rmdemux_descramble_sipr_audio (rmdemux, stream);
2123       break;
2124     default:
2125       g_assert_not_reached ();
2126   }
2127
2128   return ret;
2129 }
2130
2131 static GstClockTime
2132 gst_rmdemux_fix_timestamp (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2133     guint8 * data, GstClockTime timestamp)
2134 {
2135   guint8 frame_type;
2136   guint16 seq;
2137   GstClockTime ts = timestamp;
2138
2139   if (timestamp == GST_CLOCK_TIME_NONE)
2140     goto done;
2141
2142   /* only adjust when we have a stream with B frames */
2143   if (stream->format < 0x20200002)
2144     goto done;
2145
2146   /* Fix timestamp. */
2147   switch (stream->fourcc) {
2148     case GST_RM_VDO_RV10:
2149       goto done;
2150     case GST_RM_VDO_RV20:
2151     {
2152       /*
2153        * Bit  1- 2: frame type
2154        * Bit  3- 9: ?
2155        * Bit 10-22: sequence number
2156        * Bit 23-32: ?
2157        */
2158       frame_type = (data[0] >> 6) & 0x03;
2159       seq = ((data[1] & 0x7f) << 6) + ((data[2] & 0xfc) >> 2);
2160       break;
2161     }
2162     case GST_RM_VDO_RV30:
2163     {
2164       /*
2165        * Bit  1- 2: ?
2166        * Bit     3: skip packet if 1
2167        * Bit  4- 5: frame type
2168        * Bit  6-12: ?
2169        * Bit 13-25: sequence number
2170        * Bit 26-32: ?
2171        */
2172       frame_type = (data[0] >> 3) & 0x03;
2173       seq = ((data[1] & 0x0f) << 9) + (data[2] << 1) + ((data[3] & 0x80) >> 7);
2174       break;
2175     }
2176     case GST_RM_VDO_RV40:
2177     {
2178       /*
2179        * Bit     1: skip packet if 1
2180        * Bit  2- 3: frame type
2181        * Bit  4-13: ?
2182        * Bit 14-26: sequence number
2183        * Bit 27-32: ?
2184        */
2185       frame_type = (data[0] >> 5) & 0x03;
2186       seq = ((data[1] & 0x07) << 10) + (data[2] << 2) + ((data[3] & 0xc0) >> 6);
2187       break;
2188     }
2189     default:
2190       goto unknown_version;
2191   }
2192
2193   switch (frame_type) {
2194     case 0:
2195     case 1:
2196     {
2197       GST_LOG_OBJECT (rmdemux, "I frame %d", frame_type);
2198       /* I frame */
2199       if (stream->next_ts == -1)
2200         stream->next_ts = timestamp;
2201       else
2202         timestamp = stream->next_ts;
2203       stream->last_ts = stream->next_ts;
2204       stream->next_ts = ts;
2205       stream->last_seq = stream->next_seq;
2206       stream->next_seq = seq;
2207       break;
2208     }
2209     case 2:
2210     {
2211       GST_LOG_OBJECT (rmdemux, "P frame");
2212       /* P frame */
2213       timestamp = stream->last_ts = stream->next_ts;
2214       if (seq < stream->next_seq)
2215         stream->next_ts += (seq + 0x2000 - stream->next_seq) * GST_MSECOND;
2216       else
2217         stream->next_ts += (seq - stream->next_seq) * GST_MSECOND;
2218       stream->last_seq = stream->next_seq;
2219       stream->next_seq = seq;
2220       break;
2221     }
2222     case 3:
2223     {
2224       GST_LOG_OBJECT (rmdemux, "B frame");
2225       /* B frame */
2226       if (seq < stream->last_seq) {
2227         timestamp =
2228             (seq + 0x2000 - stream->last_seq) * GST_MSECOND + stream->last_ts;
2229       } else {
2230         timestamp = (seq - stream->last_seq) * GST_MSECOND + stream->last_ts;
2231       }
2232       break;
2233     }
2234     default:
2235       goto unknown_frame_type;
2236   }
2237
2238 done:
2239   GST_LOG_OBJECT (rmdemux,
2240       "timestamp %" GST_TIME_FORMAT " -> %" GST_TIME_FORMAT, GST_TIME_ARGS (ts),
2241       GST_TIME_ARGS (timestamp));
2242
2243   return timestamp;
2244
2245   /* Errors */
2246 unknown_version:
2247   {
2248     GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE,
2249         ("Unknown version: %i.", stream->version), (NULL));
2250     return GST_FLOW_ERROR;
2251   }
2252
2253 unknown_frame_type:
2254   {
2255     GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE, ("Unknown frame type %d.",
2256             frame_type), (NULL));
2257     return GST_FLOW_ERROR;
2258   }
2259 }
2260
2261 #define PARSE_NUMBER(data, size, number, label) \
2262 G_STMT_START {                                  \
2263   if (size < 2)                                 \
2264     goto label;                                 \
2265   number = GST_READ_UINT16_BE (data);           \
2266   if (!(number & 0xc000)) {                     \
2267     if (size < 4)                               \
2268       goto label;                               \
2269     number = GST_READ_UINT32_BE (data);         \
2270     data += 4;                                  \
2271     size -= 4;                                  \
2272   } else {                                      \
2273     number &= 0x3fff;                           \
2274     data += 2;                                  \
2275     size -= 2;                                  \
2276   }                                             \
2277 } G_STMT_END
2278
2279 static GstFlowReturn
2280 gst_rmdemux_parse_video_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2281     GstBuffer * in, guint offset, guint16 version,
2282     GstClockTime timestamp, gboolean key)
2283 {
2284   GstFlowReturn ret;
2285   const guint8 *data, *base;
2286   guint size;
2287
2288   base = GST_BUFFER_DATA (in);
2289   data = base + offset;
2290   size = GST_BUFFER_SIZE (in) - offset;
2291   /* if size <= 2, we want this method to return the same GstFlowReturn as it
2292    * was previously for that given stream. */
2293   ret = stream->last_flow;
2294
2295   while (size > 2) {
2296     guint8 pkg_header;
2297     guint pkg_offset;
2298     guint pkg_length;
2299     guint pkg_subseq = 0, pkg_seqnum = G_MAXUINT;
2300     guint fragment_size;
2301     GstBuffer *fragment;
2302
2303     pkg_header = *data++;
2304     size--;
2305
2306     /* packet header
2307      * bit 7: 1=last block in block chain
2308      * bit 6: 1=short header (only one block?)
2309      */
2310     if ((pkg_header & 0xc0) == 0x40) {
2311       /* skip unknown byte */
2312       data++;
2313       size--;
2314       pkg_offset = 0;
2315       pkg_length = size;
2316     } else {
2317       if ((pkg_header & 0x40) == 0) {
2318         pkg_subseq = (*data++) & 0x7f;
2319         size--;
2320       } else {
2321         pkg_subseq = 0;
2322       }
2323
2324       /* length */
2325       PARSE_NUMBER (data, size, pkg_length, not_enough_data);
2326
2327       /* offset */
2328       PARSE_NUMBER (data, size, pkg_offset, not_enough_data);
2329
2330       /* seqnum */
2331       if (size < 1)
2332         goto not_enough_data;
2333
2334       pkg_seqnum = *data++;
2335       size--;
2336     }
2337
2338     GST_DEBUG_OBJECT (rmdemux,
2339         "seq %d, subseq %d, offset %d, length %d, size %d, header %02x",
2340         pkg_seqnum, pkg_subseq, pkg_offset, pkg_length, size, pkg_header);
2341
2342     /* calc size of fragment */
2343     if ((pkg_header & 0xc0) == 0x80) {
2344       fragment_size = pkg_offset;
2345     } else {
2346       if ((pkg_header & 0xc0) == 0)
2347         fragment_size = size;
2348       else
2349         fragment_size = pkg_length;
2350     }
2351     GST_DEBUG_OBJECT (rmdemux, "fragment size %d", fragment_size);
2352
2353     /* get the fragment */
2354     fragment = gst_buffer_create_sub (in, data - base, fragment_size);
2355
2356     if (pkg_subseq == 1) {
2357       GST_DEBUG_OBJECT (rmdemux, "start new fragment");
2358       gst_adapter_clear (stream->adapter);
2359       stream->frag_current = 0;
2360       stream->frag_count = 0;
2361       stream->frag_length = pkg_length;
2362     } else if (pkg_subseq == 0) {
2363       GST_DEBUG_OBJECT (rmdemux, "non fragmented packet");
2364       stream->frag_current = 0;
2365       stream->frag_count = 0;
2366       stream->frag_length = fragment_size;
2367     }
2368
2369     /* put fragment in adapter */
2370     gst_adapter_push (stream->adapter, fragment);
2371     stream->frag_offset[stream->frag_count] = stream->frag_current;
2372     stream->frag_current += fragment_size;
2373     stream->frag_count++;
2374
2375     if (stream->frag_count > MAX_FRAGS)
2376       goto too_many_fragments;
2377
2378     GST_DEBUG_OBJECT (rmdemux, "stored fragment in adapter %d/%d",
2379         stream->frag_current, stream->frag_length);
2380
2381     /* flush fragment when complete */
2382     if (stream->frag_current >= stream->frag_length) {
2383       GstBuffer *out;
2384       guint8 *outdata;
2385       guint header_size;
2386       gint i, avail;
2387
2388       /* calculate header size, which is:
2389        * 1 byte for the number of fragments - 1
2390        * for each fragment:
2391        *   4 bytes 0x00000001 little endian
2392        *   4 bytes fragment offset
2393        *
2394        * This is also the matroska header for realvideo, the decoder needs the
2395        * fragment offsets, both in ffmpeg and real .so, so we just give it that
2396        * in front of the data.
2397        */
2398       header_size = 1 + (8 * (stream->frag_count));
2399
2400       GST_DEBUG_OBJECT (rmdemux,
2401           "fragmented completed. count %d, header_size %u", stream->frag_count,
2402           header_size);
2403
2404       avail = gst_adapter_available (stream->adapter);
2405
2406       out = gst_buffer_new_and_alloc (header_size + avail);
2407       outdata = GST_BUFFER_DATA (out);
2408
2409       /* create header */
2410       *outdata++ = stream->frag_count - 1;
2411       for (i = 0; i < stream->frag_count; i++) {
2412         GST_WRITE_UINT32_LE (outdata, 0x00000001);
2413         outdata += 4;
2414         GST_WRITE_UINT32_LE (outdata, stream->frag_offset[i]);
2415         outdata += 4;
2416       }
2417
2418       /* copy packet data after the header now */
2419       gst_adapter_copy (stream->adapter, outdata, 0, avail);
2420       gst_adapter_flush (stream->adapter, avail);
2421
2422       stream->frag_current = 0;
2423       stream->frag_count = 0;
2424       stream->frag_length = 0;
2425
2426       gst_buffer_set_caps (out, GST_PAD_CAPS (stream->pad));
2427
2428       if (timestamp != -1) {
2429         if (rmdemux->first_ts != -1 && timestamp > rmdemux->first_ts)
2430           timestamp -= rmdemux->first_ts;
2431         else
2432           timestamp = 0;
2433
2434         if (rmdemux->base_ts != -1)
2435           timestamp += rmdemux->base_ts;
2436       }
2437       timestamp =
2438           gst_rmdemux_fix_timestamp (rmdemux, stream, outdata, timestamp);
2439
2440       GST_BUFFER_TIMESTAMP (out) = timestamp;
2441
2442       GST_LOG_OBJECT (rmdemux, "pushing timestamp %" GST_TIME_FORMAT,
2443           GST_TIME_ARGS (timestamp));
2444
2445       if (stream->discont) {
2446         GST_BUFFER_FLAG_SET (out, GST_BUFFER_FLAG_DISCONT);
2447         stream->discont = FALSE;
2448       }
2449
2450       if (!key) {
2451         GST_BUFFER_FLAG_SET (out, GST_BUFFER_FLAG_DELTA_UNIT);
2452       }
2453
2454       ret = gst_pad_push (stream->pad, out);
2455       ret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2456       if (ret != GST_FLOW_OK)
2457         break;
2458
2459       timestamp = GST_CLOCK_TIME_NONE;
2460     }
2461     data += fragment_size;
2462     size -= fragment_size;
2463   }
2464   GST_DEBUG_OBJECT (rmdemux, "%d bytes left", size);
2465
2466   gst_buffer_unref (in);
2467
2468   return ret;
2469
2470   /* ERRORS */
2471 not_enough_data:
2472   {
2473     GST_ELEMENT_WARNING (rmdemux, STREAM, DECODE, ("Skipping bad packet."),
2474         (NULL));
2475     gst_buffer_unref (in);
2476     return GST_FLOW_OK;
2477   }
2478 too_many_fragments:
2479   {
2480     GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE,
2481         ("Got more fragments (%u) than can be handled (%u)",
2482             stream->frag_count, MAX_FRAGS), (NULL));
2483     gst_buffer_unref (in);
2484     return GST_FLOW_ERROR;
2485   }
2486 }
2487
2488 static GstFlowReturn
2489 gst_rmdemux_parse_audio_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2490     GstBuffer * in, guint offset, guint16 version,
2491     GstClockTime timestamp, gboolean key)
2492 {
2493   GstFlowReturn ret;
2494   GstBuffer *buffer;
2495   const guint8 *data;
2496   guint size;
2497
2498   data = GST_BUFFER_DATA (in) + offset;
2499   size = GST_BUFFER_SIZE (in) - offset;
2500
2501   buffer = gst_buffer_new_and_alloc (size);
2502   gst_buffer_set_caps (buffer, GST_PAD_CAPS (stream->pad));
2503
2504   memcpy (GST_BUFFER_DATA (buffer), (guint8 *) data, size);
2505
2506   if (rmdemux->first_ts != -1 && timestamp > rmdemux->first_ts)
2507     timestamp -= rmdemux->first_ts;
2508   else
2509     timestamp = 0;
2510
2511   if (rmdemux->base_ts != -1)
2512     timestamp += rmdemux->base_ts;
2513
2514   GST_BUFFER_TIMESTAMP (buffer) = timestamp;
2515
2516   if (stream->needs_descrambling) {
2517     GST_LOG_OBJECT (rmdemux, "descramble timestamp %" GST_TIME_FORMAT,
2518         GST_TIME_ARGS (timestamp));
2519     ret = gst_rmdemux_handle_scrambled_packet (rmdemux, stream, buffer, key);
2520   } else {
2521     GST_LOG_OBJECT (rmdemux,
2522         "Pushing buffer of size %d, timestamp %" GST_TIME_FORMAT "to pad %s",
2523         GST_BUFFER_SIZE (buffer), GST_TIME_ARGS (timestamp),
2524         GST_PAD_NAME (stream->pad));
2525
2526     if (stream->discont) {
2527       GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
2528       stream->discont = FALSE;
2529     }
2530     ret = gst_pad_push (stream->pad, buffer);
2531   }
2532
2533   gst_buffer_unref (in);
2534
2535   return ret;
2536 }
2537
2538 static GstFlowReturn
2539 gst_rmdemux_parse_packet (GstRMDemux * rmdemux, GstBuffer * in, guint16 version)
2540 {
2541   guint16 id;
2542   GstRMDemuxStream *stream;
2543   guint size;
2544   GstFlowReturn cret, ret;
2545   GstClockTime timestamp;
2546   gboolean key;
2547   guint8 *data, *base;
2548   guint8 flags;
2549   guint32 ts;
2550
2551   base = data = GST_BUFFER_DATA (in);
2552   size = GST_BUFFER_SIZE (in);
2553
2554   /* stream number */
2555   id = RMDEMUX_GUINT16_GET (data);
2556
2557   stream = gst_rmdemux_get_stream_by_id (rmdemux, id);
2558   if (!stream || !stream->pad)
2559     goto unknown_stream;
2560
2561   /* timestamp in Msec */
2562   ts = RMDEMUX_GUINT32_GET (data + 2);
2563   timestamp = ts * GST_MSECOND;
2564
2565   gst_segment_set_last_stop (&rmdemux->segment, GST_FORMAT_TIME, timestamp);
2566
2567   GST_LOG_OBJECT (rmdemux, "Parsing a packet for stream=%d, timestamp=%"
2568       GST_TIME_FORMAT ", size %u, version=%d, ts=%u", id,
2569       GST_TIME_ARGS (timestamp), size, version, ts);
2570
2571   if (rmdemux->first_ts == GST_CLOCK_TIME_NONE) {
2572     GST_DEBUG_OBJECT (rmdemux, "First timestamp: %" GST_TIME_FORMAT,
2573         GST_TIME_ARGS (timestamp));
2574     rmdemux->first_ts = timestamp;
2575   }
2576
2577   /* skip stream_id and timestamp */
2578   data += (2 + 4);
2579   size -= (2 + 4);
2580
2581   /* get flags */
2582   flags = GST_READ_UINT8 (data + 1);
2583
2584   data += 2;
2585   size -= 2;
2586
2587   /* version 1 has an extra byte */
2588   if (version == 1) {
2589     data += 1;
2590     size -= 1;
2591   }
2592   key = (flags & 0x02) != 0;
2593   GST_DEBUG_OBJECT (rmdemux, "flags %d, Keyframe %d", flags, key);
2594
2595   if (rmdemux->need_newsegment) {
2596     GstEvent *event;
2597
2598     event = gst_event_new_new_segment (FALSE, rmdemux->segment.rate,
2599         rmdemux->segment.format, rmdemux->segment.start,
2600         rmdemux->segment.stop, rmdemux->segment.time);
2601
2602     GST_DEBUG_OBJECT (rmdemux, "sending NEWSEGMENT event, segment.start= %"
2603         GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start));
2604
2605     gst_rmdemux_send_event (rmdemux, event);
2606     rmdemux->need_newsegment = FALSE;
2607   }
2608
2609   if (stream->pending_tags != NULL) {
2610     GST_LOG_OBJECT (stream->pad, "tags %" GST_PTR_FORMAT, stream->pending_tags);
2611     gst_element_found_tags_for_pad (GST_ELEMENT_CAST (rmdemux), stream->pad,
2612         stream->pending_tags);
2613     stream->pending_tags = NULL;
2614   }
2615
2616   if ((rmdemux->offset + size) <= stream->seek_offset) {
2617     GST_DEBUG_OBJECT (rmdemux,
2618         "Stream %d is skipping: seek_offset=%d, offset=%d, size=%u",
2619         stream->id, stream->seek_offset, rmdemux->offset, size);
2620     cret = GST_FLOW_OK;
2621     goto beach;
2622   }
2623
2624   /* do special headers */
2625   if (stream->subtype == GST_RMDEMUX_STREAM_VIDEO) {
2626     ret =
2627         gst_rmdemux_parse_video_packet (rmdemux, stream, in, data - base,
2628         version, timestamp, key);
2629   } else if (stream->subtype == GST_RMDEMUX_STREAM_AUDIO) {
2630     ret =
2631         gst_rmdemux_parse_audio_packet (rmdemux, stream, in, data - base,
2632         version, timestamp, key);
2633   } else
2634     ret = GST_FLOW_OK;
2635
2636   cret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2637
2638 beach:
2639   return cret;
2640
2641   /* ERRORS */
2642 unknown_stream:
2643   {
2644     GST_WARNING_OBJECT (rmdemux, "No stream for stream id %d in parsing "
2645         "data packet", id);
2646     return GST_FLOW_OK;
2647   }
2648 }
2649
2650 gboolean
2651 gst_rmdemux_plugin_init (GstPlugin * plugin)
2652 {
2653   return gst_element_register (plugin, "rmdemux",
2654       GST_RANK_PRIMARY, GST_TYPE_RMDEMUX);
2655 }