gst_element_class_set_details => gst_element_class_set_details_simple
[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 typedef struct _GstRMDemuxIndex GstRMDemuxIndex;
46
47 struct _GstRMDemuxStream
48 {
49   guint32 subtype;
50   guint32 fourcc;
51   guint32 subformat;
52   guint32 format;
53
54   int id;
55   GstPad *pad;
56   GstFlowReturn last_flow;
57   gboolean discont;
58   int timescale;
59
60   int sample_index;
61   GstRMDemuxIndex *index;
62   int index_length;
63   gint framerate_numerator;
64   gint framerate_denominator;
65   guint32 seek_offset;
66
67   guint16 width;
68   guint16 height;
69   guint16 flavor;
70   guint16 rate;                 /* samplerate         */
71   guint16 n_channels;           /* channels           */
72   guint16 sample_width;         /* bits_per_sample    */
73   guint16 leaf_size;            /* subpacket_size     */
74   guint32 packet_size;          /* coded_frame_size   */
75   guint16 version;
76   guint32 extra_data_size;      /* codec_data_length  */
77   guint8 *extra_data;           /* extras             */
78
79   gboolean needs_descrambling;
80   guint subpackets_needed;      /* subpackets needed for descrambling    */
81   GPtrArray *subpackets;        /* array containing subpacket GstBuffers */
82
83   /* Variables needed for fixing timestamps. */
84   GstClockTime next_ts, last_ts;
85   guint16 next_seq, last_seq;
86
87   gint frag_seqnum;
88   gint frag_subseq;
89   guint frag_length;
90   guint frag_current;
91   guint frag_count;
92   guint frag_offset[MAX_FRAGS];
93   GstAdapter *adapter;
94
95   GstTagList *pending_tags;
96 };
97
98 struct _GstRMDemuxIndex
99 {
100   guint32 offset;
101   GstClockTime timestamp;
102 };
103
104 static GstStaticPadTemplate gst_rmdemux_sink_template =
105 GST_STATIC_PAD_TEMPLATE ("sink",
106     GST_PAD_SINK,
107     GST_PAD_ALWAYS,
108     GST_STATIC_CAPS ("application/vnd.rn-realmedia")
109     );
110
111 static GstStaticPadTemplate gst_rmdemux_videosrc_template =
112 GST_STATIC_PAD_TEMPLATE ("video_%02d",
113     GST_PAD_SRC,
114     GST_PAD_SOMETIMES,
115     GST_STATIC_CAPS_ANY);
116
117 static GstStaticPadTemplate gst_rmdemux_audiosrc_template =
118 GST_STATIC_PAD_TEMPLATE ("audio_%02d",
119     GST_PAD_SRC,
120     GST_PAD_SOMETIMES,
121     GST_STATIC_CAPS_ANY);
122
123 GST_DEBUG_CATEGORY_STATIC (rmdemux_debug);
124 #define GST_CAT_DEFAULT rmdemux_debug
125
126 static GstElementClass *parent_class = NULL;
127
128 static void gst_rmdemux_class_init (GstRMDemuxClass * klass);
129 static void gst_rmdemux_base_init (GstRMDemuxClass * klass);
130 static void gst_rmdemux_init (GstRMDemux * rmdemux);
131 static void gst_rmdemux_finalize (GObject * object);
132 static GstStateChangeReturn gst_rmdemux_change_state (GstElement * element,
133     GstStateChange transition);
134 static GstFlowReturn gst_rmdemux_chain (GstPad * pad, GstBuffer * buffer);
135 static void gst_rmdemux_loop (GstPad * pad);
136 static gboolean gst_rmdemux_sink_activate (GstPad * sinkpad);
137 static gboolean gst_rmdemux_sink_activate_push (GstPad * sinkpad,
138     gboolean active);
139 static gboolean gst_rmdemux_sink_activate_pull (GstPad * sinkpad,
140     gboolean active);
141 static gboolean gst_rmdemux_sink_event (GstPad * pad, GstEvent * event);
142 static gboolean gst_rmdemux_src_event (GstPad * pad, GstEvent * event);
143 static void gst_rmdemux_send_event (GstRMDemux * rmdemux, GstEvent * event);
144 static const GstQueryType *gst_rmdemux_src_query_types (GstPad * pad);
145 static gboolean gst_rmdemux_src_query (GstPad * pad, GstQuery * query);
146 static gboolean gst_rmdemux_perform_seek (GstRMDemux * rmdemux,
147     GstEvent * event);
148
149 static void gst_rmdemux_parse__rmf (GstRMDemux * rmdemux, const guint8 * data,
150     int length);
151 static void gst_rmdemux_parse_prop (GstRMDemux * rmdemux, const guint8 * data,
152     int length);
153 static void gst_rmdemux_parse_mdpr (GstRMDemux * rmdemux,
154     const guint8 * data, int length);
155 static guint gst_rmdemux_parse_indx (GstRMDemux * rmdemux, const guint8 * data,
156     int length);
157 static void gst_rmdemux_parse_data (GstRMDemux * rmdemux, const guint8 * data,
158     int length);
159 static void gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data,
160     int length);
161 static GstFlowReturn gst_rmdemux_parse_packet (GstRMDemux * rmdemux,
162     GstBuffer * in, guint16 version);
163 static void gst_rmdemux_parse_indx_data (GstRMDemux * rmdemux,
164     const guint8 * data, int length);
165 static void gst_rmdemux_stream_clear_cached_subpackets (GstRMDemux * rmdemux,
166     GstRMDemuxStream * stream);
167 static GstRMDemuxStream *gst_rmdemux_get_stream_by_id (GstRMDemux * rmdemux,
168     int id);
169
170 static GType
171 gst_rmdemux_get_type (void)
172 {
173   static GType rmdemux_type = 0;
174
175   if (!rmdemux_type) {
176     static const GTypeInfo rmdemux_info = {
177       sizeof (GstRMDemuxClass),
178       (GBaseInitFunc) gst_rmdemux_base_init, NULL,
179       (GClassInitFunc) gst_rmdemux_class_init,
180       NULL, NULL, sizeof (GstRMDemux), 0,
181       (GInstanceInitFunc) gst_rmdemux_init,
182     };
183
184     rmdemux_type =
185         g_type_register_static (GST_TYPE_ELEMENT, "GstRMDemux", &rmdemux_info,
186         0);
187   }
188   return rmdemux_type;
189 }
190
191 static void
192 gst_rmdemux_base_init (GstRMDemuxClass * klass)
193 {
194   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
195
196   gst_element_class_add_pad_template (element_class,
197       gst_static_pad_template_get (&gst_rmdemux_sink_template));
198   gst_element_class_add_pad_template (element_class,
199       gst_static_pad_template_get (&gst_rmdemux_videosrc_template));
200   gst_element_class_add_pad_template (element_class,
201       gst_static_pad_template_get (&gst_rmdemux_audiosrc_template));
202   gst_element_class_set_details_simple (element_class, "RealMedia Demuxer",
203       "Codec/Demuxer",
204       "Demultiplex a RealMedia file into audio and video streams",
205       "David Schleef <ds@schleef.org>");
206 }
207
208 static void
209 gst_rmdemux_class_init (GstRMDemuxClass * klass)
210 {
211   GObjectClass *gobject_class;
212   GstElementClass *gstelement_class;
213
214   gobject_class = (GObjectClass *) klass;
215   gstelement_class = (GstElementClass *) klass;
216
217   parent_class = g_type_class_peek_parent (klass);
218
219   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rmdemux_change_state);
220
221   GST_DEBUG_CATEGORY_INIT (rmdemux_debug, "rmdemux",
222       0, "Demuxer for Realmedia streams");
223
224   gobject_class->finalize = gst_rmdemux_finalize;
225 }
226
227 static void
228 gst_rmdemux_finalize (GObject * object)
229 {
230   GstRMDemux *rmdemux = GST_RMDEMUX (object);
231
232   if (rmdemux->adapter) {
233     g_object_unref (rmdemux->adapter);
234     rmdemux->adapter = NULL;
235   }
236
237   GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
238 }
239
240 static void
241 gst_rmdemux_init (GstRMDemux * rmdemux)
242 {
243   rmdemux->sinkpad =
244       gst_pad_new_from_static_template (&gst_rmdemux_sink_template, "sink");
245   gst_pad_set_event_function (rmdemux->sinkpad,
246       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_event));
247   gst_pad_set_chain_function (rmdemux->sinkpad,
248       GST_DEBUG_FUNCPTR (gst_rmdemux_chain));
249   gst_pad_set_activate_function (rmdemux->sinkpad,
250       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate));
251   gst_pad_set_activatepull_function (rmdemux->sinkpad,
252       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate_pull));
253   gst_pad_set_activatepush_function (rmdemux->sinkpad,
254       GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate_push));
255
256   gst_element_add_pad (GST_ELEMENT (rmdemux), rmdemux->sinkpad);
257
258   rmdemux->adapter = gst_adapter_new ();
259   rmdemux->first_ts = GST_CLOCK_TIME_NONE;
260   rmdemux->base_ts = GST_CLOCK_TIME_NONE;
261   rmdemux->need_newsegment = TRUE;
262 }
263
264 static gboolean
265 gst_rmdemux_sink_event (GstPad * pad, GstEvent * event)
266 {
267   GstRMDemux *rmdemux;
268   gboolean ret;
269
270   rmdemux = GST_RMDEMUX (gst_pad_get_parent (pad));
271
272   GST_LOG_OBJECT (pad, "%s event", GST_EVENT_TYPE_NAME (event));
273
274   switch (GST_EVENT_TYPE (event)) {
275     case GST_EVENT_NEWSEGMENT:
276       gst_event_unref (event);
277       ret = TRUE;
278       break;
279     default:
280       ret = gst_pad_event_default (pad, event);
281       break;
282   }
283
284   gst_object_unref (rmdemux);
285   return ret;
286 }
287
288 static gboolean
289 gst_rmdemux_src_event (GstPad * pad, GstEvent * event)
290 {
291   gboolean ret = TRUE;
292
293   GstRMDemux *rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
294
295   GST_LOG_OBJECT (rmdemux, "handling src event");
296
297   switch (GST_EVENT_TYPE (event)) {
298     case GST_EVENT_SEEK:
299     {
300       gboolean running;
301
302       GST_LOG_OBJECT (rmdemux, "Event on src: SEEK");
303       /* can't seek if we are not seekable, FIXME could pass the
304        * seek query upstream after converting it to bytes using
305        * the average bitrate of the stream. */
306       if (!rmdemux->seekable) {
307         ret = FALSE;
308         GST_DEBUG ("seek on non seekable stream");
309         goto done_unref;
310       }
311
312       GST_OBJECT_LOCK (rmdemux);
313       /* check if we can do the seek now */
314       running = rmdemux->running;
315       GST_OBJECT_UNLOCK (rmdemux);
316
317       /* now do the seek */
318       if (running) {
319         ret = gst_rmdemux_perform_seek (rmdemux, event);
320       } else
321         ret = TRUE;
322
323       gst_event_unref (event);
324       break;
325     }
326     default:
327       GST_LOG_OBJECT (rmdemux, "Event on src: type=%d", GST_EVENT_TYPE (event));
328       ret = gst_pad_event_default (pad, event);
329       break;
330   }
331
332   return ret;
333
334 done_unref:
335   GST_DEBUG ("error handling event");
336   gst_event_unref (event);
337   return ret;
338 }
339
340 /* Validate that this looks like a reasonable point to seek to */
341 static gboolean
342 gst_rmdemux_validate_offset (GstRMDemux * rmdemux)
343 {
344   GstBuffer *buffer;
345   GstFlowReturn flowret;
346   guint16 version, length;
347   gboolean ret = TRUE;
348
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   version = RMDEMUX_GUINT16_GET (GST_BUFFER_DATA (buffer));
366   if (version != 0 && version != 1) {
367     GST_DEBUG_OBJECT (rmdemux, "Expected version 0 or 1, got %d",
368         (int) version);
369     ret = FALSE;
370   }
371
372   length = RMDEMUX_GUINT16_GET (GST_BUFFER_DATA (buffer) + 2);
373   /* TODO: Also check against total stream length */
374   if (length < 4) {
375     GST_DEBUG_OBJECT (rmdemux, "Expected length >= 4, got %d", (int) length);
376     ret = FALSE;
377   }
378
379   if (ret) {
380     rmdemux->offset += 4;
381     gst_adapter_clear (rmdemux->adapter);
382     gst_adapter_push (rmdemux->adapter, buffer);
383   } else {
384     GST_WARNING_OBJECT (rmdemux, "Failed to validate seek offset at %d",
385         rmdemux->offset);
386   }
387
388   return ret;
389 }
390
391 static gboolean
392 find_seek_offset_bytes (GstRMDemux * rmdemux, guint target)
393 {
394   int i;
395   GSList *cur;
396   gboolean ret = FALSE;
397
398   if (target < 0)
399     return 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   /* close current segment first */
524   if (rmdemux->segment_running && !flush) {
525     GstEvent *newseg;
526
527     newseg = gst_event_new_new_segment (TRUE, rmdemux->segment.rate,
528         GST_FORMAT_TIME, rmdemux->segment.start,
529         rmdemux->segment.last_stop, rmdemux->segment.time);
530
531     gst_rmdemux_send_event (rmdemux, newseg);
532   }
533
534   if (event) {
535     gst_segment_set_seek (&rmdemux->segment, rate, format, flags,
536         cur_type, cur, stop_type, stop, &update);
537   }
538
539   GST_DEBUG_OBJECT (rmdemux, "segment positions set to %" GST_TIME_FORMAT "-%"
540       GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start),
541       GST_TIME_ARGS (rmdemux->segment.stop));
542
543   /* we need to stop flushing on the sinkpad as we're going to use it
544    * next. We can do this as we have the STREAM lock now. */
545   gst_pad_push_event (rmdemux->sinkpad, gst_event_new_flush_stop ());
546
547   GST_LOG_OBJECT (rmdemux, "Pushed FLUSH_STOP event");
548
549   /* For each stream, find the first index offset equal to or before our seek 
550    * target. Of these, find the smallest offset. That's where we seek to.
551    *
552    * Then we pull 4 bytes from that offset, and validate that we've seeked to a
553    * what looks like a plausible packet.
554    * If that fails, restart, with the seek target set to one less than the
555    * offset we just tried. If we run out of places to try, treat that as a fatal
556    * error.
557    */
558   if (!find_seek_offset_time (rmdemux, rmdemux->segment.last_stop)) {
559     GST_LOG_OBJECT (rmdemux, "Failed to find seek offset by time");
560     ret = FALSE;
561     goto done;
562   }
563
564   GST_LOG_OBJECT (rmdemux, "Validating offset %u", rmdemux->offset);
565   validated = gst_rmdemux_validate_offset (rmdemux);
566   while (!validated) {
567     GST_INFO_OBJECT (rmdemux, "Failed to validate offset at %u",
568         rmdemux->offset);
569     if (!find_seek_offset_bytes (rmdemux, rmdemux->offset - 1)) {
570       ret = FALSE;
571       goto done;
572     }
573     validated = gst_rmdemux_validate_offset (rmdemux);
574   }
575
576   GST_LOG_OBJECT (rmdemux, "Found final offset. Excellent!");
577
578   /* now we have a new position, prepare for streaming again */
579   {
580     /* Reset the demuxer state */
581     rmdemux->state = RMDEMUX_STATE_DATA_PACKET;
582
583     if (flush)
584       gst_rmdemux_send_event (rmdemux, gst_event_new_flush_stop ());
585
586     /* must send newsegment event from streaming thread, so just set flag */
587     rmdemux->need_newsegment = TRUE;
588
589     /* notify start of new segment */
590     if (rmdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
591       gst_element_post_message (GST_ELEMENT_CAST (rmdemux),
592           gst_message_new_segment_start (GST_OBJECT_CAST (rmdemux),
593               GST_FORMAT_TIME, rmdemux->segment.last_stop));
594     }
595
596     /* restart our task since it might have been stopped when we did the 
597      * flush. */
598     gst_pad_start_task (rmdemux->sinkpad, (GstTaskFunction) gst_rmdemux_loop,
599         rmdemux->sinkpad);
600   }
601
602 done:
603   /* streaming can continue now */
604   GST_PAD_STREAM_UNLOCK (rmdemux->sinkpad);
605
606   return ret;
607
608 error:
609   {
610     GST_DEBUG_OBJECT (rmdemux, "seek failed");
611     return FALSE;
612   }
613 }
614
615
616 static gboolean
617 gst_rmdemux_src_query (GstPad * pad, GstQuery * query)
618 {
619   gboolean res = FALSE;
620   GstRMDemux *rmdemux;
621
622   rmdemux = GST_RMDEMUX (gst_pad_get_parent (pad));
623
624   switch (GST_QUERY_TYPE (query)) {
625     case GST_QUERY_POSITION:
626       GST_DEBUG_OBJECT (rmdemux, "Position query: no idea from demuxer!");
627       break;
628     case GST_QUERY_DURATION:{
629       GstFormat fmt;
630
631       gst_query_parse_duration (query, &fmt, NULL);
632       if (fmt == GST_FORMAT_TIME) {
633         GST_OBJECT_LOCK (rmdemux);
634         if (G_LIKELY (rmdemux->running)) {
635           gst_query_set_duration (query, GST_FORMAT_TIME, rmdemux->duration);
636           GST_DEBUG_OBJECT (rmdemux, "duration set to %" GST_TIME_FORMAT,
637               GST_TIME_ARGS (rmdemux->duration));
638           res = TRUE;
639         }
640         GST_OBJECT_UNLOCK (rmdemux);
641       }
642       break;
643     }
644     case GST_QUERY_SEEKING:{
645       GstFormat fmt;
646
647       gst_query_parse_seeking (query, &fmt, NULL, NULL, NULL);
648       if (fmt == GST_FORMAT_TIME) {
649         GST_OBJECT_LOCK (rmdemux);
650         if (G_LIKELY (rmdemux->running)) {
651           gst_query_set_seeking (query, GST_FORMAT_TIME, rmdemux->seekable,
652               0, rmdemux->duration);
653           res = TRUE;
654         }
655         GST_OBJECT_UNLOCK (rmdemux);
656       }
657       break;
658     }
659     default:
660       res = gst_pad_query_default (pad, query);
661       break;
662   }
663
664   gst_object_unref (rmdemux);
665   return res;
666 }
667
668 static const GstQueryType *
669 gst_rmdemux_src_query_types (GstPad * pad)
670 {
671   static const GstQueryType query_types[] = {
672     GST_QUERY_POSITION,
673     GST_QUERY_DURATION,
674     GST_QUERY_SEEKING,
675     0
676   };
677
678   return query_types;
679 }
680
681 static void
682 gst_rmdemux_reset (GstRMDemux * rmdemux)
683 {
684   GSList *cur;
685
686   GST_OBJECT_LOCK (rmdemux);
687   rmdemux->running = FALSE;
688   GST_OBJECT_UNLOCK (rmdemux);
689
690   for (cur = rmdemux->streams; cur; cur = cur->next) {
691     GstRMDemuxStream *stream = cur->data;
692
693     g_object_unref (stream->adapter);
694     gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
695     gst_element_remove_pad (GST_ELEMENT (rmdemux), stream->pad);
696     if (stream->pending_tags)
697       gst_tag_list_free (stream->pending_tags);
698     if (stream->subpackets)
699       g_ptr_array_free (stream->subpackets, TRUE);
700     g_free (stream->index);
701     g_free (stream);
702   }
703   g_slist_free (rmdemux->streams);
704   rmdemux->streams = NULL;
705   rmdemux->n_audio_streams = 0;
706   rmdemux->n_video_streams = 0;
707
708   gst_adapter_clear (rmdemux->adapter);
709   rmdemux->state = RMDEMUX_STATE_HEADER;
710   rmdemux->have_pads = FALSE;
711
712   gst_segment_init (&rmdemux->segment, GST_FORMAT_UNDEFINED);
713   rmdemux->first_ts = GST_CLOCK_TIME_NONE;
714   rmdemux->base_ts = GST_CLOCK_TIME_NONE;
715   rmdemux->need_newsegment = TRUE;
716 }
717
718 static GstStateChangeReturn
719 gst_rmdemux_change_state (GstElement * element, GstStateChange transition)
720 {
721   GstRMDemux *rmdemux = GST_RMDEMUX (element);
722   GstStateChangeReturn res;
723
724   switch (transition) {
725     case GST_STATE_CHANGE_NULL_TO_READY:
726       break;
727     case GST_STATE_CHANGE_READY_TO_PAUSED:
728       rmdemux->state = RMDEMUX_STATE_HEADER;
729       rmdemux->have_pads = FALSE;
730       gst_segment_init (&rmdemux->segment, GST_FORMAT_TIME);
731       rmdemux->running = FALSE;
732       break;
733     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
734       break;
735     default:
736       break;
737   }
738
739   res = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
740
741   switch (transition) {
742     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
743       break;
744     case GST_STATE_CHANGE_PAUSED_TO_READY:{
745       gst_rmdemux_reset (rmdemux);
746       break;
747     }
748     case GST_STATE_CHANGE_READY_TO_NULL:
749       break;
750     default:
751       break;
752   }
753
754   return res;
755 }
756
757 /* this function is called when the pad is activated and should start
758  * processing data.
759  *
760  * We check if we can do random access to decide if we work push or
761  * pull based.
762  */
763 static gboolean
764 gst_rmdemux_sink_activate (GstPad * sinkpad)
765 {
766   if (gst_pad_check_pull_range (sinkpad)) {
767     return gst_pad_activate_pull (sinkpad, TRUE);
768   } else {
769     return gst_pad_activate_push (sinkpad, TRUE);
770   }
771 }
772
773 /* this function gets called when we activate ourselves in push mode.
774  * We cannot seek (ourselves) in the stream */
775 static gboolean
776 gst_rmdemux_sink_activate_push (GstPad * pad, gboolean active)
777 {
778   GstRMDemux *rmdemux;
779
780   rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
781
782   GST_DEBUG_OBJECT (rmdemux, "activate_push");
783
784   rmdemux->seekable = FALSE;
785
786   return TRUE;
787 }
788
789 /* this function gets called when we activate ourselves in pull mode.
790  * We can perform  random access to the resource and we start a task
791  * to start reading */
792 static gboolean
793 gst_rmdemux_sink_activate_pull (GstPad * pad, gboolean active)
794 {
795   GstRMDemux *rmdemux;
796
797   rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
798
799   GST_DEBUG_OBJECT (rmdemux, "activate_pull");
800
801   if (active) {
802     rmdemux->seekable = TRUE;
803     rmdemux->offset = 0;
804     rmdemux->loop_state = RMDEMUX_LOOP_STATE_HEADER;
805     rmdemux->data_offset = G_MAXUINT;
806
807     return gst_pad_start_task (pad, (GstTaskFunction) gst_rmdemux_loop, pad);
808   } else {
809     return gst_pad_stop_task (pad);
810   }
811 }
812
813 /* random access mode - just pass over to our chain function */
814 static void
815 gst_rmdemux_loop (GstPad * pad)
816 {
817   GstRMDemux *rmdemux;
818   GstBuffer *buffer;
819   GstFlowReturn ret = GST_FLOW_OK;
820   guint size;
821
822   rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
823
824   GST_LOG_OBJECT (rmdemux, "loop with state=%d and offset=0x%x",
825       rmdemux->loop_state, rmdemux->offset);
826
827   switch (rmdemux->state) {
828     case RMDEMUX_STATE_HEADER:
829       size = HEADER_SIZE;
830       break;
831     case RMDEMUX_STATE_HEADER_DATA:
832       size = DATA_SIZE;
833       break;
834     case RMDEMUX_STATE_DATA_PACKET:
835       size = rmdemux->avg_packet_size;
836       break;
837     case RMDEMUX_STATE_EOS:
838       GST_LOG_OBJECT (rmdemux, "At EOS, pausing task");
839       ret = GST_FLOW_UNEXPECTED;
840       goto need_pause;
841     default:
842       GST_LOG_OBJECT (rmdemux, "Default: requires %d bytes (state is %d)",
843           (int) rmdemux->size, rmdemux->state);
844       size = rmdemux->size;
845   }
846
847   ret = gst_pad_pull_range (pad, rmdemux->offset, size, &buffer);
848   if (ret != GST_FLOW_OK) {
849     if (rmdemux->offset == rmdemux->index_offset) {
850       /* The index isn't available so forget about it */
851       rmdemux->loop_state = RMDEMUX_LOOP_STATE_DATA;
852       rmdemux->offset = rmdemux->data_offset;
853       GST_OBJECT_LOCK (rmdemux);
854       rmdemux->running = TRUE;
855       rmdemux->seekable = FALSE;
856       GST_OBJECT_UNLOCK (rmdemux);
857       return;
858     } else {
859       GST_DEBUG_OBJECT (rmdemux, "Unable to pull %d bytes at offset 0x%08x "
860           "(pull_range returned flow %s, state is %d)", (gint) size,
861           rmdemux->offset, gst_flow_get_name (ret), GST_STATE (rmdemux));
862       goto need_pause;
863     }
864   }
865
866   size = GST_BUFFER_SIZE (buffer);
867
868   /* Defer to the chain function */
869   ret = gst_rmdemux_chain (pad, buffer);
870   if (ret != GST_FLOW_OK) {
871     GST_DEBUG_OBJECT (rmdemux, "Chain flow failed at offset 0x%08x",
872         rmdemux->offset);
873     goto need_pause;
874   }
875
876   rmdemux->offset += size;
877
878   switch (rmdemux->loop_state) {
879     case RMDEMUX_LOOP_STATE_HEADER:
880       if (rmdemux->offset >= rmdemux->data_offset) {
881         /* It's the end of the header */
882         rmdemux->loop_state = RMDEMUX_LOOP_STATE_INDEX;
883         rmdemux->offset = rmdemux->index_offset;
884       }
885       break;
886     case RMDEMUX_LOOP_STATE_INDEX:
887       if (rmdemux->state == RMDEMUX_STATE_HEADER) {
888         if (rmdemux->index_offset == 0) {
889           /* We've read the last index */
890           rmdemux->loop_state = RMDEMUX_LOOP_STATE_DATA;
891           rmdemux->offset = rmdemux->data_offset;
892           GST_OBJECT_LOCK (rmdemux);
893           rmdemux->running = TRUE;
894           GST_OBJECT_UNLOCK (rmdemux);
895         } else {
896           /* Get the next index */
897           rmdemux->offset = rmdemux->index_offset;
898         }
899       }
900       break;
901     case RMDEMUX_LOOP_STATE_DATA:
902       break;
903   }
904
905   return;
906
907   /* ERRORS */
908 need_pause:
909   {
910     const gchar *reason = gst_flow_get_name (ret);
911
912     GST_LOG_OBJECT (rmdemux, "pausing task, reason %s", reason);
913     rmdemux->segment_running = FALSE;
914     gst_pad_pause_task (rmdemux->sinkpad);
915
916     if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
917       if (ret == GST_FLOW_UNEXPECTED) {
918         /* perform EOS logic */
919         if (rmdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
920           gint64 stop;
921
922           /* for segment playback we need to post when (in stream time)
923            * we stopped, this is either stop (when set) or the duration. */
924           if ((stop = rmdemux->segment.stop) == -1)
925             stop = rmdemux->segment.duration;
926
927           GST_LOG_OBJECT (rmdemux, "Sending segment done, at end of segment");
928           gst_element_post_message (GST_ELEMENT (rmdemux),
929               gst_message_new_segment_done (GST_OBJECT (rmdemux),
930                   GST_FORMAT_TIME, stop));
931         } else {
932           /* normal playback, send EOS to all linked pads */
933           GST_LOG_OBJECT (rmdemux, "Sending EOS, at end of stream");
934           gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
935         }
936       } else {
937         GST_ELEMENT_ERROR (rmdemux, STREAM, FAILED,
938             (NULL), ("stream stopped, reason %s", reason));
939         gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
940       }
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   const 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         codec_name = "Real Video 1.0";
1296         version = 1;
1297         break;
1298       case GST_RM_VDO_RV20:
1299         codec_name = "Real Video 2.0";
1300         version = 2;
1301         break;
1302       case GST_RM_VDO_RV30:
1303         codec_name = "Real Video 3.0";
1304         version = 3;
1305         break;
1306       case GST_RM_VDO_RV40:
1307         codec_name = "Real Video 4.0";
1308         version = 4;
1309         break;
1310       default:
1311         stream_caps = gst_caps_new_simple ("video/x-unknown-fourcc",
1312             "fourcc", GST_TYPE_FOURCC, stream->fourcc, NULL);
1313         GST_WARNING_OBJECT (rmdemux,
1314             "Unknown video FOURCC code \"%" GST_FOURCC_FORMAT "\" (%08x)",
1315             GST_FOURCC_ARGS (stream->fourcc), stream->fourcc);
1316     }
1317
1318     if (version) {
1319       stream_caps =
1320           gst_caps_new_simple ("video/x-pn-realvideo", "rmversion", G_TYPE_INT,
1321           (int) version,
1322           "format", G_TYPE_INT,
1323           (int) stream->format,
1324           "subformat", G_TYPE_INT, (int) stream->subformat, NULL);
1325     }
1326
1327     if (stream_caps) {
1328       gst_caps_set_simple (stream_caps,
1329           "width", G_TYPE_INT, stream->width,
1330           "height", G_TYPE_INT, stream->height,
1331           "framerate", GST_TYPE_FRACTION, stream->framerate_numerator,
1332           stream->framerate_denominator, NULL);
1333     }
1334     rmdemux->n_video_streams++;
1335
1336   } else if (stream->subtype == GST_RMDEMUX_STREAM_AUDIO) {
1337     char *name = g_strdup_printf ("audio_%02d", rmdemux->n_audio_streams);
1338
1339     stream->pad =
1340         gst_pad_new_from_static_template (&gst_rmdemux_audiosrc_template, name);
1341     GST_LOG_OBJECT (rmdemux, "Created audio pad \"%s\"", name);
1342     g_free (name);
1343
1344     codec_tag = GST_TAG_AUDIO_CODEC;
1345
1346     switch (stream->fourcc) {
1347         /* Older RealAudio Codecs */
1348       case GST_RM_AUD_14_4:
1349         codec_name = "Real Audio 14.4kbps";
1350         version = 1;
1351         break;
1352
1353       case GST_RM_AUD_28_8:
1354         codec_name = "Real Audio 28.8kbps";
1355         version = 2;
1356         break;
1357
1358         /* DolbyNet (Dolby AC3, low bitrate) */
1359       case GST_RM_AUD_DNET:
1360         codec_name = "AC-3 audio";
1361         stream_caps =
1362             gst_caps_new_simple ("audio/x-ac3", "rate", G_TYPE_INT,
1363             (int) stream->rate, NULL);
1364         stream->needs_descrambling = TRUE;
1365         stream->subpackets_needed = 1;
1366         stream->subpackets = NULL;
1367         break;
1368
1369         /* MPEG-4 based */
1370       case GST_RM_AUD_RAAC:
1371       case GST_RM_AUD_RACP:
1372         codec_name = "MPEG4 audio";
1373         stream_caps =
1374             gst_caps_new_simple ("audio/mpeg", "mpegversion", G_TYPE_INT,
1375             (int) 4, "framed", G_TYPE_BOOLEAN, TRUE, NULL);
1376         if (stream->extra_data_size > 0) {
1377           /* strip off an unknown byte in the extra data */
1378           stream->extra_data_size--;
1379           stream->extra_data++;
1380         }
1381         stream->needs_descrambling = TRUE;
1382         stream->subpackets_needed = 1;
1383         stream->subpackets = NULL;
1384         break;
1385
1386         /* Sony ATRAC3 */
1387       case GST_RM_AUD_ATRC:
1388         codec_name = "Sony ATRAC3";
1389         stream_caps = gst_caps_new_simple ("audio/x-vnd.sony.atrac3", NULL);
1390         break;
1391
1392         /* RealAudio G2 audio */
1393       case GST_RM_AUD_COOK:
1394         codec_name = "Real Audio G2 (Cook)";
1395         version = 8;
1396         stream->needs_descrambling = TRUE;
1397         stream->subpackets_needed = stream->height;
1398         stream->subpackets = NULL;
1399         break;
1400
1401         /* RALF is lossless */
1402       case GST_RM_AUD_RALF:
1403         /* FIXME: codec_name = */
1404         GST_DEBUG_OBJECT (rmdemux, "RALF");
1405         stream_caps = gst_caps_new_simple ("audio/x-ralf-mpeg4-generic", NULL);
1406         break;
1407
1408         /* Sipro/ACELP.NET Voice Codec (MIME unknown) */
1409       case GST_RM_AUD_SIPR:
1410         /* FIXME: codec_name = */
1411         stream_caps = gst_caps_new_simple ("audio/x-sipro", NULL);
1412         break;
1413
1414       default:
1415         stream_caps = gst_caps_new_simple ("video/x-unknown-fourcc",
1416             "fourcc", GST_TYPE_FOURCC, stream->fourcc, NULL);
1417         GST_WARNING_OBJECT (rmdemux,
1418             "Unknown audio FOURCC code \"%" GST_FOURCC_FORMAT "\" (%08x)",
1419             GST_FOURCC_ARGS (stream->fourcc), stream->fourcc);
1420         break;
1421     }
1422
1423     if (version) {
1424       stream_caps =
1425           gst_caps_new_simple ("audio/x-pn-realaudio", "raversion", G_TYPE_INT,
1426           (int) version, NULL);
1427     }
1428
1429     if (stream_caps) {
1430       gst_caps_set_simple (stream_caps,
1431           "flavor", G_TYPE_INT, (int) stream->flavor,
1432           "rate", G_TYPE_INT, (int) stream->rate,
1433           "channels", G_TYPE_INT, (int) stream->n_channels,
1434           "width", G_TYPE_INT, (int) stream->sample_width,
1435           "leaf_size", G_TYPE_INT, (int) stream->leaf_size,
1436           "packet_size", G_TYPE_INT, (int) stream->packet_size,
1437           "height", G_TYPE_INT, (int) stream->height, NULL);
1438     }
1439     rmdemux->n_audio_streams++;
1440   } else {
1441     GST_WARNING_OBJECT (rmdemux, "not adding stream of type %d, freeing it",
1442         stream->subtype);
1443     g_free (stream);
1444     goto beach;
1445   }
1446
1447   GST_PAD_ELEMENT_PRIVATE (stream->pad) = stream;
1448   rmdemux->streams = g_slist_append (rmdemux->streams, stream);
1449   GST_LOG_OBJECT (rmdemux, "n_streams is now %d",
1450       g_slist_length (rmdemux->streams));
1451
1452   GST_LOG ("stream->pad = %p, stream_caps = %" GST_PTR_FORMAT, stream->pad,
1453       stream_caps);
1454
1455   if (stream->pad && stream_caps) {
1456
1457     GST_LOG_OBJECT (rmdemux, "%d bytes of extra data for stream %s",
1458         stream->extra_data_size, GST_PAD_NAME (stream->pad));
1459
1460     /* add codec_data if there is any */
1461     if (stream->extra_data_size > 0) {
1462       GstBuffer *buffer;
1463
1464       buffer = gst_buffer_new_and_alloc (stream->extra_data_size);
1465       memcpy (GST_BUFFER_DATA (buffer), stream->extra_data,
1466           stream->extra_data_size);
1467
1468       gst_caps_set_simple (stream_caps, "codec_data", GST_TYPE_BUFFER,
1469           buffer, NULL);
1470
1471       gst_buffer_unref (buffer);
1472     }
1473
1474     gst_pad_use_fixed_caps (stream->pad);
1475
1476     gst_pad_set_caps (stream->pad, stream_caps);
1477     gst_pad_set_event_function (stream->pad,
1478         GST_DEBUG_FUNCPTR (gst_rmdemux_src_event));
1479     gst_pad_set_query_type_function (stream->pad,
1480         GST_DEBUG_FUNCPTR (gst_rmdemux_src_query_types));
1481     gst_pad_set_query_function (stream->pad,
1482         GST_DEBUG_FUNCPTR (gst_rmdemux_src_query));
1483
1484     GST_DEBUG_OBJECT (rmdemux, "adding pad %s with caps %" GST_PTR_FORMAT
1485         ", stream_id=%d", GST_PAD_NAME (stream->pad), stream_caps, stream->id);
1486     gst_pad_set_active (stream->pad, TRUE);
1487     gst_element_add_pad (GST_ELEMENT_CAST (rmdemux), stream->pad);
1488
1489     /* save for later, we must send the tags after the newsegment event */
1490     if (codec_name != NULL && codec_tag != NULL) {
1491       if (stream->pending_tags == NULL)
1492         stream->pending_tags = gst_tag_list_new ();
1493       gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_KEEP,
1494           codec_tag, codec_name, NULL);
1495     }
1496   }
1497
1498 beach:
1499
1500   if (stream_caps)
1501     gst_caps_unref (stream_caps);
1502 }
1503
1504 static int
1505 re_skip_pascal_string (const guint8 * ptr)
1506 {
1507   int length;
1508
1509   length = ptr[0];
1510
1511   return length + 1;
1512 }
1513
1514 static void
1515 gst_rmdemux_parse__rmf (GstRMDemux * rmdemux, const guint8 * data, int length)
1516 {
1517   GST_LOG_OBJECT (rmdemux, "file_version: %d", RMDEMUX_GUINT32_GET (data));
1518   GST_LOG_OBJECT (rmdemux, "num_headers: %d", RMDEMUX_GUINT32_GET (data + 4));
1519 }
1520
1521 static void
1522 gst_rmdemux_parse_prop (GstRMDemux * rmdemux, const guint8 * data, int length)
1523 {
1524   GST_LOG_OBJECT (rmdemux, "max bitrate: %d", RMDEMUX_GUINT32_GET (data));
1525   GST_LOG_OBJECT (rmdemux, "avg bitrate: %d", RMDEMUX_GUINT32_GET (data + 4));
1526   GST_LOG_OBJECT (rmdemux, "max packet size: %d",
1527       RMDEMUX_GUINT32_GET (data + 8));
1528   rmdemux->avg_packet_size = RMDEMUX_GUINT32_GET (data + 12);
1529   GST_LOG_OBJECT (rmdemux, "avg packet size: %d", rmdemux->avg_packet_size);
1530   rmdemux->num_packets = RMDEMUX_GUINT32_GET (data + 16);
1531   GST_LOG_OBJECT (rmdemux, "number of packets: %d", rmdemux->num_packets);
1532
1533   GST_LOG_OBJECT (rmdemux, "duration: %d", RMDEMUX_GUINT32_GET (data + 20));
1534   rmdemux->duration = RMDEMUX_GUINT32_GET (data + 20) * GST_MSECOND;
1535
1536   GST_LOG_OBJECT (rmdemux, "preroll: %d", RMDEMUX_GUINT32_GET (data + 24));
1537   rmdemux->index_offset = RMDEMUX_GUINT32_GET (data + 28);
1538   GST_LOG_OBJECT (rmdemux, "offset of INDX section: 0x%08x",
1539       rmdemux->index_offset);
1540   rmdemux->data_offset = RMDEMUX_GUINT32_GET (data + 32);
1541   GST_LOG_OBJECT (rmdemux, "offset of DATA section: 0x%08x",
1542       rmdemux->data_offset);
1543   GST_LOG_OBJECT (rmdemux, "n streams: %d", RMDEMUX_GUINT16_GET (data + 36));
1544   GST_LOG_OBJECT (rmdemux, "flags: 0x%04x", RMDEMUX_GUINT16_GET (data + 38));
1545 }
1546
1547 static void
1548 gst_rmdemux_parse_mdpr (GstRMDemux * rmdemux, const guint8 * data, int length)
1549 {
1550   GstRMDemuxStream *stream;
1551   char *stream1_type_string;
1552   char *stream2_type_string;
1553   guint str_len = 0;
1554   int stream_type;
1555   int offset;
1556   guint32 max_bitrate;
1557   guint32 avg_bitrate;
1558
1559   stream = g_new0 (GstRMDemuxStream, 1);
1560
1561   stream->id = RMDEMUX_GUINT16_GET (data);
1562   stream->index = NULL;
1563   stream->seek_offset = 0;
1564   stream->last_ts = -1;
1565   stream->next_ts = -1;
1566   stream->last_flow = GST_FLOW_OK;
1567   stream->discont = TRUE;
1568   stream->adapter = gst_adapter_new ();
1569   GST_LOG_OBJECT (rmdemux, "stream_number=%d", stream->id);
1570
1571   /* parse the bitrates */
1572   max_bitrate = RMDEMUX_GUINT32_GET (data + 2);
1573   avg_bitrate = RMDEMUX_GUINT32_GET (data + 6);
1574   GST_LOG_OBJECT (rmdemux, "Stream max bitrate=%u", max_bitrate);
1575   GST_LOG_OBJECT (rmdemux, "Stream avg bitrate=%u", avg_bitrate);
1576   if (max_bitrate != 0) {
1577     if (stream->pending_tags == NULL)
1578       stream->pending_tags = gst_tag_list_new ();
1579     gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE,
1580         GST_TAG_MAXIMUM_BITRATE, max_bitrate, NULL);
1581   }
1582   if (avg_bitrate != 0) {
1583     if (stream->pending_tags == NULL)
1584       stream->pending_tags = gst_tag_list_new ();
1585     gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE,
1586         GST_TAG_BITRATE, avg_bitrate, NULL);
1587   }
1588
1589   offset = 30;
1590   stream1_type_string = gst_rm_utils_read_string8 (data + offset,
1591       length - offset, &str_len);
1592   offset += str_len;
1593   stream2_type_string = gst_rm_utils_read_string8 (data + offset,
1594       length - offset, &str_len);
1595   offset += str_len;
1596
1597   /* stream1_type_string for audio and video stream is a "put_whatever_you_want" field :
1598    * observed values :
1599    * - "[The ]Video/Audio Stream" (File produced by an official Real encoder)
1600    * - "RealVideoPremierePlugIn-VIDEO/AUDIO" (File produced by Abobe Premiere)
1601    *
1602    * so, we should not rely on it to know which stream type it is
1603    */
1604
1605   GST_LOG_OBJECT (rmdemux, "stream type: %s", stream1_type_string);
1606   GST_LOG_OBJECT (rmdemux, "MIME type=%s", stream2_type_string);
1607
1608   if (strcmp (stream2_type_string, "video/x-pn-realvideo") == 0) {
1609     stream_type = GST_RMDEMUX_STREAM_VIDEO;
1610   } else if (strcmp (stream2_type_string,
1611           "video/x-pn-multirate-realvideo") == 0) {
1612     stream_type = GST_RMDEMUX_STREAM_VIDEO;
1613   } else if (strcmp (stream2_type_string, "audio/x-pn-realaudio") == 0) {
1614     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1615   } else if (strcmp (stream2_type_string,
1616           "audio/x-pn-multirate-realaudio") == 0) {
1617     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1618   } else if (strcmp (stream2_type_string,
1619           "audio/x-pn-multirate-realaudio-live") == 0) {
1620     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1621   } else if (strcmp (stream2_type_string, "audio/x-ralf-mpeg4-generic") == 0) {
1622     /* Another audio type found in the real testsuite */
1623     stream_type = GST_RMDEMUX_STREAM_AUDIO;
1624   } else if (strcmp (stream1_type_string, "") == 0 &&
1625       strcmp (stream2_type_string, "logical-fileinfo") == 0) {
1626     stream_type = GST_RMDEMUX_STREAM_FILEINFO;
1627   } else {
1628     stream_type = GST_RMDEMUX_STREAM_UNKNOWN;
1629     GST_WARNING_OBJECT (rmdemux, "unknown stream type \"%s\",\"%s\"",
1630         stream1_type_string, stream2_type_string);
1631   }
1632   g_free (stream1_type_string);
1633   g_free (stream2_type_string);
1634
1635   offset += 4;
1636
1637   stream->subtype = stream_type;
1638   switch (stream_type) {
1639
1640     case GST_RMDEMUX_STREAM_VIDEO:
1641       /* RV10/RV20/RV30/RV40 => video/x-pn-realvideo, version=1,2,3,4 */
1642       stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 8);
1643       stream->width = RMDEMUX_GUINT16_GET (data + offset + 12);
1644       stream->height = RMDEMUX_GUINT16_GET (data + offset + 14);
1645       stream->rate = RMDEMUX_GUINT16_GET (data + offset + 16);
1646       stream->subformat = RMDEMUX_GUINT32_GET (data + offset + 26);
1647       stream->format = RMDEMUX_GUINT32_GET (data + offset + 30);
1648       stream->extra_data_size = length - (offset + 26);
1649       stream->extra_data = (guint8 *) data + offset + 26;
1650       /* Natural way to represent framerates here requires unsigned 32 bit
1651        * numerator, which we don't have. For the nasty case, approximate...
1652        */
1653       {
1654         guint32 numerator = RMDEMUX_GUINT16_GET (data + offset + 22) * 65536 +
1655             RMDEMUX_GUINT16_GET (data + offset + 24);
1656         if (numerator > G_MAXINT) {
1657           stream->framerate_numerator = (gint) (numerator >> 1);
1658           stream->framerate_denominator = 32768;
1659         } else {
1660           stream->framerate_numerator = (gint) numerator;
1661           stream->framerate_denominator = 65536;
1662         }
1663       }
1664
1665       GST_DEBUG_OBJECT (rmdemux,
1666           "Video stream with fourcc=%" GST_FOURCC_FORMAT
1667           " width=%d height=%d rate=%d framerate=%d/%d subformat=%x format=%x extra_data_size=%d",
1668           GST_FOURCC_ARGS (stream->fourcc), stream->width, stream->height,
1669           stream->rate, stream->framerate_numerator,
1670           stream->framerate_denominator, stream->subformat, stream->format,
1671           stream->extra_data_size);
1672       break;
1673     case GST_RMDEMUX_STREAM_AUDIO:{
1674       stream->version = RMDEMUX_GUINT16_GET (data + offset + 4);
1675       GST_INFO ("stream version = %u", stream->version);
1676       switch (stream->version) {
1677         case 3:
1678           stream->fourcc = GST_RM_AUD_14_4;
1679           stream->packet_size = 20;
1680           stream->rate = 8000;
1681           stream->n_channels = 1;
1682           stream->sample_width = 16;
1683           stream->flavor = 1;
1684           stream->leaf_size = 0;
1685           stream->height = 0;
1686           break;
1687         case 4:
1688           stream->flavor = RMDEMUX_GUINT16_GET (data + offset + 22);
1689           stream->packet_size = RMDEMUX_GUINT32_GET (data + offset + 24);
1690           /* stream->frame_size = RMDEMUX_GUINT32_GET (data + offset + 42); */
1691           stream->leaf_size = RMDEMUX_GUINT16_GET (data + offset + 44);
1692           stream->height = RMDEMUX_GUINT16_GET (data + offset + 40);
1693           stream->rate = RMDEMUX_GUINT16_GET (data + offset + 48);
1694           stream->sample_width = RMDEMUX_GUINT16_GET (data + offset + 52);
1695           stream->n_channels = RMDEMUX_GUINT16_GET (data + offset + 54);
1696           stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 62);
1697           stream->extra_data_size = RMDEMUX_GUINT32_GET (data + offset + 69);
1698           GST_DEBUG_OBJECT (rmdemux, "%u bytes of extra codec data",
1699               stream->extra_data_size);
1700           if (length - (offset + 73) >= stream->extra_data_size) {
1701             stream->extra_data = (guint8 *) data + offset + 73;
1702           } else {
1703             GST_WARNING_OBJECT (rmdemux, "codec data runs beyond MDPR chunk");
1704             stream->extra_data_size = 0;
1705           }
1706           break;
1707         case 5:
1708           stream->flavor = RMDEMUX_GUINT16_GET (data + offset + 22);
1709           stream->packet_size = RMDEMUX_GUINT32_GET (data + offset + 24);
1710           /* stream->frame_size = RMDEMUX_GUINT32_GET (data + offset + 42); */
1711           stream->leaf_size = RMDEMUX_GUINT16_GET (data + offset + 44);
1712           stream->height = RMDEMUX_GUINT16_GET (data + offset + 40);
1713           stream->rate = RMDEMUX_GUINT16_GET (data + offset + 54);
1714           stream->sample_width = RMDEMUX_GUINT16_GET (data + offset + 58);
1715           stream->n_channels = RMDEMUX_GUINT16_GET (data + offset + 60);
1716           stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 66);
1717           stream->extra_data_size = RMDEMUX_GUINT32_GET (data + offset + 74);
1718           GST_DEBUG_OBJECT (rmdemux, "%u bytes of extra codec data",
1719               stream->extra_data_size);
1720           if (length - (offset + 78) >= stream->extra_data_size) {
1721             stream->extra_data = (guint8 *) data + offset + 78;
1722           } else {
1723             GST_WARNING_OBJECT (rmdemux, "codec data runs beyond MDPR chunk");
1724             stream->extra_data_size = 0;
1725           }
1726           break;
1727         default:{
1728           GST_WARNING_OBJECT (rmdemux, "Unhandled audio stream version %d",
1729               stream->version);
1730           break;
1731         }
1732       }
1733
1734       /*  14_4, 28_8, cook, dnet, sipr, raac, racp, ralf, atrc */
1735       GST_DEBUG_OBJECT (rmdemux,
1736           "Audio stream with rate=%d sample_width=%d n_channels=%d",
1737           stream->rate, stream->sample_width, stream->n_channels);
1738
1739       break;
1740     }
1741     case GST_RMDEMUX_STREAM_FILEINFO:
1742     {
1743       int element_nb;
1744
1745       /* Length of this section */
1746       GST_DEBUG_OBJECT (rmdemux, "length2: 0x%08x",
1747           RMDEMUX_GUINT32_GET (data + offset));
1748       offset += 4;
1749
1750       /* Unknown : 00 00 00 00 */
1751       offset += 4;
1752
1753       /* Number of variables that would follow (loop iterations) */
1754       element_nb = RMDEMUX_GUINT32_GET (data + offset);
1755       offset += 4;
1756
1757       while (element_nb) {
1758         /* Category Id : 00 00 00 XX 00 00 */
1759         offset += 6;
1760
1761         /* Variable Name */
1762         offset += re_skip_pascal_string (data + offset);
1763
1764         /* Variable Value Type */
1765         /*   00 00 00 00 00 => integer/boolean, preceded by length */
1766         /*   00 00 00 02 00 => pascal string, preceded by length, no trailing \0 */
1767         offset += 5;
1768
1769         /* Variable Value */
1770         offset += re_skip_pascal_string (data + offset);
1771
1772         element_nb--;
1773       }
1774     }
1775       break;
1776     case GST_RMDEMUX_STREAM_UNKNOWN:
1777     default:
1778       break;
1779   }
1780
1781   gst_rmdemux_add_stream (rmdemux, stream);
1782 }
1783
1784 static guint
1785 gst_rmdemux_parse_indx (GstRMDemux * rmdemux, const guint8 * data, int length)
1786 {
1787   int n;
1788   int id;
1789
1790   n = RMDEMUX_GUINT32_GET (data);
1791   id = RMDEMUX_GUINT16_GET (data + 4);
1792   rmdemux->index_offset = RMDEMUX_GUINT32_GET (data + 6);
1793
1794   GST_DEBUG_OBJECT (rmdemux, "Number of indices=%d Stream ID=%d length=%d", n,
1795       id, length);
1796
1797   /* Point to the next index_stream */
1798   rmdemux->index_stream = gst_rmdemux_get_stream_by_id (rmdemux, id);
1799
1800   /* Return the length of the index */
1801   return 14 * n;
1802 }
1803
1804 static void
1805 gst_rmdemux_parse_indx_data (GstRMDemux * rmdemux, const guint8 * data,
1806     int length)
1807 {
1808   int i;
1809   int n;
1810   GstRMDemuxIndex *index;
1811
1812   /* The number of index records */
1813   n = length / 14;
1814
1815   if (rmdemux->index_stream == NULL)
1816     return;
1817
1818   /* don't parse the index a second time when operating pull-based and
1819    * reaching the end of the file */
1820   if (rmdemux->index_stream->index_length > 0) {
1821     GST_DEBUG_OBJECT (rmdemux, "Already have an index for this stream");
1822     return;
1823   }
1824
1825   index = g_malloc (sizeof (GstRMDemuxIndex) * n);
1826   rmdemux->index_stream->index = index;
1827   rmdemux->index_stream->index_length = n;
1828
1829   for (i = 0; i < n; i++) {
1830     index[i].timestamp = RMDEMUX_GUINT32_GET (data + 2) * GST_MSECOND;
1831     index[i].offset = RMDEMUX_GUINT32_GET (data + 6);
1832
1833     GST_DEBUG_OBJECT (rmdemux, "Index found for timestamp=%f (at offset=%x)",
1834         gst_guint64_to_gdouble (index[i].timestamp) / GST_SECOND,
1835         index[i].offset);
1836     data += 14;
1837   }
1838 }
1839
1840 static void
1841 gst_rmdemux_parse_data (GstRMDemux * rmdemux, const guint8 * data, int length)
1842 {
1843   rmdemux->n_chunks = RMDEMUX_GUINT32_GET (data);
1844   rmdemux->data_offset = RMDEMUX_GUINT32_GET (data + 4);
1845   rmdemux->chunk_index = 0;
1846   GST_DEBUG_OBJECT (rmdemux, "Data chunk found with %d packets "
1847       "(next data at 0x%08x)", rmdemux->n_chunks, rmdemux->data_offset);
1848 }
1849
1850 static void
1851 gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data, int length)
1852 {
1853   GstTagList *tags;
1854
1855   tags = gst_rm_utils_read_tags (data, length, gst_rm_utils_read_string16);
1856   if (tags) {
1857     gst_element_found_tags (GST_ELEMENT (rmdemux), tags);
1858   }
1859 }
1860
1861 static GstFlowReturn
1862 gst_rmdemux_combine_flows (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
1863     GstFlowReturn ret)
1864 {
1865   GSList *cur;
1866
1867   /* store the value */
1868   stream->last_flow = ret;
1869
1870   /* if it's success we can return the value right away */
1871   if (GST_FLOW_IS_SUCCESS (ret))
1872     goto done;
1873
1874   /* any other error that is not-linked can be returned right
1875    * away */
1876   if (ret != GST_FLOW_NOT_LINKED)
1877     goto done;
1878
1879   for (cur = rmdemux->streams; cur; cur = cur->next) {
1880     GstRMDemuxStream *ostream = cur->data;
1881
1882     ret = ostream->last_flow;
1883     /* some other return value (must be SUCCESS but we can return
1884      * other values as well) */
1885     if (ret != GST_FLOW_NOT_LINKED)
1886       goto done;
1887   }
1888   /* if we get here, all other pads were unlinked and we return
1889    * NOT_LINKED then */
1890 done:
1891   return ret;
1892 }
1893
1894 static void
1895 gst_rmdemux_stream_clear_cached_subpackets (GstRMDemux * rmdemux,
1896     GstRMDemuxStream * stream)
1897 {
1898   if (stream->subpackets == NULL || stream->subpackets->len == 0)
1899     return;
1900
1901   GST_DEBUG_OBJECT (rmdemux, "discarding %u previously collected subpackets",
1902       stream->subpackets->len);
1903   g_ptr_array_foreach (stream->subpackets, (GFunc) gst_mini_object_unref, NULL);
1904   g_ptr_array_set_size (stream->subpackets, 0);
1905 }
1906
1907 static GstFlowReturn
1908 gst_rmdemux_descramble_cook_audio (GstRMDemux * rmdemux,
1909     GstRMDemuxStream * stream)
1910 {
1911   GstFlowReturn ret;
1912   GstBuffer *outbuf;
1913   guint packet_size = stream->packet_size;
1914   guint height = stream->subpackets->len;
1915   guint leaf_size = stream->leaf_size;
1916   guint p, x;
1917
1918   g_assert (stream->height == height);
1919
1920   GST_LOG ("packet_size = %u, leaf_size = %u, height= %u", packet_size,
1921       leaf_size, height);
1922
1923   ret = gst_pad_alloc_buffer_and_set_caps (stream->pad,
1924       GST_BUFFER_OFFSET_NONE, height * packet_size,
1925       GST_PAD_CAPS (stream->pad), &outbuf);
1926
1927   if (ret != GST_FLOW_OK)
1928     goto done;
1929
1930   for (p = 0; p < height; ++p) {
1931     GstBuffer *b = g_ptr_array_index (stream->subpackets, p);
1932     guint8 *b_data = GST_BUFFER_DATA (b);
1933
1934     if (p == 0)
1935       GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (b);
1936
1937     for (x = 0; x < packet_size / leaf_size; ++x) {
1938       guint idx;
1939
1940       idx = height * x + ((height + 1) / 2) * (p % 2) + (p / 2);
1941       /* GST_LOG ("%3u => %3u", (height * p) + x, idx); */
1942       memcpy (GST_BUFFER_DATA (outbuf) + leaf_size * idx, b_data, leaf_size);
1943       b_data += leaf_size;
1944     }
1945   }
1946
1947   /* some decoders, such as realaudiodec, need to be fed in packet units */
1948   for (p = 0; p < height; ++p) {
1949     GstBuffer *subbuf;
1950
1951     subbuf = gst_buffer_create_sub (outbuf, p * packet_size, packet_size);
1952
1953     GST_LOG_OBJECT (rmdemux, "pushing buffer timestamp %" GST_TIME_FORMAT,
1954         GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (subbuf)));
1955
1956     if (stream->discont) {
1957       GST_BUFFER_FLAG_SET (subbuf, GST_BUFFER_FLAG_DISCONT);
1958       stream->discont = FALSE;
1959     }
1960
1961     gst_buffer_set_caps (subbuf, GST_PAD_CAPS (stream->pad));
1962     ret = gst_pad_push (stream->pad, subbuf);
1963     if (ret != GST_FLOW_OK)
1964       break;
1965   }
1966
1967   gst_buffer_unref (outbuf);
1968
1969 done:
1970
1971   gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
1972
1973   return ret;
1974 }
1975
1976 static GstFlowReturn
1977 gst_rmdemux_descramble_dnet_audio (GstRMDemux * rmdemux,
1978     GstRMDemuxStream * stream)
1979 {
1980   GstBuffer *buf;
1981
1982   buf = g_ptr_array_index (stream->subpackets, 0);
1983   g_ptr_array_index (stream->subpackets, 0) = NULL;
1984   g_ptr_array_set_size (stream->subpackets, 0);
1985
1986   buf = gst_rm_utils_descramble_dnet_buffer (buf);
1987
1988   if (stream->discont) {
1989     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
1990     stream->discont = FALSE;
1991   }
1992   return gst_pad_push (stream->pad, buf);
1993 }
1994
1995 static GstFlowReturn
1996 gst_rmdemux_descramble_mp4a_audio (GstRMDemux * rmdemux,
1997     GstRMDemuxStream * stream)
1998 {
1999   GstFlowReturn res;
2000   GstBuffer *buf, *outbuf;
2001   guint frames, index, i;
2002   guint8 *data;
2003   GstClockTime timestamp;
2004
2005   res = GST_FLOW_OK;
2006
2007   buf = g_ptr_array_index (stream->subpackets, 0);
2008   g_ptr_array_index (stream->subpackets, 0) = NULL;
2009   g_ptr_array_set_size (stream->subpackets, 0);
2010
2011   data = GST_BUFFER_DATA (buf);
2012   timestamp = GST_BUFFER_TIMESTAMP (buf);
2013
2014   frames = (data[1] & 0xf0) >> 4;
2015   index = 2 * frames + 2;
2016
2017   for (i = 0; i < frames; i++) {
2018     guint len = (data[i * 2 + 2] << 8) | data[i * 2 + 3];
2019
2020     outbuf = gst_buffer_create_sub (buf, index, len);
2021     if (i == 0)
2022       GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
2023     gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
2024
2025     index += len;
2026
2027     if (stream->discont) {
2028       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
2029       stream->discont = FALSE;
2030     }
2031     res = gst_pad_push (stream->pad, outbuf);
2032     if (res != GST_FLOW_OK)
2033       break;
2034   }
2035   gst_buffer_unref (buf);
2036   return res;
2037 }
2038
2039 static GstFlowReturn
2040 gst_rmdemux_handle_scrambled_packet (GstRMDemux * rmdemux,
2041     GstRMDemuxStream * stream, GstBuffer * buf, gboolean keyframe)
2042 {
2043   GstFlowReturn ret;
2044
2045   if (stream->subpackets == NULL)
2046     stream->subpackets = g_ptr_array_sized_new (stream->subpackets_needed);
2047
2048   GST_LOG ("Got subpacket %u/%u, len=%u, key=%d", stream->subpackets->len + 1,
2049       stream->subpackets_needed, GST_BUFFER_SIZE (buf), keyframe);
2050
2051   if (keyframe && stream->subpackets->len > 0) {
2052     gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
2053   }
2054
2055   g_ptr_array_add (stream->subpackets, buf);
2056
2057   if (stream->subpackets->len < stream->subpackets_needed)
2058     return GST_FLOW_OK;
2059
2060   g_assert (stream->subpackets->len >= 1);
2061
2062   switch (stream->fourcc) {
2063     case GST_RM_AUD_DNET:
2064       ret = gst_rmdemux_descramble_dnet_audio (rmdemux, stream);
2065       break;
2066     case GST_RM_AUD_COOK:
2067       ret = gst_rmdemux_descramble_cook_audio (rmdemux, stream);
2068       break;
2069     case GST_RM_AUD_RAAC:
2070     case GST_RM_AUD_RACP:
2071       ret = gst_rmdemux_descramble_mp4a_audio (rmdemux, stream);
2072       break;
2073     default:
2074       g_assert_not_reached ();
2075   }
2076
2077   return ret;
2078 }
2079
2080 static GstClockTime
2081 gst_rmdemux_fix_timestamp (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2082     guint8 * data, GstClockTime timestamp)
2083 {
2084   guint8 frame_type;
2085   guint16 seq;
2086   GstClockTime ts = timestamp;
2087
2088   if (timestamp == GST_CLOCK_TIME_NONE)
2089     goto done;
2090
2091   /* only adjust when we have a stream with B frames */
2092   if (stream->format < 0x20200002)
2093     goto done;
2094
2095   /* Fix timestamp. */
2096   switch (stream->fourcc) {
2097     case GST_RM_VDO_RV10:
2098       goto done;
2099     case GST_RM_VDO_RV20:
2100     {
2101       /*
2102        * Bit  1- 2: frame type
2103        * Bit  3- 9: ?
2104        * Bit 10-22: sequence number
2105        * Bit 23-32: ?
2106        */
2107       frame_type = (data[0] >> 6) & 0x03;
2108       seq = ((data[1] & 0x7f) << 6) + ((data[2] & 0xfc) >> 2);
2109       break;
2110     }
2111     case GST_RM_VDO_RV30:
2112     {
2113       /*
2114        * Bit  1- 2: ?
2115        * Bit     3: skip packet if 1
2116        * Bit  4- 5: frame type
2117        * Bit  6-12: ?
2118        * Bit 13-25: sequence number
2119        * Bit 26-32: ?
2120        */
2121       frame_type = (data[0] >> 3) & 0x03;
2122       seq = ((data[1] & 0x0f) << 9) + (data[2] << 1) + ((data[3] & 0x80) >> 7);
2123       break;
2124     }
2125     case GST_RM_VDO_RV40:
2126     {
2127       /*
2128        * Bit     1: skip packet if 1
2129        * Bit  2- 3: frame type
2130        * Bit  4-13: ?
2131        * Bit 14-26: sequence number
2132        * Bit 27-32: ?
2133        */
2134       frame_type = (data[0] >> 5) & 0x03;
2135       seq = ((data[1] & 0x07) << 10) + (data[2] << 2) + ((data[3] & 0xc0) >> 6);
2136       break;
2137     }
2138     default:
2139       goto unknown_version;
2140   }
2141
2142   switch (frame_type) {
2143     case 0:
2144     case 1:
2145     {
2146       GST_LOG_OBJECT (rmdemux, "I frame %d", frame_type);
2147       /* I frame */
2148       if (stream->next_ts == -1)
2149         stream->next_ts = timestamp;
2150       else
2151         timestamp = stream->next_ts;
2152       stream->last_ts = stream->next_ts;
2153       stream->next_ts = ts;
2154       stream->last_seq = stream->next_seq;
2155       stream->next_seq = seq;
2156       break;
2157     }
2158     case 2:
2159     {
2160       GST_LOG_OBJECT (rmdemux, "P frame");
2161       /* P frame */
2162       timestamp = stream->last_ts = stream->next_ts;
2163       if (seq < stream->next_seq)
2164         stream->next_ts += (seq + 0x2000 - stream->next_seq) * GST_MSECOND;
2165       else
2166         stream->next_ts += (seq - stream->next_seq) * GST_MSECOND;
2167       stream->last_seq = stream->next_seq;
2168       stream->next_seq = seq;
2169       break;
2170     }
2171     case 3:
2172     {
2173       GST_LOG_OBJECT (rmdemux, "B frame");
2174       /* B frame */
2175       if (seq < stream->last_seq) {
2176         timestamp =
2177             (seq + 0x2000 - stream->last_seq) * GST_MSECOND + stream->last_ts;
2178       } else {
2179         timestamp = (seq - stream->last_seq) * GST_MSECOND + stream->last_ts;
2180       }
2181       break;
2182     }
2183     default:
2184       goto unknown_frame_type;
2185   }
2186
2187 done:
2188   GST_LOG_OBJECT (rmdemux,
2189       "timestamp %" GST_TIME_FORMAT " -> %" GST_TIME_FORMAT, GST_TIME_ARGS (ts),
2190       GST_TIME_ARGS (timestamp));
2191
2192   return timestamp;
2193
2194   /* Errors */
2195 unknown_version:
2196   {
2197     GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE,
2198         ("Unknown version: %i.", stream->version), (NULL));
2199     return GST_FLOW_ERROR;
2200   }
2201
2202 unknown_frame_type:
2203   {
2204     GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE, ("Unknown frame type %d.",
2205             frame_type), (NULL));
2206     return GST_FLOW_ERROR;
2207   }
2208 }
2209
2210 #define PARSE_NUMBER(data, size, number, label) \
2211 G_STMT_START {                                  \
2212   if (size < 2)                                 \
2213     goto label;                                 \
2214   number = GST_READ_UINT16_BE (data);           \
2215   if (!(number & 0xc000)) {                     \
2216     if (size < 4)                               \
2217       goto label;                               \
2218     number = GST_READ_UINT32_BE (data);         \
2219     data += 4;                                  \
2220     size -= 4;                                  \
2221   } else {                                      \
2222     number &= 0x3fff;                           \
2223     data += 2;                                  \
2224     size -= 2;                                  \
2225   }                                             \
2226 } G_STMT_END
2227
2228 static GstFlowReturn
2229 gst_rmdemux_parse_video_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2230     GstBuffer * in, guint offset, guint16 version,
2231     GstClockTime timestamp, gboolean key)
2232 {
2233   GstFlowReturn ret;
2234   const guint8 *data, *base;
2235   guint size;
2236
2237   base = GST_BUFFER_DATA (in);
2238   data = base + offset;
2239   size = GST_BUFFER_SIZE (in) - offset;
2240   /* if size <= 2, we want this method to return the same GstFlowReturn as it
2241    * was previously for that given stream. */
2242   ret = stream->last_flow;
2243
2244   while (size > 2) {
2245     guint8 pkg_header;
2246     guint pkg_offset;
2247     guint pkg_length;
2248     guint pkg_subseq = 0, pkg_seqnum = G_MAXUINT;
2249     guint fragment_size;
2250     GstBuffer *fragment;
2251
2252     pkg_header = *data++;
2253     size--;
2254
2255     /* packet header
2256      * bit 7: 1=last block in block chain
2257      * bit 6: 1=short header (only one block?)
2258      */
2259     if ((pkg_header & 0xc0) == 0x40) {
2260       /* skip unknown byte */
2261       data++;
2262       size--;
2263       pkg_offset = 0;
2264       pkg_length = size;
2265     } else {
2266       if ((pkg_header & 0x40) == 0) {
2267         pkg_subseq = (*data++) & 0x7f;
2268         size--;
2269       } else {
2270         pkg_subseq = 0;
2271       }
2272
2273       /* length */
2274       PARSE_NUMBER (data, size, pkg_length, not_enough_data);
2275
2276       /* offset */
2277       PARSE_NUMBER (data, size, pkg_offset, not_enough_data);
2278
2279       /* seqnum */
2280       if (size < 1)
2281         goto not_enough_data;
2282
2283       pkg_seqnum = *data++;
2284       size--;
2285     }
2286
2287     GST_DEBUG_OBJECT (rmdemux,
2288         "seq %d, subseq %d, offset %d, length %d, size %d, header %02x",
2289         pkg_seqnum, pkg_subseq, pkg_offset, pkg_length, size, pkg_header);
2290
2291     /* calc size of fragment */
2292     if ((pkg_header & 0xc0) == 0x80) {
2293       fragment_size = pkg_offset;
2294     } else {
2295       if ((pkg_header & 0xc0) == 0)
2296         fragment_size = size;
2297       else
2298         fragment_size = pkg_length;
2299     }
2300     GST_DEBUG_OBJECT (rmdemux, "fragment size %d", fragment_size);
2301
2302     /* get the fragment */
2303     fragment = gst_buffer_create_sub (in, data - base, fragment_size);
2304
2305     if (pkg_subseq == 1) {
2306       GST_DEBUG_OBJECT (rmdemux, "start new fragment");
2307       gst_adapter_clear (stream->adapter);
2308       stream->frag_current = 0;
2309       stream->frag_count = 0;
2310       stream->frag_length = pkg_length;
2311     } else if (pkg_subseq == 0) {
2312       GST_DEBUG_OBJECT (rmdemux, "non fragmented packet");
2313       stream->frag_current = 0;
2314       stream->frag_count = 0;
2315       stream->frag_length = fragment_size;
2316     }
2317
2318     /* put fragment in adapter */
2319     gst_adapter_push (stream->adapter, fragment);
2320     stream->frag_offset[stream->frag_count] = stream->frag_current;
2321     stream->frag_current += fragment_size;
2322     stream->frag_count++;
2323
2324     if (stream->frag_count > MAX_FRAGS)
2325       goto too_many_fragments;
2326
2327     GST_DEBUG_OBJECT (rmdemux, "stored fragment in adapter %d/%d",
2328         stream->frag_current, stream->frag_length);
2329
2330     /* flush fragment when complete */
2331     if (stream->frag_current >= stream->frag_length) {
2332       GstBuffer *out;
2333       guint8 *outdata;
2334       guint header_size;
2335       gint i, avail;
2336
2337       /* calculate header size, which is:
2338        * 1 byte for the number of fragments - 1
2339        * for each fragment:
2340        *   4 bytes 0x00000001 little endian
2341        *   4 bytes fragment offset
2342        *
2343        * This is also the matroska header for realvideo, the decoder needs the
2344        * fragment offsets, both in ffmpeg and real .so, so we just give it that
2345        * in front of the data.
2346        */
2347       header_size = 1 + (8 * (stream->frag_count));
2348
2349       GST_DEBUG_OBJECT (rmdemux,
2350           "fragmented completed. count %d, header_size %u", stream->frag_count,
2351           header_size);
2352
2353       avail = gst_adapter_available (stream->adapter);
2354
2355       out = gst_buffer_new_and_alloc (header_size + avail);
2356       outdata = GST_BUFFER_DATA (out);
2357
2358       /* create header */
2359       *outdata++ = stream->frag_count - 1;
2360       for (i = 0; i < stream->frag_count; i++) {
2361         GST_WRITE_UINT32_LE (outdata, 0x00000001);
2362         outdata += 4;
2363         GST_WRITE_UINT32_LE (outdata, stream->frag_offset[i]);
2364         outdata += 4;
2365       }
2366
2367       /* copy packet data after the header now */
2368       gst_adapter_copy (stream->adapter, outdata, 0, avail);
2369       gst_adapter_flush (stream->adapter, avail);
2370
2371       stream->frag_current = 0;
2372       stream->frag_count = 0;
2373       stream->frag_length = 0;
2374
2375       gst_buffer_set_caps (out, GST_PAD_CAPS (stream->pad));
2376
2377       if (timestamp != -1) {
2378         if (rmdemux->first_ts != -1 && timestamp > rmdemux->first_ts)
2379           timestamp -= rmdemux->first_ts;
2380         else
2381           timestamp = 0;
2382
2383         if (rmdemux->base_ts != -1)
2384           timestamp += rmdemux->base_ts;
2385       }
2386       timestamp =
2387           gst_rmdemux_fix_timestamp (rmdemux, stream, outdata, timestamp);
2388
2389       GST_BUFFER_TIMESTAMP (out) = timestamp;
2390
2391       GST_LOG_OBJECT (rmdemux, "pushing timestamp %" GST_TIME_FORMAT,
2392           GST_TIME_ARGS (timestamp));
2393
2394       if (stream->discont) {
2395         GST_BUFFER_FLAG_SET (out, GST_BUFFER_FLAG_DISCONT);
2396         stream->discont = FALSE;
2397       }
2398
2399       ret = gst_pad_push (stream->pad, out);
2400       ret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2401       if (ret != GST_FLOW_OK)
2402         break;
2403
2404       timestamp = GST_CLOCK_TIME_NONE;
2405     }
2406     data += fragment_size;
2407     size -= fragment_size;
2408   }
2409   GST_DEBUG_OBJECT (rmdemux, "%d bytes left", size);
2410
2411   gst_buffer_unref (in);
2412
2413   return ret;
2414
2415   /* ERRORS */
2416 not_enough_data:
2417   {
2418     GST_ELEMENT_WARNING (rmdemux, STREAM, DECODE, ("Skipping bad packet."),
2419         (NULL));
2420     gst_buffer_unref (in);
2421     return GST_FLOW_OK;
2422   }
2423 too_many_fragments:
2424   {
2425     GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE,
2426         ("Got more fragments (%u) than can be handled (%u)",
2427             stream->frag_count, MAX_FRAGS), (NULL));
2428     gst_buffer_unref (in);
2429     return GST_FLOW_ERROR;
2430   }
2431 }
2432
2433 static GstFlowReturn
2434 gst_rmdemux_parse_audio_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2435     GstBuffer * in, guint offset, guint16 version,
2436     GstClockTime timestamp, gboolean key)
2437 {
2438   GstFlowReturn ret, cret;
2439   GstBuffer *buffer;
2440   const guint8 *data;
2441   guint size;
2442
2443   data = GST_BUFFER_DATA (in) + offset;
2444   size = GST_BUFFER_SIZE (in) - offset;
2445
2446   ret = gst_pad_alloc_buffer_and_set_caps (stream->pad,
2447       GST_BUFFER_OFFSET_NONE, size, GST_PAD_CAPS (stream->pad), &buffer);
2448
2449   cret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2450   if (ret != GST_FLOW_OK)
2451     goto alloc_failed;
2452
2453   memcpy (GST_BUFFER_DATA (buffer), (guint8 *) data, size);
2454
2455   if (rmdemux->first_ts != -1 && timestamp > rmdemux->first_ts)
2456     timestamp -= rmdemux->first_ts;
2457   else
2458     timestamp = 0;
2459
2460   if (rmdemux->base_ts != -1)
2461     timestamp += rmdemux->base_ts;
2462
2463   GST_BUFFER_TIMESTAMP (buffer) = timestamp;
2464
2465   if (stream->needs_descrambling) {
2466     GST_LOG_OBJECT (rmdemux, "descramble timestamp %" GST_TIME_FORMAT,
2467         GST_TIME_ARGS (timestamp));
2468     ret = gst_rmdemux_handle_scrambled_packet (rmdemux, stream, buffer, key);
2469   } else {
2470     GST_LOG_OBJECT (rmdemux,
2471         "Pushing buffer of size %d, timestamp %" GST_TIME_FORMAT "to pad %s",
2472         GST_BUFFER_SIZE (buffer), GST_TIME_ARGS (timestamp),
2473         GST_PAD_NAME (stream->pad));
2474
2475     if (stream->discont) {
2476       GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
2477       stream->discont = FALSE;
2478     }
2479     ret = gst_pad_push (stream->pad, buffer);
2480   }
2481
2482   gst_buffer_unref (in);
2483
2484   return ret;
2485
2486   /* ERRORS */
2487 alloc_failed:
2488   {
2489     GST_DEBUG_OBJECT (rmdemux, "pad alloc returned %d", ret);
2490     gst_buffer_unref (in);
2491     return cret;
2492   }
2493 }
2494
2495 static GstFlowReturn
2496 gst_rmdemux_parse_packet (GstRMDemux * rmdemux, GstBuffer * in, guint16 version)
2497 {
2498   guint16 id;
2499   GstRMDemuxStream *stream;
2500   guint size;
2501   GstFlowReturn cret, ret;
2502   GstClockTime timestamp;
2503   gboolean key;
2504   guint8 *data, *base;
2505   guint8 flags;
2506   guint32 ts;
2507
2508   base = data = GST_BUFFER_DATA (in);
2509   size = GST_BUFFER_SIZE (in);
2510
2511   /* stream number */
2512   id = RMDEMUX_GUINT16_GET (data);
2513
2514   stream = gst_rmdemux_get_stream_by_id (rmdemux, id);
2515   if (!stream || !stream->pad)
2516     goto unknown_stream;
2517
2518   /* timestamp in Msec */
2519   ts = RMDEMUX_GUINT32_GET (data + 2);
2520   timestamp = ts * GST_MSECOND;
2521
2522   gst_segment_set_last_stop (&rmdemux->segment, GST_FORMAT_TIME, timestamp);
2523
2524   GST_LOG_OBJECT (rmdemux, "Parsing a packet for stream=%d, timestamp=%"
2525       GST_TIME_FORMAT ", size %u, version=%d, ts=%u", id,
2526       GST_TIME_ARGS (timestamp), size, version, ts);
2527
2528   if (rmdemux->first_ts == GST_CLOCK_TIME_NONE) {
2529     GST_DEBUG_OBJECT (rmdemux, "First timestamp: %" GST_TIME_FORMAT,
2530         GST_TIME_ARGS (timestamp));
2531     rmdemux->first_ts = timestamp;
2532   }
2533
2534   /* skip stream_id and timestamp */
2535   data += (2 + 4);
2536   size -= (2 + 4);
2537
2538   /* get flags */
2539   flags = GST_READ_UINT8 (data + 1);
2540
2541   data += 2;
2542   size -= 2;
2543
2544   /* version 1 has an extra byte */
2545   if (version == 1) {
2546     data += 1;
2547     size -= 1;
2548   }
2549   key = (flags & 0x02) != 0;
2550   GST_DEBUG_OBJECT (rmdemux, "flags %d, Keyframe %d", flags, key);
2551
2552   if (rmdemux->need_newsegment) {
2553     GstEvent *event;
2554
2555     event = gst_event_new_new_segment (FALSE, rmdemux->segment.rate,
2556         rmdemux->segment.format, rmdemux->segment.start,
2557         rmdemux->segment.stop, rmdemux->segment.time);
2558
2559     GST_DEBUG_OBJECT (rmdemux, "sending NEWSEGMENT event, segment.start= %"
2560         GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start));
2561
2562     gst_rmdemux_send_event (rmdemux, event);
2563     rmdemux->need_newsegment = FALSE;
2564   }
2565
2566   if (stream->pending_tags != NULL) {
2567     GST_LOG_OBJECT (stream->pad, "tags %" GST_PTR_FORMAT, stream->pending_tags);
2568     gst_element_found_tags_for_pad (GST_ELEMENT_CAST (rmdemux), stream->pad,
2569         stream->pending_tags);
2570     stream->pending_tags = NULL;
2571   }
2572
2573   if ((rmdemux->offset + size) <= stream->seek_offset) {
2574     GST_DEBUG_OBJECT (rmdemux,
2575         "Stream %d is skipping: seek_offset=%d, offset=%d, size=%u",
2576         stream->id, stream->seek_offset, rmdemux->offset, size);
2577     cret = GST_FLOW_OK;
2578     goto beach;
2579   }
2580
2581   /* do special headers */
2582   if (stream->subtype == GST_RMDEMUX_STREAM_VIDEO) {
2583     ret =
2584         gst_rmdemux_parse_video_packet (rmdemux, stream, in, data - base,
2585         version, timestamp, key);
2586   } else if (stream->subtype == GST_RMDEMUX_STREAM_AUDIO) {
2587     ret =
2588         gst_rmdemux_parse_audio_packet (rmdemux, stream, in, data - base,
2589         version, timestamp, key);
2590   } else
2591     ret = GST_FLOW_OK;
2592
2593   cret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2594
2595 beach:
2596   return cret;
2597
2598   /* ERRORS */
2599 unknown_stream:
2600   {
2601     GST_WARNING_OBJECT (rmdemux, "No stream for stream id %d in parsing "
2602         "data packet", id);
2603     return GST_FLOW_OK;
2604   }
2605 }
2606
2607 gboolean
2608 gst_rmdemux_plugin_init (GstPlugin * plugin)
2609 {
2610   return gst_element_register (plugin, "rmdemux",
2611       GST_RANK_PRIMARY, GST_TYPE_RMDEMUX);
2612 }