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