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>
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.
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.
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.
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
45 static const guint8 sipr_subpk_size[4] = { 29, 19, 37, 20 };
47 typedef struct _GstRMDemuxIndex GstRMDemuxIndex;
49 struct _GstRMDemuxStream
58 GstFlowReturn last_flow;
63 GstRMDemuxIndex *index;
65 gint framerate_numerator;
66 gint framerate_denominator;
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 */
78 guint32 extra_data_size; /* codec_data_length */
79 guint8 *extra_data; /* extras */
82 gboolean needs_descrambling;
83 guint subpackets_needed; /* subpackets needed for descrambling */
84 GPtrArray *subpackets; /* array containing subpacket GstBuffers */
86 /* Variables needed for fixing timestamps. */
87 GstClockTime next_ts, last_ts;
88 guint16 next_seq, last_seq;
95 guint frag_offset[MAX_FRAGS];
98 GstTagList *pending_tags;
101 struct _GstRMDemuxIndex
104 GstClockTime timestamp;
107 static GstStaticPadTemplate gst_rmdemux_sink_template =
108 GST_STATIC_PAD_TEMPLATE ("sink",
111 GST_STATIC_CAPS ("application/vnd.rn-realmedia")
114 static GstStaticPadTemplate gst_rmdemux_videosrc_template =
115 GST_STATIC_PAD_TEMPLATE ("video_%02d",
118 GST_STATIC_CAPS_ANY);
120 static GstStaticPadTemplate gst_rmdemux_audiosrc_template =
121 GST_STATIC_PAD_TEMPLATE ("audio_%02d",
124 GST_STATIC_CAPS_ANY);
126 GST_DEBUG_CATEGORY_STATIC (rmdemux_debug);
127 #define GST_CAT_DEFAULT rmdemux_debug
129 static GstElementClass *parent_class = NULL;
131 static void gst_rmdemux_class_init (GstRMDemuxClass * klass);
132 static void gst_rmdemux_base_init (GstRMDemuxClass * klass);
133 static void gst_rmdemux_init (GstRMDemux * rmdemux);
134 static void gst_rmdemux_finalize (GObject * object);
135 static GstStateChangeReturn gst_rmdemux_change_state (GstElement * element,
136 GstStateChange transition);
137 static GstFlowReturn gst_rmdemux_chain (GstPad * pad, GstBuffer * buffer);
138 static void gst_rmdemux_loop (GstPad * pad);
139 static gboolean gst_rmdemux_sink_activate (GstPad * sinkpad);
140 static gboolean gst_rmdemux_sink_activate_push (GstPad * sinkpad,
142 static gboolean gst_rmdemux_sink_activate_pull (GstPad * sinkpad,
144 static gboolean gst_rmdemux_sink_event (GstPad * pad, GstEvent * event);
145 static gboolean gst_rmdemux_src_event (GstPad * pad, GstEvent * event);
146 static void gst_rmdemux_send_event (GstRMDemux * rmdemux, GstEvent * event);
147 static const GstQueryType *gst_rmdemux_src_query_types (GstPad * pad);
148 static gboolean gst_rmdemux_src_query (GstPad * pad, GstQuery * query);
149 static gboolean gst_rmdemux_perform_seek (GstRMDemux * rmdemux,
152 static void gst_rmdemux_parse__rmf (GstRMDemux * rmdemux, const guint8 * data,
154 static void gst_rmdemux_parse_prop (GstRMDemux * rmdemux, const guint8 * data,
156 static void gst_rmdemux_parse_mdpr (GstRMDemux * rmdemux,
157 const guint8 * data, int length);
158 static guint gst_rmdemux_parse_indx (GstRMDemux * rmdemux, const guint8 * data,
160 static void gst_rmdemux_parse_data (GstRMDemux * rmdemux, const guint8 * data,
162 static void gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data,
164 static GstFlowReturn gst_rmdemux_parse_packet (GstRMDemux * rmdemux,
165 GstBuffer * in, guint16 version);
166 static void gst_rmdemux_parse_indx_data (GstRMDemux * rmdemux,
167 const guint8 * data, int length);
168 static void gst_rmdemux_stream_clear_cached_subpackets (GstRMDemux * rmdemux,
169 GstRMDemuxStream * stream);
170 static GstRMDemuxStream *gst_rmdemux_get_stream_by_id (GstRMDemux * rmdemux,
174 gst_rmdemux_get_type (void)
176 static GType rmdemux_type = 0;
179 static const GTypeInfo rmdemux_info = {
180 sizeof (GstRMDemuxClass),
181 (GBaseInitFunc) gst_rmdemux_base_init, NULL,
182 (GClassInitFunc) gst_rmdemux_class_init,
183 NULL, NULL, sizeof (GstRMDemux), 0,
184 (GInstanceInitFunc) gst_rmdemux_init,
188 g_type_register_static (GST_TYPE_ELEMENT, "GstRMDemux", &rmdemux_info,
195 gst_rmdemux_base_init (GstRMDemuxClass * klass)
197 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
199 gst_element_class_add_pad_template (element_class,
200 gst_static_pad_template_get (&gst_rmdemux_sink_template));
201 gst_element_class_add_pad_template (element_class,
202 gst_static_pad_template_get (&gst_rmdemux_videosrc_template));
203 gst_element_class_add_pad_template (element_class,
204 gst_static_pad_template_get (&gst_rmdemux_audiosrc_template));
205 gst_element_class_set_details_simple (element_class, "RealMedia Demuxer",
207 "Demultiplex a RealMedia file into audio and video streams",
208 "David Schleef <ds@schleef.org>");
212 gst_rmdemux_class_init (GstRMDemuxClass * klass)
214 GObjectClass *gobject_class;
215 GstElementClass *gstelement_class;
217 gobject_class = (GObjectClass *) klass;
218 gstelement_class = (GstElementClass *) klass;
220 parent_class = g_type_class_peek_parent (klass);
222 gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rmdemux_change_state);
224 GST_DEBUG_CATEGORY_INIT (rmdemux_debug, "rmdemux",
225 0, "Demuxer for Realmedia streams");
227 gobject_class->finalize = gst_rmdemux_finalize;
231 gst_rmdemux_finalize (GObject * object)
233 GstRMDemux *rmdemux = GST_RMDEMUX (object);
235 if (rmdemux->adapter) {
236 g_object_unref (rmdemux->adapter);
237 rmdemux->adapter = NULL;
240 GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
244 gst_rmdemux_init (GstRMDemux * rmdemux)
247 gst_pad_new_from_static_template (&gst_rmdemux_sink_template, "sink");
248 gst_pad_set_event_function (rmdemux->sinkpad,
249 GST_DEBUG_FUNCPTR (gst_rmdemux_sink_event));
250 gst_pad_set_chain_function (rmdemux->sinkpad,
251 GST_DEBUG_FUNCPTR (gst_rmdemux_chain));
252 gst_pad_set_activate_function (rmdemux->sinkpad,
253 GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate));
254 gst_pad_set_activatepull_function (rmdemux->sinkpad,
255 GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate_pull));
256 gst_pad_set_activatepush_function (rmdemux->sinkpad,
257 GST_DEBUG_FUNCPTR (gst_rmdemux_sink_activate_push));
259 gst_element_add_pad (GST_ELEMENT (rmdemux), rmdemux->sinkpad);
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;
266 gst_rm_utils_run_tests ();
270 gst_rmdemux_sink_event (GstPad * pad, GstEvent * event)
275 rmdemux = GST_RMDEMUX (gst_pad_get_parent (pad));
277 GST_LOG_OBJECT (pad, "%s event", GST_EVENT_TYPE_NAME (event));
279 switch (GST_EVENT_TYPE (event)) {
280 case GST_EVENT_NEWSEGMENT:
281 gst_event_unref (event);
285 ret = gst_pad_event_default (pad, event);
289 gst_object_unref (rmdemux);
294 gst_rmdemux_src_event (GstPad * pad, GstEvent * event)
298 GstRMDemux *rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
300 GST_LOG_OBJECT (rmdemux, "handling src event");
302 switch (GST_EVENT_TYPE (event)) {
307 GST_LOG_OBJECT (rmdemux, "Event on src: SEEK");
308 /* can't seek if we are not seekable, FIXME could pass the
309 * seek query upstream after converting it to bytes using
310 * the average bitrate of the stream. */
311 if (!rmdemux->seekable) {
313 GST_DEBUG ("seek on non seekable stream");
317 GST_OBJECT_LOCK (rmdemux);
318 /* check if we can do the seek now */
319 running = rmdemux->running;
320 GST_OBJECT_UNLOCK (rmdemux);
322 /* now do the seek */
324 ret = gst_rmdemux_perform_seek (rmdemux, event);
328 gst_event_unref (event);
332 GST_LOG_OBJECT (rmdemux, "Event on src: type=%d", GST_EVENT_TYPE (event));
333 ret = gst_pad_event_default (pad, event);
340 GST_DEBUG ("error handling event");
341 gst_event_unref (event);
345 /* Validate that this looks like a reasonable point to seek to */
347 gst_rmdemux_validate_offset (GstRMDemux * rmdemux)
350 GstFlowReturn flowret;
351 guint16 version, length;
354 flowret = gst_pad_pull_range (rmdemux->sinkpad, rmdemux->offset, 4, &buffer);
356 if (flowret != GST_FLOW_OK) {
357 GST_DEBUG_OBJECT (rmdemux, "Failed to pull data at offset %d",
361 /* TODO: Can we also be seeking to a 'DATA' chunk header? Check this.
362 * Also, for the case we currently handle, can we check any more? It's pretty
363 * sucky to not be validating a little more heavily than this... */
364 /* This should now be the start of a data packet header. That begins with
365 * a 2-byte 'version' field, which has to be 0 or 1, then a length. I'm not
366 * certain what values are valid for length, but it must always be at least
367 * 4 bytes, and we can check that it won't take us past our known total size
370 version = RMDEMUX_GUINT16_GET (GST_BUFFER_DATA (buffer));
371 if (version != 0 && version != 1) {
372 GST_DEBUG_OBJECT (rmdemux, "Expected version 0 or 1, got %d",
377 length = RMDEMUX_GUINT16_GET (GST_BUFFER_DATA (buffer) + 2);
378 /* TODO: Also check against total stream length */
380 GST_DEBUG_OBJECT (rmdemux, "Expected length >= 4, got %d", (int) length);
385 rmdemux->offset += 4;
386 gst_adapter_clear (rmdemux->adapter);
387 gst_adapter_push (rmdemux->adapter, buffer);
389 GST_WARNING_OBJECT (rmdemux, "Failed to validate seek offset at %d",
397 find_seek_offset_bytes (GstRMDemux * rmdemux, guint target)
401 gboolean ret = FALSE;
406 for (cur = rmdemux->streams; cur; cur = cur->next) {
407 GstRMDemuxStream *stream = cur->data;
409 /* Search backwards through this stream's index until we find the first
410 * timestamp before our target time */
411 for (i = stream->index_length - 1; i >= 0; i--) {
412 if (stream->index[i].offset <= target) {
413 /* Set the seek_offset for the stream so we don't bother parsing it
414 * until we've passed that point */
415 stream->seek_offset = stream->index[i].offset;
416 rmdemux->offset = stream->index[i].offset;
426 find_seek_offset_time (GstRMDemux * rmdemux, GstClockTime time)
429 gboolean ret = FALSE;
431 GstClockTime earliest = GST_CLOCK_TIME_NONE;
434 for (cur = rmdemux->streams; cur; cur = cur->next, n_stream++) {
435 GstRMDemuxStream *stream = cur->data;
437 /* Search backwards through this stream's index until we find the first
438 * timestamp before our target time */
439 for (i = stream->index_length - 1; i >= 0; i--) {
440 if (stream->index[i].timestamp <= time) {
441 /* Set the seek_offset for the stream so we don't bother parsing it
442 * until we've passed that point */
443 stream->seek_offset = stream->index[i].offset;
445 /* If it's also the earliest timestamp we've seen of all streams, then
448 if (earliest == GST_CLOCK_TIME_NONE ||
449 stream->index[i].timestamp < earliest) {
450 earliest = stream->index[i].timestamp;
451 rmdemux->offset = stream->index[i].offset;
452 GST_DEBUG_OBJECT (rmdemux,
453 "We're looking for %" GST_TIME_FORMAT
454 " and we found that stream %d has the latest index at %"
455 GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start), n_stream,
456 GST_TIME_ARGS (earliest));
464 stream->discont = TRUE;
470 gst_rmdemux_perform_seek (GstRMDemux * rmdemux, GstEvent * event)
478 GstSeekType cur_type, stop_type;
483 GST_DEBUG_OBJECT (rmdemux, "seek with event");
485 gst_event_parse_seek (event, &rate, &format, &flags,
486 &cur_type, &cur, &stop_type, &stop);
488 /* we can only seek on time */
489 if (format != GST_FORMAT_TIME) {
490 GST_DEBUG_OBJECT (rmdemux, "can only seek on TIME");
493 /* cannot yet do backwards playback */
495 GST_DEBUG_OBJECT (rmdemux, "can only seek with positive rate, not %lf",
500 GST_DEBUG_OBJECT (rmdemux, "seek without event");
506 GST_DEBUG_OBJECT (rmdemux, "seek, rate %g", rate);
508 flush = flags & GST_SEEK_FLAG_FLUSH;
510 /* first step is to unlock the streaming thread if it is
511 * blocked in a chain call, we do this by starting the flush. */
513 gst_pad_push_event (rmdemux->sinkpad, gst_event_new_flush_start ());
514 gst_rmdemux_send_event (rmdemux, gst_event_new_flush_start ());
516 gst_pad_pause_task (rmdemux->sinkpad);
519 GST_LOG_OBJECT (rmdemux, "Done starting flushes");
521 /* now grab the stream lock so that streaming cannot continue, for
522 * non flushing seeks when the element is in PAUSED this could block
524 GST_PAD_STREAM_LOCK (rmdemux->sinkpad);
526 GST_LOG_OBJECT (rmdemux, "Took streamlock");
528 /* close current segment first */
529 if (rmdemux->segment_running && !flush) {
532 newseg = gst_event_new_new_segment (TRUE, rmdemux->segment.rate,
533 GST_FORMAT_TIME, rmdemux->segment.start,
534 rmdemux->segment.last_stop, rmdemux->segment.time);
536 gst_rmdemux_send_event (rmdemux, newseg);
540 gst_segment_set_seek (&rmdemux->segment, rate, format, flags,
541 cur_type, cur, stop_type, stop, &update);
544 GST_DEBUG_OBJECT (rmdemux, "segment positions set to %" GST_TIME_FORMAT "-%"
545 GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start),
546 GST_TIME_ARGS (rmdemux->segment.stop));
548 /* we need to stop flushing on the sinkpad as we're going to use it
549 * next. We can do this as we have the STREAM lock now. */
550 gst_pad_push_event (rmdemux->sinkpad, gst_event_new_flush_stop ());
552 GST_LOG_OBJECT (rmdemux, "Pushed FLUSH_STOP event");
554 /* For each stream, find the first index offset equal to or before our seek
555 * target. Of these, find the smallest offset. That's where we seek to.
557 * Then we pull 4 bytes from that offset, and validate that we've seeked to a
558 * what looks like a plausible packet.
559 * If that fails, restart, with the seek target set to one less than the
560 * offset we just tried. If we run out of places to try, treat that as a fatal
563 if (!find_seek_offset_time (rmdemux, rmdemux->segment.last_stop)) {
564 GST_LOG_OBJECT (rmdemux, "Failed to find seek offset by time");
569 GST_LOG_OBJECT (rmdemux, "Validating offset %u", rmdemux->offset);
570 validated = gst_rmdemux_validate_offset (rmdemux);
572 GST_INFO_OBJECT (rmdemux, "Failed to validate offset at %u",
574 if (!find_seek_offset_bytes (rmdemux, rmdemux->offset - 1)) {
578 validated = gst_rmdemux_validate_offset (rmdemux);
581 GST_LOG_OBJECT (rmdemux, "Found final offset. Excellent!");
583 /* now we have a new position, prepare for streaming again */
585 /* Reset the demuxer state */
586 rmdemux->state = RMDEMUX_STATE_DATA_PACKET;
589 gst_rmdemux_send_event (rmdemux, gst_event_new_flush_stop ());
591 /* must send newsegment event from streaming thread, so just set flag */
592 rmdemux->need_newsegment = TRUE;
594 /* notify start of new segment */
595 if (rmdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
596 gst_element_post_message (GST_ELEMENT_CAST (rmdemux),
597 gst_message_new_segment_start (GST_OBJECT_CAST (rmdemux),
598 GST_FORMAT_TIME, rmdemux->segment.last_stop));
601 /* restart our task since it might have been stopped when we did the
603 gst_pad_start_task (rmdemux->sinkpad, (GstTaskFunction) gst_rmdemux_loop,
608 /* streaming can continue now */
609 GST_PAD_STREAM_UNLOCK (rmdemux->sinkpad);
615 GST_DEBUG_OBJECT (rmdemux, "seek failed");
622 gst_rmdemux_src_query (GstPad * pad, GstQuery * query)
624 gboolean res = FALSE;
627 rmdemux = GST_RMDEMUX (gst_pad_get_parent (pad));
629 switch (GST_QUERY_TYPE (query)) {
630 case GST_QUERY_POSITION:
631 GST_DEBUG_OBJECT (rmdemux, "Position query: no idea from demuxer!");
633 case GST_QUERY_DURATION:{
636 gst_query_parse_duration (query, &fmt, NULL);
637 if (fmt == GST_FORMAT_TIME) {
638 GST_OBJECT_LOCK (rmdemux);
639 if (G_LIKELY (rmdemux->running)) {
640 gst_query_set_duration (query, GST_FORMAT_TIME, rmdemux->duration);
641 GST_DEBUG_OBJECT (rmdemux, "duration set to %" GST_TIME_FORMAT,
642 GST_TIME_ARGS (rmdemux->duration));
645 GST_OBJECT_UNLOCK (rmdemux);
649 case GST_QUERY_SEEKING:{
652 gst_query_parse_seeking (query, &fmt, NULL, NULL, NULL);
653 if (fmt == GST_FORMAT_TIME) {
654 GST_OBJECT_LOCK (rmdemux);
655 if (G_LIKELY (rmdemux->running)) {
656 gst_query_set_seeking (query, GST_FORMAT_TIME, rmdemux->seekable,
657 0, rmdemux->duration);
660 GST_OBJECT_UNLOCK (rmdemux);
665 res = gst_pad_query_default (pad, query);
669 gst_object_unref (rmdemux);
673 static const GstQueryType *
674 gst_rmdemux_src_query_types (GstPad * pad)
676 static const GstQueryType query_types[] = {
687 gst_rmdemux_reset (GstRMDemux * rmdemux)
691 GST_OBJECT_LOCK (rmdemux);
692 rmdemux->running = FALSE;
693 GST_OBJECT_UNLOCK (rmdemux);
695 for (cur = rmdemux->streams; cur; cur = cur->next) {
696 GstRMDemuxStream *stream = cur->data;
698 g_object_unref (stream->adapter);
699 gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
700 gst_element_remove_pad (GST_ELEMENT (rmdemux), stream->pad);
701 if (stream->pending_tags)
702 gst_tag_list_free (stream->pending_tags);
703 if (stream->subpackets)
704 g_ptr_array_free (stream->subpackets, TRUE);
705 g_free (stream->index);
708 g_slist_free (rmdemux->streams);
709 rmdemux->streams = NULL;
710 rmdemux->n_audio_streams = 0;
711 rmdemux->n_video_streams = 0;
713 gst_adapter_clear (rmdemux->adapter);
714 rmdemux->state = RMDEMUX_STATE_HEADER;
715 rmdemux->have_pads = FALSE;
717 gst_segment_init (&rmdemux->segment, GST_FORMAT_UNDEFINED);
718 rmdemux->first_ts = GST_CLOCK_TIME_NONE;
719 rmdemux->base_ts = GST_CLOCK_TIME_NONE;
720 rmdemux->need_newsegment = TRUE;
723 static GstStateChangeReturn
724 gst_rmdemux_change_state (GstElement * element, GstStateChange transition)
726 GstRMDemux *rmdemux = GST_RMDEMUX (element);
727 GstStateChangeReturn res;
729 switch (transition) {
730 case GST_STATE_CHANGE_NULL_TO_READY:
732 case GST_STATE_CHANGE_READY_TO_PAUSED:
733 rmdemux->state = RMDEMUX_STATE_HEADER;
734 rmdemux->have_pads = FALSE;
735 gst_segment_init (&rmdemux->segment, GST_FORMAT_TIME);
736 rmdemux->running = FALSE;
738 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
744 res = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
746 switch (transition) {
747 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
749 case GST_STATE_CHANGE_PAUSED_TO_READY:{
750 gst_rmdemux_reset (rmdemux);
753 case GST_STATE_CHANGE_READY_TO_NULL:
762 /* this function is called when the pad is activated and should start
765 * We check if we can do random access to decide if we work push or
769 gst_rmdemux_sink_activate (GstPad * sinkpad)
771 if (gst_pad_check_pull_range (sinkpad)) {
772 return gst_pad_activate_pull (sinkpad, TRUE);
774 return gst_pad_activate_push (sinkpad, TRUE);
778 /* this function gets called when we activate ourselves in push mode.
779 * We cannot seek (ourselves) in the stream */
781 gst_rmdemux_sink_activate_push (GstPad * pad, gboolean active)
785 rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
787 GST_DEBUG_OBJECT (rmdemux, "activate_push");
789 rmdemux->seekable = FALSE;
794 /* this function gets called when we activate ourselves in pull mode.
795 * We can perform random access to the resource and we start a task
796 * to start reading */
798 gst_rmdemux_sink_activate_pull (GstPad * pad, gboolean active)
802 rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
804 GST_DEBUG_OBJECT (rmdemux, "activate_pull");
807 rmdemux->seekable = TRUE;
809 rmdemux->loop_state = RMDEMUX_LOOP_STATE_HEADER;
810 rmdemux->data_offset = G_MAXUINT;
812 return gst_pad_start_task (pad, (GstTaskFunction) gst_rmdemux_loop, pad);
814 return gst_pad_stop_task (pad);
818 /* random access mode - just pass over to our chain function */
820 gst_rmdemux_loop (GstPad * pad)
824 GstFlowReturn ret = GST_FLOW_OK;
827 rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
829 GST_LOG_OBJECT (rmdemux, "loop with state=%d and offset=0x%x",
830 rmdemux->loop_state, rmdemux->offset);
832 switch (rmdemux->state) {
833 case RMDEMUX_STATE_HEADER:
836 case RMDEMUX_STATE_HEADER_DATA:
839 case RMDEMUX_STATE_DATA_PACKET:
840 size = rmdemux->avg_packet_size;
842 case RMDEMUX_STATE_EOS:
843 GST_LOG_OBJECT (rmdemux, "At EOS, pausing task");
844 ret = GST_FLOW_UNEXPECTED;
847 GST_LOG_OBJECT (rmdemux, "Default: requires %d bytes (state is %d)",
848 (int) rmdemux->size, rmdemux->state);
849 size = rmdemux->size;
852 ret = gst_pad_pull_range (pad, rmdemux->offset, size, &buffer);
853 if (ret != GST_FLOW_OK) {
854 if (rmdemux->offset == rmdemux->index_offset) {
855 /* The index isn't available so forget about it */
856 rmdemux->loop_state = RMDEMUX_LOOP_STATE_DATA;
857 rmdemux->offset = rmdemux->data_offset;
858 GST_OBJECT_LOCK (rmdemux);
859 rmdemux->running = TRUE;
860 rmdemux->seekable = FALSE;
861 GST_OBJECT_UNLOCK (rmdemux);
864 GST_DEBUG_OBJECT (rmdemux, "Unable to pull %d bytes at offset 0x%08x "
865 "(pull_range returned flow %s, state is %d)", (gint) size,
866 rmdemux->offset, gst_flow_get_name (ret), GST_STATE (rmdemux));
871 size = GST_BUFFER_SIZE (buffer);
873 /* Defer to the chain function */
874 ret = gst_rmdemux_chain (pad, buffer);
875 if (ret != GST_FLOW_OK) {
876 GST_DEBUG_OBJECT (rmdemux, "Chain flow failed at offset 0x%08x",
881 rmdemux->offset += size;
883 switch (rmdemux->loop_state) {
884 case RMDEMUX_LOOP_STATE_HEADER:
885 if (rmdemux->offset >= rmdemux->data_offset) {
886 /* It's the end of the header */
887 rmdemux->loop_state = RMDEMUX_LOOP_STATE_INDEX;
888 rmdemux->offset = rmdemux->index_offset;
891 case RMDEMUX_LOOP_STATE_INDEX:
892 if (rmdemux->state == RMDEMUX_STATE_HEADER) {
893 if (rmdemux->index_offset == 0) {
894 /* We've read the last index */
895 rmdemux->loop_state = RMDEMUX_LOOP_STATE_DATA;
896 rmdemux->offset = rmdemux->data_offset;
897 GST_OBJECT_LOCK (rmdemux);
898 rmdemux->running = TRUE;
899 GST_OBJECT_UNLOCK (rmdemux);
901 /* Get the next index */
902 rmdemux->offset = rmdemux->index_offset;
906 case RMDEMUX_LOOP_STATE_DATA:
915 const gchar *reason = gst_flow_get_name (ret);
917 GST_LOG_OBJECT (rmdemux, "pausing task, reason %s", reason);
918 rmdemux->segment_running = FALSE;
919 gst_pad_pause_task (rmdemux->sinkpad);
921 if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
922 if (ret == GST_FLOW_UNEXPECTED) {
923 /* perform EOS logic */
924 if (rmdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
927 /* for segment playback we need to post when (in stream time)
928 * we stopped, this is either stop (when set) or the duration. */
929 if ((stop = rmdemux->segment.stop) == -1)
930 stop = rmdemux->segment.duration;
932 GST_LOG_OBJECT (rmdemux, "Sending segment done, at end of segment");
933 gst_element_post_message (GST_ELEMENT (rmdemux),
934 gst_message_new_segment_done (GST_OBJECT (rmdemux),
935 GST_FORMAT_TIME, stop));
937 /* normal playback, send EOS to all linked pads */
938 GST_LOG_OBJECT (rmdemux, "Sending EOS, at end of stream");
939 gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
942 GST_ELEMENT_ERROR (rmdemux, STREAM, FAILED,
943 (NULL), ("stream stopped, reason %s", reason));
944 gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
952 gst_rmdemux_fourcc_isplausible (guint32 fourcc)
956 for (i = 0; i < 4; i++) {
957 if (!isprint ((int) ((unsigned char *) (&fourcc))[i])) {
965 gst_rmdemux_chain (GstPad * pad, GstBuffer * buffer)
967 GstFlowReturn ret = GST_FLOW_OK;
972 GstRMDemux *rmdemux = GST_RMDEMUX (GST_PAD_PARENT (pad));
974 if (rmdemux->base_ts == -1) {
975 rmdemux->base_ts = GST_BUFFER_TIMESTAMP (buffer);
976 GST_LOG_OBJECT (rmdemux, "base_ts %" GST_TIME_FORMAT,
977 GST_TIME_ARGS (rmdemux->base_ts));
980 gst_adapter_push (rmdemux->adapter, buffer);
982 GST_LOG_OBJECT (rmdemux, "Chaining buffer of size %d",
983 GST_BUFFER_SIZE (buffer));
986 avail = gst_adapter_available (rmdemux->adapter);
988 GST_LOG_OBJECT (rmdemux, "looping in chain, avail %u", avail);
989 switch (rmdemux->state) {
990 case RMDEMUX_STATE_HEADER:
992 if (gst_adapter_available (rmdemux->adapter) < HEADER_SIZE)
995 data = gst_adapter_peek (rmdemux->adapter, HEADER_SIZE);
997 rmdemux->object_id = RMDEMUX_FOURCC_GET (data + 0);
998 rmdemux->size = RMDEMUX_GUINT32_GET (data + 4) - HEADER_SIZE;
999 rmdemux->object_version = RMDEMUX_GUINT16_GET (data + 8);
1001 /* Sanity-check. We assume that the FOURCC is printable ASCII */
1002 if (!gst_rmdemux_fourcc_isplausible (rmdemux->object_id)) {
1003 /* Failed. Remain in HEADER state, try again... We flush only
1004 * the actual FOURCC, not the entire header, because we could
1005 * need to resync anywhere at all... really, this should never
1007 GST_WARNING_OBJECT (rmdemux, "Bogus looking header, unprintable "
1009 gst_adapter_flush (rmdemux->adapter, 4);
1014 GST_LOG_OBJECT (rmdemux, "header found with object_id=%"
1016 " size=%08x object_version=%d",
1017 GST_FOURCC_ARGS (rmdemux->object_id), rmdemux->size,
1018 rmdemux->object_version);
1020 gst_adapter_flush (rmdemux->adapter, HEADER_SIZE);
1022 switch (rmdemux->object_id) {
1023 case GST_MAKE_FOURCC ('.', 'R', 'M', 'F'):
1024 rmdemux->state = RMDEMUX_STATE_HEADER_RMF;
1026 case GST_MAKE_FOURCC ('P', 'R', 'O', 'P'):
1027 rmdemux->state = RMDEMUX_STATE_HEADER_PROP;
1029 case GST_MAKE_FOURCC ('M', 'D', 'P', 'R'):
1030 rmdemux->state = RMDEMUX_STATE_HEADER_MDPR;
1032 case GST_MAKE_FOURCC ('I', 'N', 'D', 'X'):
1033 rmdemux->state = RMDEMUX_STATE_HEADER_INDX;
1035 case GST_MAKE_FOURCC ('D', 'A', 'T', 'A'):
1036 rmdemux->state = RMDEMUX_STATE_HEADER_DATA;
1038 case GST_MAKE_FOURCC ('C', 'O', 'N', 'T'):
1039 rmdemux->state = RMDEMUX_STATE_HEADER_CONT;
1042 rmdemux->state = RMDEMUX_STATE_HEADER_UNKNOWN;
1047 case RMDEMUX_STATE_HEADER_UNKNOWN:
1049 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1052 GST_WARNING_OBJECT (rmdemux, "Unknown object_id %" GST_FOURCC_FORMAT,
1053 GST_FOURCC_ARGS (rmdemux->object_id));
1055 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1056 rmdemux->state = RMDEMUX_STATE_HEADER;
1059 case RMDEMUX_STATE_HEADER_RMF:
1061 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1064 if ((rmdemux->object_version == 0) || (rmdemux->object_version == 1)) {
1065 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1067 gst_rmdemux_parse__rmf (rmdemux, data, rmdemux->size);
1070 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1071 rmdemux->state = RMDEMUX_STATE_HEADER;
1074 case RMDEMUX_STATE_HEADER_PROP:
1076 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1078 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1080 gst_rmdemux_parse_prop (rmdemux, data, rmdemux->size);
1082 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1083 rmdemux->state = RMDEMUX_STATE_HEADER;
1086 case RMDEMUX_STATE_HEADER_MDPR:
1088 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1090 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1092 gst_rmdemux_parse_mdpr (rmdemux, data, rmdemux->size);
1094 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1095 rmdemux->state = RMDEMUX_STATE_HEADER;
1098 case RMDEMUX_STATE_HEADER_CONT:
1100 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1102 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1104 gst_rmdemux_parse_cont (rmdemux, data, rmdemux->size);
1106 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1107 rmdemux->state = RMDEMUX_STATE_HEADER;
1110 case RMDEMUX_STATE_HEADER_DATA:
1112 /* If we haven't already done so then signal there are no more pads */
1113 if (!rmdemux->have_pads) {
1114 GST_LOG_OBJECT (rmdemux, "no more pads");
1115 gst_element_no_more_pads (GST_ELEMENT (rmdemux));
1116 rmdemux->have_pads = TRUE;
1119 /* The actual header is only 8 bytes */
1120 rmdemux->size = DATA_SIZE;
1121 GST_LOG_OBJECT (rmdemux, "data available %d",
1122 gst_adapter_available (rmdemux->adapter));
1123 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1126 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1128 gst_rmdemux_parse_data (rmdemux, data, rmdemux->size);
1130 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1132 rmdemux->state = RMDEMUX_STATE_DATA_PACKET;
1135 case RMDEMUX_STATE_HEADER_INDX:
1137 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1139 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1141 rmdemux->size = gst_rmdemux_parse_indx (rmdemux, data, rmdemux->size);
1143 /* Only flush the header */
1144 gst_adapter_flush (rmdemux->adapter, HEADER_SIZE);
1146 rmdemux->state = RMDEMUX_STATE_INDX_DATA;
1149 case RMDEMUX_STATE_INDX_DATA:
1151 /* There's not always an data to get... */
1152 if (rmdemux->size > 0) {
1153 if (gst_adapter_available (rmdemux->adapter) < rmdemux->size)
1156 data = gst_adapter_peek (rmdemux->adapter, rmdemux->size);
1158 gst_rmdemux_parse_indx_data (rmdemux, data, rmdemux->size);
1160 gst_adapter_flush (rmdemux->adapter, rmdemux->size);
1163 rmdemux->state = RMDEMUX_STATE_HEADER;
1166 case RMDEMUX_STATE_DATA_PACKET:
1168 if (gst_adapter_available (rmdemux->adapter) < 2)
1171 data = gst_adapter_peek (rmdemux->adapter, 2);
1172 version = RMDEMUX_GUINT16_GET (data);
1173 GST_LOG_OBJECT (rmdemux, "Data packet with version=%d", version);
1175 if (version == 0 || version == 1) {
1178 if (gst_adapter_available (rmdemux->adapter) < 4)
1180 data = gst_adapter_peek (rmdemux->adapter, 4);
1182 length = RMDEMUX_GUINT16_GET (data + 2);
1183 GST_LOG_OBJECT (rmdemux, "Got length %d", length);
1186 GST_LOG_OBJECT (rmdemux, "length too small, dropping");
1187 /* Invalid, just drop it */
1188 gst_adapter_flush (rmdemux->adapter, 4);
1192 avail = gst_adapter_available (rmdemux->adapter);
1196 GST_LOG_OBJECT (rmdemux, "we have %u available and we needed %d",
1199 /* flush version and length */
1200 gst_adapter_flush (rmdemux->adapter, 4);
1203 buffer = gst_adapter_take_buffer (rmdemux->adapter, length);
1205 ret = gst_rmdemux_parse_packet (rmdemux, buffer, version);
1206 rmdemux->chunk_index++;
1209 if (rmdemux->chunk_index == rmdemux->n_chunks || length == 0)
1210 rmdemux->state = RMDEMUX_STATE_HEADER;
1213 gst_adapter_flush (rmdemux->adapter, 2);
1215 if (rmdemux->data_offset == 0) {
1216 GST_LOG_OBJECT (rmdemux,
1217 "No further data, internal demux state EOS");
1218 rmdemux->state = RMDEMUX_STATE_EOS;
1220 rmdemux->state = RMDEMUX_STATE_HEADER;
1224 case RMDEMUX_STATE_EOS:
1225 gst_rmdemux_send_event (rmdemux, gst_event_new_eos ());
1228 GST_WARNING_OBJECT (rmdemux, "Unhandled state %d", rmdemux->state);
1237 static GstRMDemuxStream *
1238 gst_rmdemux_get_stream_by_id (GstRMDemux * rmdemux, int id)
1242 for (cur = rmdemux->streams; cur; cur = cur->next) {
1243 GstRMDemuxStream *stream = cur->data;
1245 if (stream->id == id) {
1254 gst_rmdemux_send_event (GstRMDemux * rmdemux, GstEvent * event)
1258 for (cur = rmdemux->streams; cur; cur = cur->next) {
1259 GstRMDemuxStream *stream = cur->data;
1261 GST_DEBUG_OBJECT (rmdemux, "Pushing %s event on pad %s",
1262 GST_EVENT_TYPE_NAME (event), GST_PAD_NAME (stream->pad));
1264 switch (GST_EVENT_TYPE (event)) {
1265 case GST_EVENT_FLUSH_STOP:
1266 stream->last_ts = -1;
1267 stream->next_ts = -1;
1268 stream->last_seq = -1;
1269 stream->next_seq = -1;
1270 stream->last_flow = GST_FLOW_OK;
1275 gst_event_ref (event);
1276 gst_pad_push_event (stream->pad, event);
1278 gst_event_unref (event);
1282 gst_rmdemux_add_stream (GstRMDemux * rmdemux, GstRMDemuxStream * stream)
1284 GstCaps *stream_caps = NULL;
1285 const gchar *codec_tag = NULL;
1286 const gchar *codec_name = NULL;
1289 if (stream->subtype == GST_RMDEMUX_STREAM_VIDEO) {
1290 char *name = g_strdup_printf ("video_%02d", rmdemux->n_video_streams);
1293 gst_pad_new_from_static_template (&gst_rmdemux_videosrc_template, name);
1296 codec_tag = GST_TAG_VIDEO_CODEC;
1298 switch (stream->fourcc) {
1299 case GST_RM_VDO_RV10:
1300 codec_name = "Real Video 1.0";
1303 case GST_RM_VDO_RV20:
1304 codec_name = "Real Video 2.0";
1307 case GST_RM_VDO_RV30:
1308 codec_name = "Real Video 3.0";
1311 case GST_RM_VDO_RV40:
1312 codec_name = "Real Video 4.0";
1316 stream_caps = gst_caps_new_simple ("video/x-unknown-fourcc",
1317 "fourcc", GST_TYPE_FOURCC, 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);
1325 gst_caps_new_simple ("video/x-pn-realvideo", "rmversion", G_TYPE_INT,
1327 "format", G_TYPE_INT,
1328 (int) stream->format,
1329 "subformat", G_TYPE_INT, (int) stream->subformat, NULL);
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);
1339 rmdemux->n_video_streams++;
1341 } else if (stream->subtype == GST_RMDEMUX_STREAM_AUDIO) {
1342 char *name = g_strdup_printf ("audio_%02d", rmdemux->n_audio_streams);
1345 gst_pad_new_from_static_template (&gst_rmdemux_audiosrc_template, name);
1346 GST_LOG_OBJECT (rmdemux, "Created audio pad \"%s\"", name);
1349 codec_tag = GST_TAG_AUDIO_CODEC;
1351 switch (stream->fourcc) {
1352 /* Older RealAudio Codecs */
1353 case GST_RM_AUD_14_4:
1354 codec_name = "Real Audio 14.4kbps";
1358 case GST_RM_AUD_28_8:
1359 codec_name = "Real Audio 28.8kbps";
1363 /* DolbyNet (Dolby AC3, low bitrate) */
1364 case GST_RM_AUD_DNET:
1365 codec_name = "AC-3 audio";
1367 gst_caps_new_simple ("audio/x-ac3", "rate", G_TYPE_INT,
1368 (int) stream->rate, NULL);
1369 stream->needs_descrambling = TRUE;
1370 stream->subpackets_needed = 1;
1371 stream->subpackets = NULL;
1375 case GST_RM_AUD_RAAC:
1376 case GST_RM_AUD_RACP:
1377 codec_name = "MPEG4 audio";
1379 gst_caps_new_simple ("audio/mpeg", "mpegversion", G_TYPE_INT,
1380 (int) 4, "framed", G_TYPE_BOOLEAN, TRUE, NULL);
1381 if (stream->extra_data_size > 0) {
1382 /* strip off an unknown byte in the extra data */
1383 stream->extra_data_size--;
1384 stream->extra_data++;
1386 stream->needs_descrambling = TRUE;
1387 stream->subpackets_needed = 1;
1388 stream->subpackets = NULL;
1392 case GST_RM_AUD_ATRC:
1393 codec_name = "Sony ATRAC3";
1394 stream_caps = gst_caps_new_simple ("audio/x-vnd.sony.atrac3", NULL);
1395 stream->needs_descrambling = TRUE;
1396 stream->subpackets_needed = stream->height;
1397 stream->subpackets = NULL;
1400 /* RealAudio G2 audio */
1401 case GST_RM_AUD_COOK:
1402 codec_name = "Real Audio G2 (Cook)";
1404 stream->needs_descrambling = TRUE;
1405 stream->subpackets_needed = stream->height;
1406 stream->subpackets = NULL;
1409 /* RALF is lossless */
1410 case GST_RM_AUD_RALF:
1411 codec_name = "Real Audio Lossless (RALF)";
1412 GST_DEBUG_OBJECT (rmdemux, "RALF");
1413 stream_caps = gst_caps_new_simple ("audio/x-ralf-mpeg4-generic", NULL);
1416 case GST_RM_AUD_SIPR:
1418 if (stream->flavor > 3) {
1419 GST_WARNING_OBJECT (rmdemux, "bad SIPR flavor %d, freeing it",
1425 codec_name = "Sipro/ACELP.NET Voice";
1426 GST_DEBUG_OBJECT (rmdemux, "SIPR");
1427 stream_caps = gst_caps_new_simple ("audio/x-sipro", NULL);
1428 stream->needs_descrambling = TRUE;
1429 stream->subpackets_needed = stream->height;
1430 stream->subpackets = NULL;
1431 stream->leaf_size = sipr_subpk_size[stream->flavor];
1436 stream_caps = gst_caps_new_simple ("video/x-unknown-fourcc",
1437 "fourcc", GST_TYPE_FOURCC, stream->fourcc, NULL);
1438 GST_WARNING_OBJECT (rmdemux,
1439 "Unknown audio FOURCC code \"%" GST_FOURCC_FORMAT "\" (%08x)",
1440 GST_FOURCC_ARGS (stream->fourcc), stream->fourcc);
1446 gst_caps_new_simple ("audio/x-pn-realaudio", "raversion", G_TYPE_INT,
1447 (int) version, NULL);
1451 gst_caps_set_simple (stream_caps,
1452 "flavor", G_TYPE_INT, (int) stream->flavor,
1453 "rate", G_TYPE_INT, (int) stream->rate,
1454 "channels", G_TYPE_INT, (int) stream->n_channels,
1455 "width", G_TYPE_INT, (int) stream->sample_width,
1456 "leaf_size", G_TYPE_INT, (int) stream->leaf_size,
1457 "packet_size", G_TYPE_INT, (int) stream->packet_size,
1458 "bitrate", G_TYPE_INT, (int) stream->bitrate,
1459 "height", G_TYPE_INT, (int) stream->height, NULL);
1461 rmdemux->n_audio_streams++;
1463 GST_WARNING_OBJECT (rmdemux, "not adding stream of type %d, freeing it",
1469 GST_PAD_ELEMENT_PRIVATE (stream->pad) = stream;
1470 rmdemux->streams = g_slist_append (rmdemux->streams, stream);
1471 GST_LOG_OBJECT (rmdemux, "n_streams is now %d",
1472 g_slist_length (rmdemux->streams));
1474 GST_LOG ("stream->pad = %p, stream_caps = %" GST_PTR_FORMAT, stream->pad,
1477 if (stream->pad && stream_caps) {
1479 GST_LOG_OBJECT (rmdemux, "%d bytes of extra data for stream %s",
1480 stream->extra_data_size, GST_PAD_NAME (stream->pad));
1482 /* add codec_data if there is any */
1483 if (stream->extra_data_size > 0) {
1486 buffer = gst_buffer_new_and_alloc (stream->extra_data_size);
1487 memcpy (GST_BUFFER_DATA (buffer), stream->extra_data,
1488 stream->extra_data_size);
1490 gst_caps_set_simple (stream_caps, "codec_data", GST_TYPE_BUFFER,
1493 gst_buffer_unref (buffer);
1496 gst_pad_use_fixed_caps (stream->pad);
1498 gst_pad_set_caps (stream->pad, stream_caps);
1499 gst_pad_set_event_function (stream->pad,
1500 GST_DEBUG_FUNCPTR (gst_rmdemux_src_event));
1501 gst_pad_set_query_type_function (stream->pad,
1502 GST_DEBUG_FUNCPTR (gst_rmdemux_src_query_types));
1503 gst_pad_set_query_function (stream->pad,
1504 GST_DEBUG_FUNCPTR (gst_rmdemux_src_query));
1506 GST_DEBUG_OBJECT (rmdemux, "adding pad %s with caps %" GST_PTR_FORMAT
1507 ", stream_id=%d", GST_PAD_NAME (stream->pad), stream_caps, stream->id);
1508 gst_pad_set_active (stream->pad, TRUE);
1509 gst_element_add_pad (GST_ELEMENT_CAST (rmdemux), stream->pad);
1511 /* save for later, we must send the tags after the newsegment event */
1512 if (codec_name != NULL && codec_tag != NULL) {
1513 if (stream->pending_tags == NULL)
1514 stream->pending_tags = gst_tag_list_new ();
1515 gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_KEEP,
1516 codec_tag, codec_name, NULL);
1523 gst_caps_unref (stream_caps);
1527 re_skip_pascal_string (const guint8 * ptr)
1537 gst_rmdemux_parse__rmf (GstRMDemux * rmdemux, const guint8 * data, int length)
1539 GST_LOG_OBJECT (rmdemux, "file_version: %d", RMDEMUX_GUINT32_GET (data));
1540 GST_LOG_OBJECT (rmdemux, "num_headers: %d", RMDEMUX_GUINT32_GET (data + 4));
1544 gst_rmdemux_parse_prop (GstRMDemux * rmdemux, const guint8 * data, int length)
1546 GST_LOG_OBJECT (rmdemux, "max bitrate: %d", RMDEMUX_GUINT32_GET (data));
1547 GST_LOG_OBJECT (rmdemux, "avg bitrate: %d", RMDEMUX_GUINT32_GET (data + 4));
1548 GST_LOG_OBJECT (rmdemux, "max packet size: %d",
1549 RMDEMUX_GUINT32_GET (data + 8));
1550 rmdemux->avg_packet_size = RMDEMUX_GUINT32_GET (data + 12);
1551 GST_LOG_OBJECT (rmdemux, "avg packet size: %d", rmdemux->avg_packet_size);
1552 rmdemux->num_packets = RMDEMUX_GUINT32_GET (data + 16);
1553 GST_LOG_OBJECT (rmdemux, "number of packets: %d", rmdemux->num_packets);
1555 GST_LOG_OBJECT (rmdemux, "duration: %d", RMDEMUX_GUINT32_GET (data + 20));
1556 rmdemux->duration = RMDEMUX_GUINT32_GET (data + 20) * GST_MSECOND;
1558 GST_LOG_OBJECT (rmdemux, "preroll: %d", RMDEMUX_GUINT32_GET (data + 24));
1559 rmdemux->index_offset = RMDEMUX_GUINT32_GET (data + 28);
1560 GST_LOG_OBJECT (rmdemux, "offset of INDX section: 0x%08x",
1561 rmdemux->index_offset);
1562 rmdemux->data_offset = RMDEMUX_GUINT32_GET (data + 32);
1563 GST_LOG_OBJECT (rmdemux, "offset of DATA section: 0x%08x",
1564 rmdemux->data_offset);
1565 GST_LOG_OBJECT (rmdemux, "n streams: %d", RMDEMUX_GUINT16_GET (data + 36));
1566 GST_LOG_OBJECT (rmdemux, "flags: 0x%04x", RMDEMUX_GUINT16_GET (data + 38));
1570 gst_rmdemux_parse_mdpr (GstRMDemux * rmdemux, const guint8 * data, int length)
1572 GstRMDemuxStream *stream;
1573 char *stream1_type_string;
1574 char *stream2_type_string;
1578 guint32 max_bitrate;
1579 guint32 avg_bitrate;
1581 stream = g_new0 (GstRMDemuxStream, 1);
1583 stream->id = RMDEMUX_GUINT16_GET (data);
1584 stream->index = NULL;
1585 stream->seek_offset = 0;
1586 stream->last_ts = -1;
1587 stream->next_ts = -1;
1588 stream->last_flow = GST_FLOW_OK;
1589 stream->discont = TRUE;
1590 stream->adapter = gst_adapter_new ();
1591 GST_LOG_OBJECT (rmdemux, "stream_number=%d", stream->id);
1593 /* parse the bitrates */
1594 max_bitrate = RMDEMUX_GUINT32_GET (data + 2);
1595 avg_bitrate = RMDEMUX_GUINT32_GET (data + 6);
1596 stream->bitrate = avg_bitrate;
1597 GST_LOG_OBJECT (rmdemux, "Stream max bitrate=%u", max_bitrate);
1598 GST_LOG_OBJECT (rmdemux, "Stream avg bitrate=%u", avg_bitrate);
1599 if (max_bitrate != 0) {
1600 if (stream->pending_tags == NULL)
1601 stream->pending_tags = gst_tag_list_new ();
1602 gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE,
1603 GST_TAG_MAXIMUM_BITRATE, max_bitrate, NULL);
1605 if (avg_bitrate != 0) {
1606 if (stream->pending_tags == NULL)
1607 stream->pending_tags = gst_tag_list_new ();
1608 gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE,
1609 GST_TAG_BITRATE, avg_bitrate, NULL);
1613 stream1_type_string = gst_rm_utils_read_string8 (data + offset,
1614 length - offset, &str_len);
1616 stream2_type_string = gst_rm_utils_read_string8 (data + offset,
1617 length - offset, &str_len);
1620 /* stream1_type_string for audio and video stream is a "put_whatever_you_want" field :
1622 * - "[The ]Video/Audio Stream" (File produced by an official Real encoder)
1623 * - "RealVideoPremierePlugIn-VIDEO/AUDIO" (File produced by Abobe Premiere)
1625 * so, we should not rely on it to know which stream type it is
1628 GST_LOG_OBJECT (rmdemux, "stream type: %s", stream1_type_string);
1629 GST_LOG_OBJECT (rmdemux, "MIME type=%s", stream2_type_string);
1631 if (strcmp (stream2_type_string, "video/x-pn-realvideo") == 0) {
1632 stream_type = GST_RMDEMUX_STREAM_VIDEO;
1633 } else if (strcmp (stream2_type_string,
1634 "video/x-pn-multirate-realvideo") == 0) {
1635 stream_type = GST_RMDEMUX_STREAM_VIDEO;
1636 } else if (strcmp (stream2_type_string, "audio/x-pn-realaudio") == 0) {
1637 stream_type = GST_RMDEMUX_STREAM_AUDIO;
1638 } else if (strcmp (stream2_type_string,
1639 "audio/x-pn-multirate-realaudio") == 0) {
1640 stream_type = GST_RMDEMUX_STREAM_AUDIO;
1641 } else if (strcmp (stream2_type_string,
1642 "audio/x-pn-multirate-realaudio-live") == 0) {
1643 stream_type = GST_RMDEMUX_STREAM_AUDIO;
1644 } else if (strcmp (stream2_type_string, "audio/x-ralf-mpeg4-generic") == 0) {
1645 /* Another audio type found in the real testsuite */
1646 stream_type = GST_RMDEMUX_STREAM_AUDIO;
1647 } else if (strcmp (stream1_type_string, "") == 0 &&
1648 strcmp (stream2_type_string, "logical-fileinfo") == 0) {
1649 stream_type = GST_RMDEMUX_STREAM_FILEINFO;
1651 stream_type = GST_RMDEMUX_STREAM_UNKNOWN;
1652 GST_WARNING_OBJECT (rmdemux, "unknown stream type \"%s\",\"%s\"",
1653 stream1_type_string, stream2_type_string);
1655 g_free (stream1_type_string);
1656 g_free (stream2_type_string);
1660 stream->subtype = stream_type;
1661 switch (stream_type) {
1663 case GST_RMDEMUX_STREAM_VIDEO:
1664 /* RV10/RV20/RV30/RV40 => video/x-pn-realvideo, version=1,2,3,4 */
1665 stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 8);
1666 stream->width = RMDEMUX_GUINT16_GET (data + offset + 12);
1667 stream->height = RMDEMUX_GUINT16_GET (data + offset + 14);
1668 stream->rate = RMDEMUX_GUINT16_GET (data + offset + 16);
1669 stream->subformat = RMDEMUX_GUINT32_GET (data + offset + 26);
1670 stream->format = RMDEMUX_GUINT32_GET (data + offset + 30);
1671 stream->extra_data_size = length - (offset + 26);
1672 stream->extra_data = (guint8 *) data + offset + 26;
1673 /* Natural way to represent framerates here requires unsigned 32 bit
1674 * numerator, which we don't have. For the nasty case, approximate...
1677 guint32 numerator = RMDEMUX_GUINT16_GET (data + offset + 22) * 65536 +
1678 RMDEMUX_GUINT16_GET (data + offset + 24);
1679 if (numerator > G_MAXINT) {
1680 stream->framerate_numerator = (gint) (numerator >> 1);
1681 stream->framerate_denominator = 32768;
1683 stream->framerate_numerator = (gint) numerator;
1684 stream->framerate_denominator = 65536;
1688 GST_DEBUG_OBJECT (rmdemux,
1689 "Video stream with fourcc=%" GST_FOURCC_FORMAT
1690 " width=%d height=%d rate=%d framerate=%d/%d subformat=%x format=%x extra_data_size=%d",
1691 GST_FOURCC_ARGS (stream->fourcc), stream->width, stream->height,
1692 stream->rate, stream->framerate_numerator,
1693 stream->framerate_denominator, stream->subformat, stream->format,
1694 stream->extra_data_size);
1696 case GST_RMDEMUX_STREAM_AUDIO:{
1697 stream->version = RMDEMUX_GUINT16_GET (data + offset + 4);
1698 GST_INFO ("stream version = %u", stream->version);
1699 switch (stream->version) {
1701 stream->fourcc = GST_RM_AUD_14_4;
1702 stream->packet_size = 20;
1703 stream->rate = 8000;
1704 stream->n_channels = 1;
1705 stream->sample_width = 16;
1707 stream->leaf_size = 0;
1711 stream->flavor = RMDEMUX_GUINT16_GET (data + offset + 22);
1712 stream->packet_size = RMDEMUX_GUINT32_GET (data + offset + 24);
1713 /* stream->frame_size = RMDEMUX_GUINT32_GET (data + offset + 42); */
1714 stream->leaf_size = RMDEMUX_GUINT16_GET (data + offset + 44);
1715 stream->height = RMDEMUX_GUINT16_GET (data + offset + 40);
1716 stream->rate = RMDEMUX_GUINT16_GET (data + offset + 48);
1717 stream->sample_width = RMDEMUX_GUINT16_GET (data + offset + 52);
1718 stream->n_channels = RMDEMUX_GUINT16_GET (data + offset + 54);
1719 stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 62);
1720 stream->extra_data_size = RMDEMUX_GUINT32_GET (data + offset + 69);
1721 GST_DEBUG_OBJECT (rmdemux, "%u bytes of extra codec data",
1722 stream->extra_data_size);
1723 if (length - (offset + 73) >= stream->extra_data_size) {
1724 stream->extra_data = (guint8 *) data + offset + 73;
1726 GST_WARNING_OBJECT (rmdemux, "codec data runs beyond MDPR chunk");
1727 stream->extra_data_size = 0;
1731 stream->flavor = RMDEMUX_GUINT16_GET (data + offset + 22);
1732 stream->packet_size = RMDEMUX_GUINT32_GET (data + offset + 24);
1733 /* stream->frame_size = RMDEMUX_GUINT32_GET (data + offset + 42); */
1734 stream->leaf_size = RMDEMUX_GUINT16_GET (data + offset + 44);
1735 stream->height = RMDEMUX_GUINT16_GET (data + offset + 40);
1736 stream->rate = RMDEMUX_GUINT16_GET (data + offset + 54);
1737 stream->sample_width = RMDEMUX_GUINT16_GET (data + offset + 58);
1738 stream->n_channels = RMDEMUX_GUINT16_GET (data + offset + 60);
1739 stream->fourcc = RMDEMUX_FOURCC_GET (data + offset + 66);
1740 stream->extra_data_size = RMDEMUX_GUINT32_GET (data + offset + 74);
1741 GST_DEBUG_OBJECT (rmdemux, "%u bytes of extra codec data",
1742 stream->extra_data_size);
1743 if (length - (offset + 78) >= stream->extra_data_size) {
1744 stream->extra_data = (guint8 *) data + offset + 78;
1746 GST_WARNING_OBJECT (rmdemux, "codec data runs beyond MDPR chunk");
1747 stream->extra_data_size = 0;
1751 GST_WARNING_OBJECT (rmdemux, "Unhandled audio stream version %d",
1756 /* 14_4, 28_8, cook, dnet, sipr, raac, racp, ralf, atrc */
1757 GST_DEBUG_OBJECT (rmdemux,
1758 "Audio stream with rate=%d sample_width=%d n_channels=%d",
1759 stream->rate, stream->sample_width, stream->n_channels);
1763 case GST_RMDEMUX_STREAM_FILEINFO:
1767 /* Length of this section */
1768 GST_DEBUG_OBJECT (rmdemux, "length2: 0x%08x",
1769 RMDEMUX_GUINT32_GET (data + offset));
1772 /* Unknown : 00 00 00 00 */
1775 /* Number of variables that would follow (loop iterations) */
1776 element_nb = RMDEMUX_GUINT32_GET (data + offset);
1779 while (element_nb) {
1780 /* Category Id : 00 00 00 XX 00 00 */
1784 offset += re_skip_pascal_string (data + offset);
1786 /* Variable Value Type */
1787 /* 00 00 00 00 00 => integer/boolean, preceded by length */
1788 /* 00 00 00 02 00 => pascal string, preceded by length, no trailing \0 */
1791 /* Variable Value */
1792 offset += re_skip_pascal_string (data + offset);
1798 case GST_RMDEMUX_STREAM_UNKNOWN:
1803 gst_rmdemux_add_stream (rmdemux, stream);
1807 gst_rmdemux_parse_indx (GstRMDemux * rmdemux, const guint8 * data, int length)
1812 n = RMDEMUX_GUINT32_GET (data);
1813 id = RMDEMUX_GUINT16_GET (data + 4);
1814 rmdemux->index_offset = RMDEMUX_GUINT32_GET (data + 6);
1816 GST_DEBUG_OBJECT (rmdemux, "Number of indices=%d Stream ID=%d length=%d", n,
1819 /* Point to the next index_stream */
1820 rmdemux->index_stream = gst_rmdemux_get_stream_by_id (rmdemux, id);
1822 /* Return the length of the index */
1827 gst_rmdemux_parse_indx_data (GstRMDemux * rmdemux, const guint8 * data,
1832 GstRMDemuxIndex *index;
1834 /* The number of index records */
1837 if (rmdemux->index_stream == NULL)
1840 /* don't parse the index a second time when operating pull-based and
1841 * reaching the end of the file */
1842 if (rmdemux->index_stream->index_length > 0) {
1843 GST_DEBUG_OBJECT (rmdemux, "Already have an index for this stream");
1847 index = g_malloc (sizeof (GstRMDemuxIndex) * n);
1848 rmdemux->index_stream->index = index;
1849 rmdemux->index_stream->index_length = n;
1851 for (i = 0; i < n; i++) {
1852 index[i].timestamp = RMDEMUX_GUINT32_GET (data + 2) * GST_MSECOND;
1853 index[i].offset = RMDEMUX_GUINT32_GET (data + 6);
1855 GST_DEBUG_OBJECT (rmdemux, "Index found for timestamp=%f (at offset=%x)",
1856 gst_guint64_to_gdouble (index[i].timestamp) / GST_SECOND,
1863 gst_rmdemux_parse_data (GstRMDemux * rmdemux, const guint8 * data, int length)
1865 rmdemux->n_chunks = RMDEMUX_GUINT32_GET (data);
1866 rmdemux->data_offset = RMDEMUX_GUINT32_GET (data + 4);
1867 rmdemux->chunk_index = 0;
1868 GST_DEBUG_OBJECT (rmdemux, "Data chunk found with %d packets "
1869 "(next data at 0x%08x)", rmdemux->n_chunks, rmdemux->data_offset);
1873 gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data, int length)
1877 tags = gst_rm_utils_read_tags (data, length, gst_rm_utils_read_string16);
1879 gst_element_found_tags (GST_ELEMENT (rmdemux), tags);
1883 static GstFlowReturn
1884 gst_rmdemux_combine_flows (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
1889 /* store the value */
1890 stream->last_flow = ret;
1892 /* if it's success we can return the value right away */
1893 if (GST_FLOW_IS_SUCCESS (ret))
1896 /* any other error that is not-linked can be returned right
1898 if (ret != GST_FLOW_NOT_LINKED)
1901 for (cur = rmdemux->streams; cur; cur = cur->next) {
1902 GstRMDemuxStream *ostream = cur->data;
1904 ret = ostream->last_flow;
1905 /* some other return value (must be SUCCESS but we can return
1906 * other values as well) */
1907 if (ret != GST_FLOW_NOT_LINKED)
1910 /* if we get here, all other pads were unlinked and we return
1911 * NOT_LINKED then */
1917 gst_rmdemux_stream_clear_cached_subpackets (GstRMDemux * rmdemux,
1918 GstRMDemuxStream * stream)
1920 if (stream->subpackets == NULL || stream->subpackets->len == 0)
1923 GST_DEBUG_OBJECT (rmdemux, "discarding %u previously collected subpackets",
1924 stream->subpackets->len);
1925 g_ptr_array_foreach (stream->subpackets, (GFunc) gst_mini_object_unref, NULL);
1926 g_ptr_array_set_size (stream->subpackets, 0);
1929 static GstFlowReturn
1930 gst_rmdemux_descramble_audio (GstRMDemux * rmdemux, GstRMDemuxStream * stream)
1934 guint packet_size = stream->packet_size;
1935 guint height = stream->subpackets->len;
1936 guint leaf_size = stream->leaf_size;
1939 g_assert (stream->height == height);
1941 GST_LOG ("packet_size = %u, leaf_size = %u, height= %u", packet_size,
1944 ret = gst_pad_alloc_buffer_and_set_caps (stream->pad,
1945 GST_BUFFER_OFFSET_NONE, height * packet_size,
1946 GST_PAD_CAPS (stream->pad), &outbuf);
1948 if (ret != GST_FLOW_OK)
1951 for (p = 0; p < height; ++p) {
1952 GstBuffer *b = g_ptr_array_index (stream->subpackets, p);
1953 guint8 *b_data = GST_BUFFER_DATA (b);
1956 GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (b);
1958 for (x = 0; x < packet_size / leaf_size; ++x) {
1961 idx = height * x + ((height + 1) / 2) * (p % 2) + (p / 2);
1962 /* GST_LOG ("%3u => %3u", (height * p) + x, idx); */
1963 memcpy (GST_BUFFER_DATA (outbuf) + leaf_size * idx, b_data, leaf_size);
1964 b_data += leaf_size;
1968 /* some decoders, such as realaudiodec, need to be fed in packet units */
1969 for (p = 0; p < height; ++p) {
1972 subbuf = gst_buffer_create_sub (outbuf, p * packet_size, packet_size);
1974 GST_LOG_OBJECT (rmdemux, "pushing buffer timestamp %" GST_TIME_FORMAT,
1975 GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (subbuf)));
1977 if (stream->discont) {
1978 GST_BUFFER_FLAG_SET (subbuf, GST_BUFFER_FLAG_DISCONT);
1979 stream->discont = FALSE;
1982 gst_buffer_set_caps (subbuf, GST_PAD_CAPS (stream->pad));
1983 ret = gst_pad_push (stream->pad, subbuf);
1984 if (ret != GST_FLOW_OK)
1988 gst_buffer_unref (outbuf);
1992 gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
1997 static GstFlowReturn
1998 gst_rmdemux_descramble_dnet_audio (GstRMDemux * rmdemux,
1999 GstRMDemuxStream * stream)
2003 buf = g_ptr_array_index (stream->subpackets, 0);
2004 g_ptr_array_index (stream->subpackets, 0) = NULL;
2005 g_ptr_array_set_size (stream->subpackets, 0);
2007 buf = gst_rm_utils_descramble_dnet_buffer (buf);
2009 if (stream->discont) {
2010 GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
2011 stream->discont = FALSE;
2013 return gst_pad_push (stream->pad, buf);
2016 static GstFlowReturn
2017 gst_rmdemux_descramble_mp4a_audio (GstRMDemux * rmdemux,
2018 GstRMDemuxStream * stream)
2021 GstBuffer *buf, *outbuf;
2022 guint frames, index, i;
2024 GstClockTime timestamp;
2028 buf = g_ptr_array_index (stream->subpackets, 0);
2029 g_ptr_array_index (stream->subpackets, 0) = NULL;
2030 g_ptr_array_set_size (stream->subpackets, 0);
2032 data = GST_BUFFER_DATA (buf);
2033 timestamp = GST_BUFFER_TIMESTAMP (buf);
2035 frames = (data[1] & 0xf0) >> 4;
2036 index = 2 * frames + 2;
2038 for (i = 0; i < frames; i++) {
2039 guint len = (data[i * 2 + 2] << 8) | data[i * 2 + 3];
2041 outbuf = gst_buffer_create_sub (buf, index, len);
2043 GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
2044 gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
2048 if (stream->discont) {
2049 GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
2050 stream->discont = FALSE;
2052 res = gst_pad_push (stream->pad, outbuf);
2053 if (res != GST_FLOW_OK)
2056 gst_buffer_unref (buf);
2060 static GstFlowReturn
2061 gst_rmdemux_descramble_sipr_audio (GstRMDemux * rmdemux,
2062 GstRMDemuxStream * stream)
2066 guint packet_size = stream->packet_size;
2067 guint height = stream->subpackets->len;
2070 g_assert (stream->height == height);
2072 GST_LOG ("packet_size = %u, leaf_size = %u, height= %u", packet_size,
2073 stream->leaf_size, height);
2075 ret = gst_pad_alloc_buffer_and_set_caps (stream->pad,
2076 GST_BUFFER_OFFSET_NONE, height * packet_size,
2077 GST_PAD_CAPS (stream->pad), &outbuf);
2079 if (ret != GST_FLOW_OK)
2082 for (p = 0; p < height; ++p) {
2083 GstBuffer *b = g_ptr_array_index (stream->subpackets, p);
2084 guint8 *b_data = GST_BUFFER_DATA (b);
2087 GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (b);
2089 memcpy (GST_BUFFER_DATA (outbuf) + packet_size * p, b_data, packet_size);
2092 GST_LOG_OBJECT (rmdemux, "pushing buffer timestamp %" GST_TIME_FORMAT,
2093 GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)));
2095 if (stream->discont) {
2096 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
2097 stream->discont = FALSE;
2100 outbuf = gst_rm_utils_descramble_sipr_buffer (outbuf);
2102 gst_buffer_set_caps (outbuf, GST_PAD_CAPS (stream->pad));
2103 ret = gst_pad_push (stream->pad, outbuf);
2107 gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
2112 static GstFlowReturn
2113 gst_rmdemux_handle_scrambled_packet (GstRMDemux * rmdemux,
2114 GstRMDemuxStream * stream, GstBuffer * buf, gboolean keyframe)
2118 if (stream->subpackets == NULL)
2119 stream->subpackets = g_ptr_array_sized_new (stream->subpackets_needed);
2121 GST_LOG ("Got subpacket %u/%u, len=%u, key=%d", stream->subpackets->len + 1,
2122 stream->subpackets_needed, GST_BUFFER_SIZE (buf), keyframe);
2124 if (keyframe && stream->subpackets->len > 0) {
2125 gst_rmdemux_stream_clear_cached_subpackets (rmdemux, stream);
2128 g_ptr_array_add (stream->subpackets, buf);
2130 if (stream->subpackets->len < stream->subpackets_needed)
2133 g_assert (stream->subpackets->len >= 1);
2135 switch (stream->fourcc) {
2136 case GST_RM_AUD_DNET:
2137 ret = gst_rmdemux_descramble_dnet_audio (rmdemux, stream);
2139 case GST_RM_AUD_COOK:
2140 case GST_RM_AUD_ATRC:
2141 ret = gst_rmdemux_descramble_audio (rmdemux, stream);
2143 case GST_RM_AUD_RAAC:
2144 case GST_RM_AUD_RACP:
2145 ret = gst_rmdemux_descramble_mp4a_audio (rmdemux, stream);
2147 case GST_RM_AUD_SIPR:
2148 ret = gst_rmdemux_descramble_sipr_audio (rmdemux, stream);
2151 g_assert_not_reached ();
2158 gst_rmdemux_fix_timestamp (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2159 guint8 * data, GstClockTime timestamp)
2163 GstClockTime ts = timestamp;
2165 if (timestamp == GST_CLOCK_TIME_NONE)
2168 /* only adjust when we have a stream with B frames */
2169 if (stream->format < 0x20200002)
2172 /* Fix timestamp. */
2173 switch (stream->fourcc) {
2174 case GST_RM_VDO_RV10:
2176 case GST_RM_VDO_RV20:
2179 * Bit 1- 2: frame type
2181 * Bit 10-22: sequence number
2184 frame_type = (data[0] >> 6) & 0x03;
2185 seq = ((data[1] & 0x7f) << 6) + ((data[2] & 0xfc) >> 2);
2188 case GST_RM_VDO_RV30:
2192 * Bit 3: skip packet if 1
2193 * Bit 4- 5: frame type
2195 * Bit 13-25: sequence number
2198 frame_type = (data[0] >> 3) & 0x03;
2199 seq = ((data[1] & 0x0f) << 9) + (data[2] << 1) + ((data[3] & 0x80) >> 7);
2202 case GST_RM_VDO_RV40:
2205 * Bit 1: skip packet if 1
2206 * Bit 2- 3: frame type
2208 * Bit 14-26: sequence number
2211 frame_type = (data[0] >> 5) & 0x03;
2212 seq = ((data[1] & 0x07) << 10) + (data[2] << 2) + ((data[3] & 0xc0) >> 6);
2216 goto unknown_version;
2219 switch (frame_type) {
2223 GST_LOG_OBJECT (rmdemux, "I frame %d", frame_type);
2225 if (stream->next_ts == -1)
2226 stream->next_ts = timestamp;
2228 timestamp = stream->next_ts;
2229 stream->last_ts = stream->next_ts;
2230 stream->next_ts = ts;
2231 stream->last_seq = stream->next_seq;
2232 stream->next_seq = seq;
2237 GST_LOG_OBJECT (rmdemux, "P frame");
2239 timestamp = stream->last_ts = stream->next_ts;
2240 if (seq < stream->next_seq)
2241 stream->next_ts += (seq + 0x2000 - stream->next_seq) * GST_MSECOND;
2243 stream->next_ts += (seq - stream->next_seq) * GST_MSECOND;
2244 stream->last_seq = stream->next_seq;
2245 stream->next_seq = seq;
2250 GST_LOG_OBJECT (rmdemux, "B frame");
2252 if (seq < stream->last_seq) {
2254 (seq + 0x2000 - stream->last_seq) * GST_MSECOND + stream->last_ts;
2256 timestamp = (seq - stream->last_seq) * GST_MSECOND + stream->last_ts;
2261 goto unknown_frame_type;
2265 GST_LOG_OBJECT (rmdemux,
2266 "timestamp %" GST_TIME_FORMAT " -> %" GST_TIME_FORMAT, GST_TIME_ARGS (ts),
2267 GST_TIME_ARGS (timestamp));
2274 GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE,
2275 ("Unknown version: %i.", stream->version), (NULL));
2276 return GST_FLOW_ERROR;
2281 GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE, ("Unknown frame type %d.",
2282 frame_type), (NULL));
2283 return GST_FLOW_ERROR;
2287 #define PARSE_NUMBER(data, size, number, label) \
2291 number = GST_READ_UINT16_BE (data); \
2292 if (!(number & 0xc000)) { \
2295 number = GST_READ_UINT32_BE (data); \
2305 static GstFlowReturn
2306 gst_rmdemux_parse_video_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2307 GstBuffer * in, guint offset, guint16 version,
2308 GstClockTime timestamp, gboolean key)
2311 const guint8 *data, *base;
2314 base = GST_BUFFER_DATA (in);
2315 data = base + offset;
2316 size = GST_BUFFER_SIZE (in) - offset;
2317 /* if size <= 2, we want this method to return the same GstFlowReturn as it
2318 * was previously for that given stream. */
2319 ret = stream->last_flow;
2325 guint pkg_subseq = 0, pkg_seqnum = G_MAXUINT;
2326 guint fragment_size;
2327 GstBuffer *fragment;
2329 pkg_header = *data++;
2333 * bit 7: 1=last block in block chain
2334 * bit 6: 1=short header (only one block?)
2336 if ((pkg_header & 0xc0) == 0x40) {
2337 /* skip unknown byte */
2343 if ((pkg_header & 0x40) == 0) {
2344 pkg_subseq = (*data++) & 0x7f;
2351 PARSE_NUMBER (data, size, pkg_length, not_enough_data);
2354 PARSE_NUMBER (data, size, pkg_offset, not_enough_data);
2358 goto not_enough_data;
2360 pkg_seqnum = *data++;
2364 GST_DEBUG_OBJECT (rmdemux,
2365 "seq %d, subseq %d, offset %d, length %d, size %d, header %02x",
2366 pkg_seqnum, pkg_subseq, pkg_offset, pkg_length, size, pkg_header);
2368 /* calc size of fragment */
2369 if ((pkg_header & 0xc0) == 0x80) {
2370 fragment_size = pkg_offset;
2372 if ((pkg_header & 0xc0) == 0)
2373 fragment_size = size;
2375 fragment_size = pkg_length;
2377 GST_DEBUG_OBJECT (rmdemux, "fragment size %d", fragment_size);
2379 /* get the fragment */
2380 fragment = gst_buffer_create_sub (in, data - base, fragment_size);
2382 if (pkg_subseq == 1) {
2383 GST_DEBUG_OBJECT (rmdemux, "start new fragment");
2384 gst_adapter_clear (stream->adapter);
2385 stream->frag_current = 0;
2386 stream->frag_count = 0;
2387 stream->frag_length = pkg_length;
2388 } else if (pkg_subseq == 0) {
2389 GST_DEBUG_OBJECT (rmdemux, "non fragmented packet");
2390 stream->frag_current = 0;
2391 stream->frag_count = 0;
2392 stream->frag_length = fragment_size;
2395 /* put fragment in adapter */
2396 gst_adapter_push (stream->adapter, fragment);
2397 stream->frag_offset[stream->frag_count] = stream->frag_current;
2398 stream->frag_current += fragment_size;
2399 stream->frag_count++;
2401 if (stream->frag_count > MAX_FRAGS)
2402 goto too_many_fragments;
2404 GST_DEBUG_OBJECT (rmdemux, "stored fragment in adapter %d/%d",
2405 stream->frag_current, stream->frag_length);
2407 /* flush fragment when complete */
2408 if (stream->frag_current >= stream->frag_length) {
2414 /* calculate header size, which is:
2415 * 1 byte for the number of fragments - 1
2416 * for each fragment:
2417 * 4 bytes 0x00000001 little endian
2418 * 4 bytes fragment offset
2420 * This is also the matroska header for realvideo, the decoder needs the
2421 * fragment offsets, both in ffmpeg and real .so, so we just give it that
2422 * in front of the data.
2424 header_size = 1 + (8 * (stream->frag_count));
2426 GST_DEBUG_OBJECT (rmdemux,
2427 "fragmented completed. count %d, header_size %u", stream->frag_count,
2430 avail = gst_adapter_available (stream->adapter);
2432 out = gst_buffer_new_and_alloc (header_size + avail);
2433 outdata = GST_BUFFER_DATA (out);
2436 *outdata++ = stream->frag_count - 1;
2437 for (i = 0; i < stream->frag_count; i++) {
2438 GST_WRITE_UINT32_LE (outdata, 0x00000001);
2440 GST_WRITE_UINT32_LE (outdata, stream->frag_offset[i]);
2444 /* copy packet data after the header now */
2445 gst_adapter_copy (stream->adapter, outdata, 0, avail);
2446 gst_adapter_flush (stream->adapter, avail);
2448 stream->frag_current = 0;
2449 stream->frag_count = 0;
2450 stream->frag_length = 0;
2452 gst_buffer_set_caps (out, GST_PAD_CAPS (stream->pad));
2454 if (timestamp != -1) {
2455 if (rmdemux->first_ts != -1 && timestamp > rmdemux->first_ts)
2456 timestamp -= rmdemux->first_ts;
2460 if (rmdemux->base_ts != -1)
2461 timestamp += rmdemux->base_ts;
2464 gst_rmdemux_fix_timestamp (rmdemux, stream, outdata, timestamp);
2466 GST_BUFFER_TIMESTAMP (out) = timestamp;
2468 GST_LOG_OBJECT (rmdemux, "pushing timestamp %" GST_TIME_FORMAT,
2469 GST_TIME_ARGS (timestamp));
2471 if (stream->discont) {
2472 GST_BUFFER_FLAG_SET (out, GST_BUFFER_FLAG_DISCONT);
2473 stream->discont = FALSE;
2476 ret = gst_pad_push (stream->pad, out);
2477 ret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2478 if (ret != GST_FLOW_OK)
2481 timestamp = GST_CLOCK_TIME_NONE;
2483 data += fragment_size;
2484 size -= fragment_size;
2486 GST_DEBUG_OBJECT (rmdemux, "%d bytes left", size);
2488 gst_buffer_unref (in);
2495 GST_ELEMENT_WARNING (rmdemux, STREAM, DECODE, ("Skipping bad packet."),
2497 gst_buffer_unref (in);
2502 GST_ELEMENT_ERROR (rmdemux, STREAM, DECODE,
2503 ("Got more fragments (%u) than can be handled (%u)",
2504 stream->frag_count, MAX_FRAGS), (NULL));
2505 gst_buffer_unref (in);
2506 return GST_FLOW_ERROR;
2510 static GstFlowReturn
2511 gst_rmdemux_parse_audio_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
2512 GstBuffer * in, guint offset, guint16 version,
2513 GstClockTime timestamp, gboolean key)
2515 GstFlowReturn ret, cret;
2520 data = GST_BUFFER_DATA (in) + offset;
2521 size = GST_BUFFER_SIZE (in) - offset;
2523 ret = gst_pad_alloc_buffer_and_set_caps (stream->pad,
2524 GST_BUFFER_OFFSET_NONE, size, GST_PAD_CAPS (stream->pad), &buffer);
2526 cret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2527 if (ret != GST_FLOW_OK)
2530 memcpy (GST_BUFFER_DATA (buffer), (guint8 *) data, size);
2532 if (rmdemux->first_ts != -1 && timestamp > rmdemux->first_ts)
2533 timestamp -= rmdemux->first_ts;
2537 if (rmdemux->base_ts != -1)
2538 timestamp += rmdemux->base_ts;
2540 GST_BUFFER_TIMESTAMP (buffer) = timestamp;
2542 if (stream->needs_descrambling) {
2543 GST_LOG_OBJECT (rmdemux, "descramble timestamp %" GST_TIME_FORMAT,
2544 GST_TIME_ARGS (timestamp));
2545 ret = gst_rmdemux_handle_scrambled_packet (rmdemux, stream, buffer, key);
2547 GST_LOG_OBJECT (rmdemux,
2548 "Pushing buffer of size %d, timestamp %" GST_TIME_FORMAT "to pad %s",
2549 GST_BUFFER_SIZE (buffer), GST_TIME_ARGS (timestamp),
2550 GST_PAD_NAME (stream->pad));
2552 if (stream->discont) {
2553 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
2554 stream->discont = FALSE;
2556 ret = gst_pad_push (stream->pad, buffer);
2559 gst_buffer_unref (in);
2566 GST_DEBUG_OBJECT (rmdemux, "pad alloc returned %d", ret);
2567 gst_buffer_unref (in);
2572 static GstFlowReturn
2573 gst_rmdemux_parse_packet (GstRMDemux * rmdemux, GstBuffer * in, guint16 version)
2576 GstRMDemuxStream *stream;
2578 GstFlowReturn cret, ret;
2579 GstClockTime timestamp;
2581 guint8 *data, *base;
2585 base = data = GST_BUFFER_DATA (in);
2586 size = GST_BUFFER_SIZE (in);
2589 id = RMDEMUX_GUINT16_GET (data);
2591 stream = gst_rmdemux_get_stream_by_id (rmdemux, id);
2592 if (!stream || !stream->pad)
2593 goto unknown_stream;
2595 /* timestamp in Msec */
2596 ts = RMDEMUX_GUINT32_GET (data + 2);
2597 timestamp = ts * GST_MSECOND;
2599 gst_segment_set_last_stop (&rmdemux->segment, GST_FORMAT_TIME, timestamp);
2601 GST_LOG_OBJECT (rmdemux, "Parsing a packet for stream=%d, timestamp=%"
2602 GST_TIME_FORMAT ", size %u, version=%d, ts=%u", id,
2603 GST_TIME_ARGS (timestamp), size, version, ts);
2605 if (rmdemux->first_ts == GST_CLOCK_TIME_NONE) {
2606 GST_DEBUG_OBJECT (rmdemux, "First timestamp: %" GST_TIME_FORMAT,
2607 GST_TIME_ARGS (timestamp));
2608 rmdemux->first_ts = timestamp;
2611 /* skip stream_id and timestamp */
2616 flags = GST_READ_UINT8 (data + 1);
2621 /* version 1 has an extra byte */
2626 key = (flags & 0x02) != 0;
2627 GST_DEBUG_OBJECT (rmdemux, "flags %d, Keyframe %d", flags, key);
2629 if (rmdemux->need_newsegment) {
2632 event = gst_event_new_new_segment (FALSE, rmdemux->segment.rate,
2633 rmdemux->segment.format, rmdemux->segment.start,
2634 rmdemux->segment.stop, rmdemux->segment.time);
2636 GST_DEBUG_OBJECT (rmdemux, "sending NEWSEGMENT event, segment.start= %"
2637 GST_TIME_FORMAT, GST_TIME_ARGS (rmdemux->segment.start));
2639 gst_rmdemux_send_event (rmdemux, event);
2640 rmdemux->need_newsegment = FALSE;
2643 if (stream->pending_tags != NULL) {
2644 GST_LOG_OBJECT (stream->pad, "tags %" GST_PTR_FORMAT, stream->pending_tags);
2645 gst_element_found_tags_for_pad (GST_ELEMENT_CAST (rmdemux), stream->pad,
2646 stream->pending_tags);
2647 stream->pending_tags = NULL;
2650 if ((rmdemux->offset + size) <= stream->seek_offset) {
2651 GST_DEBUG_OBJECT (rmdemux,
2652 "Stream %d is skipping: seek_offset=%d, offset=%d, size=%u",
2653 stream->id, stream->seek_offset, rmdemux->offset, size);
2658 /* do special headers */
2659 if (stream->subtype == GST_RMDEMUX_STREAM_VIDEO) {
2661 gst_rmdemux_parse_video_packet (rmdemux, stream, in, data - base,
2662 version, timestamp, key);
2663 } else if (stream->subtype == GST_RMDEMUX_STREAM_AUDIO) {
2665 gst_rmdemux_parse_audio_packet (rmdemux, stream, in, data - base,
2666 version, timestamp, key);
2670 cret = gst_rmdemux_combine_flows (rmdemux, stream, ret);
2678 GST_WARNING_OBJECT (rmdemux, "No stream for stream id %d in parsing "
2685 gst_rmdemux_plugin_init (GstPlugin * plugin)
2687 return gst_element_register (plugin, "rmdemux",
2688 GST_RANK_PRIMARY, GST_TYPE_RMDEMUX);