[svn r116] A lot of API changes.
2 * Copyright (C) <2006> Renato Araujo Oliveira Filho <renato.filho@indt.org.br>
3 * Rosfran Borges <rosfran.borges@indt.org.br>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
20 /* Element-Checklist-Version: 5 */
23 * SECTION:element-nuvdemux
27 * Demuxes an .nuv file into raw or compressed audio and/or video streams.
30 * This element currently only supports pull-based scheduling.
32 * <title>Example launch line</title>
35 * gst-launch filesrc test.nuv ! nuvdemux name=demux demux.audio_00 ! decodebin ! audioconvert ! audioresample ! autoaudiosink demux.video_00 ! queue ! decodebin ! ffmpegcolorspace ! videoscale ! autovideosink
37 * Play (parse and decode) an .nuv file and try to output it to
38 * an automatically detected soundcard and videosink. If the NUV file contains
39 * compressed audio or video data, this will only work if you have the
40 * right decoder elements/plugins installed.
51 #include <gst/gsterror.h>
52 #include <gst/gstplugin.h>
56 #include "glib/gi18n.h"
57 #include "gstnuvdemux.h"
59 #define GST_NUV_DEMUX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_NUV_DEMUX, GstNuvDemuxPrivate))
61 GST_DEBUG_CATEGORY_STATIC (nuvdemux_debug);
62 #define GST_CAT_DEFAULT nuvdemux_debug
63 #define GST_FLOW_ERROR_NO_DATA -101
71 GST_DEBUG_CATEGORY_EXTERN (GST_CAT_EVENT);
73 static const GstElementDetails gst_nuv_demux_details =
74 GST_ELEMENT_DETAILS ("Nuv demuxer",
76 "Demultiplex a .nuv file into audio and video",
77 "Renato Araujo Oliveira Filho <renato.filho@indt.org.br>,"
78 "Rosfran Borges <rosfran.borges@indt.org.br>");
84 gchar id[12]; /* "NuppelVideo\0" or "MythTVVideo\0" */
85 gchar version[5]; /* "x.xx\0" */
90 gint i_height_desired;
92 gchar i_mode; /* P progressive, I interlaced */
94 gdouble d_aspect; /* 1.0 squared pixel */
100 gint i_video_blocks; /* 0 no video, -1 unknown */
104 gint i_keyframe_distance;
111 gchar i_type; /* A: audio, V: video, S: sync; T: test
112 R: Seekpoint (string:RTjjjjjjjj)
113 D: Extra data for codec */
114 gchar i_compression; /* V: 0 uncompressed
119 A: 0 uncompressed (44100 1-bits, 2ch)
125 N null frame loudless
127 S: B audio and vdeo sync point
128 A audio sync info (timecode == effective
130 V next video sync (timecode == next video
132 S audio,video,text correlation */
133 gchar i_keyframe; /* 0 keyframe, else no no key frame */
134 guint8 i_filters; /* 0x01: gauss 5 pixel (8,2,2,2,2)/16
135 0x02: gauss 5 pixel (8,1,1,1,1)/12
136 0x04: cartoon filter */
138 gint32 i_timecode; /* ms */
140 gint i_length; /* V,A,T: length of following data
141 S: length of packet correl */
144 /* FIXME Not sure of this one */
151 gint i_audio_sample_rate;
152 gint i_audio_bits_per_sample;
153 gint i_audio_channels;
154 gint i_audio_compression_ratio;
155 gint i_audio_quality;
156 gint i_rtjpeg_quality;
157 gint i_rtjpeg_luma_filter;
158 gint i_rtjpeg_chroma_filter;
162 gint i_lavc_maxqdiff;
163 gint64 i_seekable_offset;
164 gint64 i_keyframe_adjust_offset;
166 } nuv_extended_header;
170 GST_NUV_DEMUX_HEADER_DATA,
171 GST_NUV_DEMUX_EXTRA_DATA,
172 GST_NUV_DEMUX_MPEG_DATA,
173 GST_NUV_DEMUX_EXTEND_HEADER,
174 GST_NUV_DEMUX_EXTEND_HEADER_DATA,
175 GST_NUV_DEMUX_FRAME_HEADER,
177 GST_NUV_DEMUX_INVALID_DATA
180 struct _GstNuvDemuxPrivate {
181 /* used for indicate the mode */
184 /* used on push mode */
189 GstPad *src_video_pad;
190 GstPad *src_audio_pad;
193 GstFlowReturn last_video_return;
194 GstFlowReturn last_audio_return;
196 /* NUV decoding state */
197 GstNuvDemuxState state;
201 guint64 streamer_offset;
203 /* duration information */
204 gint64 duration_bytes;
205 gint64 duration_time;
206 gint64 duration_average;
208 /* segment control info */
209 gboolean new_audio_segment;
210 gboolean new_video_segment;
213 guint64 mpeg_data_size;
214 GstBuffer *mpeg_buffer;
218 nuv_extended_header *eh;
219 nuv_frame_header *fh;
225 guint64 last_frame_time;
229 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
232 GST_STATIC_CAPS ("video/x-nuv"));
234 static GstStaticPadTemplate audio_src_template =
235 GST_STATIC_PAD_TEMPLATE ("audio_src",
238 GST_STATIC_CAPS_ANY);
240 static GstStaticPadTemplate video_src_template =
241 GST_STATIC_PAD_TEMPLATE ("video_src",
244 GST_STATIC_CAPS_ANY);
246 static void gst_nuv_demux_dispose (GObject * object);
247 static void gst_nuv_demux_finalize (GObject * object);
248 static GstStateChangeReturn gst_nuv_demux_change_state (GstElement * element,
249 GstStateChange transition);
250 static void gst_nuv_demux_loop (GstPad * pad);
251 static GstFlowReturn gst_nuv_demux_chain (GstPad * pad, GstBuffer * buf);
252 static GstFlowReturn gst_nuv_demux_play (GstPad * pad);
253 static gboolean gst_nuv_demux_sink_activate_pull (GstPad * sinkpad,
255 static gboolean gst_nuv_demux_sink_activate_push (GstPad * pad,
257 static gboolean gst_nuv_demux_sink_activate (GstPad * sinkpad);
258 static gboolean gst_nuv_demux_sink_event (GstPad *pad, GstEvent *event);
259 static GstFlowReturn gst_nuv_demux_read_bytes (GstNuvDemux * nuv, guint64 size,
260 gboolean move, GstBuffer ** buffer);
261 static void gst_nuv_demux_reset (GstNuvDemux * nuv);
262 static void gst_nuv_demux_destoy_src_pad (GstNuvDemux * nuv);
263 static void gst_nuv_demux_send_eos (GstNuvDemux * nuv);
264 static void gst_nuv_demux_update_duration (GstNuvDemux *nuv, guint64 current_timestamp);
265 static gint64 gst_nuv_demux_get_bytes_duration (GstNuvDemux *nuv);
266 static gint64 gst_nuv_demux_get_time_duration (GstNuvDemux *nuv);
269 GST_BOILERPLATE (GstNuvDemux, gst_nuv_demux, GstElement, GST_TYPE_ELEMENT);
271 /******************************************************************************
273 ******************************************************************************/
274 #if G_BYTE_ORDER == G_BIG_ENDIAN
275 static inline gdouble
276 _gdouble_swap_le_be (gdouble * d)
285 u.i = GUINT64_SWAP_LE_BE (u.i);
289 #define READ_DOUBLE_FROM_LE(d) (_gdouble_swap_le_be((gdouble* ) d))
290 #else /* G_BYTE_ORDER != G_BIG_ENDIAN */
291 #define READ_DOUBLE_FROM_LE(d) *((gdouble* ) (d))
292 #endif /* G_BYTE_ORDER != G_BIG_ENDIAN */
295 double2fraction (double in, int *num, int *denom)
300 } else if (in == 23.976) {
305 while (in - floor(in) >= 0.1) {
309 *num = (int)floor(in);
313 /* GObject Functions */
316 gst_nuv_demux_base_init (gpointer klass)
318 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
320 gst_element_class_add_pad_template (element_class,
321 gst_static_pad_template_get (&audio_src_template));
323 gst_element_class_add_pad_template (element_class,
324 gst_static_pad_template_get (&video_src_template));
326 gst_element_class_add_pad_template (element_class,
327 gst_static_pad_template_get (&sink_template));
328 gst_element_class_set_details (element_class, &gst_nuv_demux_details);
332 gst_nuv_demux_class_init (GstNuvDemuxClass * klass)
334 GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
335 GObjectClass *gobject_class = (GObjectClass *) klass;
337 GST_DEBUG_CATEGORY_INIT (nuvdemux_debug, "nuvdemux",
338 0, "Demuxer for NUV streams");
340 parent_class = g_type_class_peek_parent (klass);
342 gobject_class->dispose = gst_nuv_demux_dispose;
343 gobject_class->finalize = gst_nuv_demux_finalize;
344 gstelement_class->change_state = gst_nuv_demux_change_state;
346 g_type_class_add_private (gobject_class, sizeof (GstNuvDemuxPrivate));
350 gst_nuv_demux_init (GstNuvDemux * nuv, GstNuvDemuxClass * nuv_class)
352 nuv->priv = GST_NUV_DEMUX_GET_PRIVATE (nuv);
353 nuv->priv->sinkpad = gst_pad_new_from_static_template (&sink_template, "sink");
354 gst_pad_set_activate_function (nuv->priv->sinkpad, gst_nuv_demux_sink_activate);
355 gst_pad_set_activatepull_function (nuv->priv->sinkpad,
356 gst_nuv_demux_sink_activate_pull);
357 gst_pad_set_activatepush_function (nuv->priv->sinkpad,
358 gst_nuv_demux_sink_activate_push);
359 gst_pad_set_chain_function (nuv->priv->sinkpad,
360 GST_DEBUG_FUNCPTR (gst_nuv_demux_chain));
361 gst_pad_set_event_function (nuv->priv->sinkpad,
362 gst_nuv_demux_sink_event);
363 gst_element_add_pad (GST_ELEMENT (nuv), nuv->priv->sinkpad);
365 nuv->priv->new_audio_segment = TRUE;
366 nuv->priv->new_video_segment = TRUE;
368 gst_nuv_demux_reset (nuv);
372 gst_nuv_demux_dispose (GObject * object)
374 GstNuvDemux *nuv = GST_NUV_DEMUX (object);
376 if (nuv->priv->mpeg_buffer != NULL) {
377 gst_buffer_unref (nuv->priv->mpeg_buffer);
380 gst_nuv_demux_reset (GST_NUV_DEMUX (object));
381 gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (object));
383 if (nuv->priv->adapter != NULL) {
384 gst_object_unref (nuv->priv->adapter);
389 gst_nuv_demux_finalize (GObject * object)
391 G_OBJECT_CLASS (parent_class)->finalize (object);
398 gst_nuv_demux_header_load (GstNuvDemux * nuv, nuv_header ** h_ret)
400 GstBuffer *buffer = NULL;
401 GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 72, TRUE, &buffer);
403 if ((res != GST_FLOW_OK) || (buffer == NULL))
406 nuv_header *h = g_new0 (nuv_header, 1);
408 memcpy (h->id, buffer->data, 12);
409 memcpy (h->version, buffer->data + 12, 5);
410 h->i_width = GST_READ_UINT32_LE (&buffer->data[20]);
411 h->i_height = GST_READ_UINT32_LE (&buffer->data[24]);
412 h->i_width_desired = GST_READ_UINT32_LE (&buffer->data[28]);
413 h->i_height_desired = GST_READ_UINT32_LE (&buffer->data[32]);
414 h->i_mode = GPOINTER_TO_INT (buffer->data[36]);
415 h->d_aspect = READ_DOUBLE_FROM_LE (&buffer->data[40]);
416 h->d_fps = READ_DOUBLE_FROM_LE (&buffer->data[48]);
417 /* get the num and denom values from fps */
418 double2fraction (h->d_fps, &h->i_fpsn, &h->i_fpsd);
419 h->i_video_blocks = GST_READ_UINT32_LE (&buffer->data[56]);
420 h->i_audio_blocks = GST_READ_UINT32_LE (&buffer->data[60]);
421 h->i_text_blocks = GST_READ_UINT32_LE (&buffer->data[64]);
422 h->i_keyframe_distance = GST_READ_UINT32_LE (&buffer->data[68]);
424 GST_DEBUG_OBJECT (nuv,
425 "nuv: h=%s v=%s %dx%d a=%f fps=%f v=%d a=%d t=%d kfd=%d", h->id,
426 h->version, h->i_width, h->i_height, h->d_aspect, h->d_fps,
427 h->i_video_blocks, h->i_audio_blocks, h->i_text_blocks,
428 h->i_keyframe_distance);
431 gst_buffer_unref (buffer);
436 gst_nuv_demux_stream_header_data (GstNuvDemux * nuv)
440 res = gst_nuv_demux_header_load (nuv, &nuv->priv->h);
441 if (res == GST_FLOW_OK)
442 nuv->priv->state = GST_NUV_DEMUX_EXTRA_DATA;
450 gst_nuv_demux_stream_file_header (GstNuvDemux * nuv)
452 GstFlowReturn res = GST_FLOW_OK;
453 GstBuffer *file_header = NULL;
455 res = gst_nuv_demux_read_bytes (nuv, 12, FALSE, &file_header);
456 if ((res != GST_FLOW_OK) || (file_header == NULL)) {
459 if (strncmp ((gchar *) file_header->data, "MythTVVideo", 11) ||
460 strncmp ((gchar *) file_header->data, "NuppelVideo", 11)) {
461 nuv->priv->state = GST_NUV_DEMUX_HEADER_DATA;
463 GST_DEBUG_OBJECT (nuv, "error parsing file header");
464 nuv->priv->state = GST_NUV_DEMUX_INVALID_DATA;
465 res = GST_FLOW_ERROR;
468 if (file_header != NULL) {
469 gst_buffer_unref (file_header);
477 gst_nuv_demux_frame_header_load (GstNuvDemux * nuv, nuv_frame_header ** h_ret)
481 GstBuffer *buf = NULL;
483 GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 12, TRUE, &buf);
485 if ((res != GST_FLOW_OK) || (buf == NULL)) {
487 gst_buffer_unref (buf);
492 h = g_new0 (nuv_frame_header, 1);
495 h->i_type = GPOINTER_TO_INT (data[0]);
496 h->i_compression = GPOINTER_TO_INT (data[1]);
497 h->i_keyframe = GPOINTER_TO_INT (data[2]);
498 h->i_filters = GPOINTER_TO_INT (data[3]);
499 h->i_timecode = GST_READ_UINT32_LE (&data[4]);
500 h->i_length = GST_READ_UINT32_LE (&data[8]);
502 GST_DEBUG_OBJECT (nuv, "frame hdr: t=%c c=%c k=%d f=0x%x timecode=%d l=%d",
504 h->i_compression ? h->i_compression : ' ',
505 h->i_keyframe ? h->i_keyframe : ' ',
506 h->i_filters, h->i_timecode, h->i_length);
509 gst_buffer_unref (buf);
514 gst_nuv_demux_extended_header_load (GstNuvDemux * nuv,
515 nuv_extended_header ** h_ret)
518 GstBuffer *buff = NULL;
519 nuv_extended_header *h;
522 GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 512, TRUE, &buff);
524 if ((res != GST_FLOW_OK) || (buff == NULL)) {
526 gst_buffer_unref (buff);
531 h = g_new0 (nuv_extended_header, 1);
533 h->i_version = GST_READ_UINT32_LE (&data[0]);
534 h->i_video_fcc = GST_MAKE_FOURCC (data[4], data[5], data[6], data[7]);
535 h->i_audio_fcc = GST_MAKE_FOURCC (data[8], data[9], data[10], data[11]);
536 h->i_audio_sample_rate = GST_READ_UINT32_LE (&data[12]);
537 h->i_audio_bits_per_sample = GST_READ_UINT32_LE (&data[16]);
538 h->i_audio_channels = GST_READ_UINT32_LE (&data[20]);
539 h->i_audio_compression_ratio = GST_READ_UINT32_LE (&data[24]);
540 h->i_audio_quality = GST_READ_UINT32_LE (&data[28]);
541 h->i_rtjpeg_quality = GST_READ_UINT32_LE (&data[32]);
542 h->i_rtjpeg_luma_filter = GST_READ_UINT32_LE (&data[36]);
543 h->i_rtjpeg_chroma_filter = GST_READ_UINT32_LE (&data[40]);
544 h->i_lavc_bitrate = GST_READ_UINT32_LE (&data[44]);
545 h->i_lavc_qmin = GST_READ_UINT32_LE (&data[48]);
546 h->i_lavc_qmin = GST_READ_UINT32_LE (&data[52]);
547 h->i_lavc_maxqdiff = GST_READ_UINT32_LE (&data[56]);
548 h->i_seekable_offset = GST_READ_UINT64_LE (&data[60]);
549 h->i_keyframe_adjust_offset = GST_READ_UINT64_LE (&data[68]);
551 GST_DEBUG_OBJECT (nuv,
552 "ex hdr: v=%d vffc=%4.4s afcc=%4.4s %dHz %dbits ach=%d acr=%d aq=%d"
553 "rtjpeg q=%d lf=%d lc=%d lavc br=%d qmin=%d qmax=%d maxqdiff=%d seekableoff=%lld keyfao=%lld",
554 h->i_version, (gchar *) & h->i_video_fcc, (gchar *) & h->i_audio_fcc,
555 h->i_audio_sample_rate, h->i_audio_bits_per_sample, h->i_audio_channels,
556 h->i_audio_compression_ratio, h->i_audio_quality, h->i_rtjpeg_quality,
557 h->i_rtjpeg_luma_filter, h->i_rtjpeg_chroma_filter, h->i_lavc_bitrate,
558 h->i_lavc_qmin, h->i_lavc_qmax, h->i_lavc_maxqdiff, h->i_seekable_offset,
559 h->i_keyframe_adjust_offset);
562 gst_buffer_unref (buff);
567 /* Query Functions */
568 static const GstQueryType *
569 gst_nuv_demux_get_src_query_types (GstPad * pad)
571 static const GstQueryType src_types[] = {
581 gst_nuv_demux_handle_src_query (GstPad * pad, GstQuery * query)
583 gboolean res = FALSE;
584 GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
586 switch (GST_QUERY_TYPE (query)) {
587 case GST_QUERY_POSITION:
588 if (GST_CLOCK_TIME_IS_VALID (nuv->priv->last_frame_time)) {
590 gst_query_set_position (query, GST_FORMAT_TIME, nuv->priv->last_frame_time);
594 case GST_QUERY_DURATION:
597 duration = gst_nuv_demux_get_time_duration (nuv);
598 if (duration == GST_CLOCK_TIME_NONE) {
599 duration = nuv->priv->duration_average;
601 if (duration != GST_CLOCK_TIME_NONE) {
602 gst_query_set_duration (query, GST_FORMAT_TIME, duration);
612 gst_object_unref (nuv);
618 gst_nuv_demux_create_pad (GstNuvDemux *nuv, GstCaps *caps, GstStaticPadTemplate *template, const gchar* name)
621 pad = gst_pad_new_from_static_template (template, name);
622 gst_pad_use_fixed_caps (pad);
623 gst_pad_set_caps (pad, caps);
624 gst_pad_set_active (pad, TRUE);
625 gst_element_add_pad (GST_ELEMENT (nuv), pad);
631 gst_nuv_demux_create_pads (GstNuvDemux * nuv)
633 if (nuv->priv->h->i_video_blocks != 0) {
634 GstCaps *video_caps = NULL;
636 video_caps = gst_caps_new_simple ("video/x-divx",
637 "divxversion", G_TYPE_INT, 4,
638 "width", G_TYPE_INT, nuv->priv->h->i_width,
639 "height", G_TYPE_INT, nuv->priv->h->i_height,
640 "framerate", GST_TYPE_FRACTION, nuv->priv->h->i_fpsn, nuv->priv->h->i_fpsd,
641 "format", GST_TYPE_FOURCC, nuv->priv->eh->i_video_fcc,
642 "pixel-aspect-ratio", GST_TYPE_FRACTION,
643 (gint) (nuv->priv->h->d_aspect * 1000.0f), 1000, NULL);
645 nuv->priv->src_video_pad = gst_nuv_demux_create_pad (nuv, video_caps, &video_src_template, "video_src");
646 gst_caps_unref (video_caps);
649 if (nuv->priv->h->i_audio_blocks != 0) {
650 GstCaps *audio_caps = NULL;
652 audio_caps = gst_caps_new_simple ("audio/mpeg",
653 "rate", G_TYPE_INT, nuv->priv->eh->i_audio_sample_rate,
654 "format", GST_TYPE_FOURCC, nuv->priv->eh->i_audio_fcc,
655 "channels", G_TYPE_INT, nuv->priv->eh->i_audio_channels,
656 "mpegversion", G_TYPE_INT, nuv->priv->eh->i_version, NULL);
658 nuv->priv->src_audio_pad = gst_nuv_demux_create_pad (nuv, audio_caps, &audio_src_template, "audio_src");
659 gst_caps_unref (audio_caps);
662 gst_element_no_more_pads (GST_ELEMENT (nuv));
666 gst_nuv_demux_read_head_frame (GstNuvDemux * nuv)
668 GstFlowReturn ret = GST_FLOW_OK;
670 if (nuv->priv->fh != NULL)
672 g_free (nuv->priv->fh);
673 nuv->priv->fh = NULL;
676 ret = gst_nuv_demux_frame_header_load (nuv, &nuv->priv->fh);
677 if (ret != GST_FLOW_OK)
680 nuv->priv->state = GST_NUV_DEMUX_MOVI;
685 gst_nuv_combine_flow (GstNuvDemux *nuv)
687 GstFlowReturn ret_video = nuv->priv->last_video_return;
688 GstFlowReturn ret_audio = nuv->priv->last_audio_return;
690 if ((ret_video != GST_FLOW_OK) &&
691 (ret_audio != GST_FLOW_OK))
694 if (GST_FLOW_IS_FATAL (ret_video))
697 if (GST_FLOW_IS_FATAL (ret_audio))
704 gst_nuv_demux_stream_data (GstNuvDemux * nuv)
706 GstFlowReturn ret = GST_FLOW_OK;
709 GstBuffer *buf = NULL;
710 nuv_frame_header *h = NULL;
714 if (h->i_type == 'R')
717 if (h->i_length > 0) {
718 ret = gst_nuv_demux_read_bytes (nuv, h->i_length, TRUE, &buf);
719 if ((ret != GST_FLOW_OK) || (buf == NULL))
722 if (h->i_timecode < 0) {
723 h->i_timecode = h->i_timecode * -1;
724 nuv->priv->time_diff = h->i_timecode;
727 h->i_timecode += nuv->priv->time_diff;
729 timestamp = h->i_timecode * GST_MSECOND;
731 GST_BUFFER_SIZE (buf) = h->i_length;
732 GST_BUFFER_TIMESTAMP (buf) = timestamp;
742 pad = nuv->priv->src_video_pad;
744 if (nuv->priv->new_video_segment) {
745 /* send new segment event*/
746 gst_pad_push_event (nuv->priv->src_video_pad,
747 gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
748 GST_CLOCK_TIME_NONE, 0));
750 if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
751 nuv->priv->time_start = timestamp;
753 nuv->priv->new_video_segment = FALSE;
760 pad = nuv->priv->src_audio_pad;
762 if (nuv->priv->new_audio_segment) {
763 /* send new segment event*/
764 gst_pad_push_event (nuv->priv->src_audio_pad,
765 gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
766 GST_CLOCK_TIME_NONE, 0));
768 if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
769 nuv->priv->time_start = timestamp;
771 nuv->priv->new_audio_segment = FALSE;
778 switch (h->i_compression) {
780 GST_DEBUG_OBJECT (nuv, "sending new video segment: %d", h->i_timecode);
781 gst_pad_push_event (nuv->priv->src_video_pad,
782 gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, h->i_timecode * GST_MSECOND,
783 GST_CLOCK_TIME_NONE, 0));
786 GST_DEBUG_OBJECT (nuv, "sending new audio segment: %d", h->i_timecode);
787 gst_pad_push_event (nuv->priv->src_audio_pad,
788 gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
789 GST_CLOCK_TIME_NONE, 0));
795 gst_buffer_unref (buf);
801 gst_buffer_unref (buf);
806 if ((buf != NULL) && (pad != NULL)) {
807 /* update average time */
808 nuv->priv->streamer_offset += h->i_length;
809 gst_segment_set_last_stop (&nuv->priv->segment, GST_FORMAT_TIME, timestamp);
810 gst_nuv_demux_update_duration (nuv, timestamp);
812 /* pushing the buffer */
813 gst_buffer_set_caps (buf, GST_PAD_CAPS (pad));
814 ret = gst_pad_push (pad, buf);
816 if (ret != GST_FLOW_OK) {
817 if (pad == nuv->priv->src_video_pad) {
818 nuv->priv->last_video_return = ret;
820 else if (pad == nuv->priv->src_audio_pad) {
821 nuv->priv->last_audio_return = ret;
824 /* verify anothers flow if is necessary stop task */
825 if (gst_nuv_combine_flow (nuv) != FALSE) {
829 GST_WARNING_OBJECT (nuv, "error: %d pushing on srcpad %s", ret, gst_pad_get_name (pad));
834 nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
835 g_free (nuv->priv->fh);
836 nuv->priv->fh = NULL;
841 gst_nuv_demux_stream_mpeg_data (GstNuvDemux * nuv)
843 GstFlowReturn ret = GST_FLOW_OK;
845 /* ffmpeg extra data */
846 ret = gst_nuv_demux_read_bytes (nuv, nuv->priv->mpeg_data_size, TRUE,
847 &nuv->priv->mpeg_buffer);
848 if ((ret != GST_FLOW_OK) || (nuv->priv->mpeg_buffer == NULL)) {
852 GST_BUFFER_SIZE (nuv->priv->mpeg_buffer) = nuv->priv->mpeg_data_size;
853 nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
858 gst_nuv_demux_stream_extra_data (GstNuvDemux * nuv)
860 GstFlowReturn ret = GST_FLOW_OK;
865 ret = gst_nuv_demux_frame_header_load (nuv, &h);
866 if (ret != GST_FLOW_OK)
869 if (h->i_type != 'D') {
871 GST_WARNING_OBJECT (nuv, "Unsuported rtjpeg");
872 return GST_FLOW_NOT_SUPPORTED;
875 if (h->i_length > 0) {
876 if (h->i_compression == 'F') {
877 nuv->priv->state = GST_NUV_DEMUX_MPEG_DATA;
880 GST_WARNING_OBJECT (nuv, "only file with extended chunk are supported");
881 return GST_FLOW_NOT_SUPPORTED;
884 nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
893 gst_nuv_demux_stream_extend_header_data (GstNuvDemux * nuv)
895 GstFlowReturn ret = GST_FLOW_OK;
897 ret = gst_nuv_demux_extended_header_load (nuv, &nuv->priv->eh);
898 if (ret != GST_FLOW_OK)
901 gst_nuv_demux_create_pads (nuv);
902 nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
907 gst_nuv_demux_stream_extend_header (GstNuvDemux * nuv)
909 GstBuffer *buf = NULL;
910 GstFlowReturn res = GST_FLOW_OK;
912 res = gst_nuv_demux_read_bytes (nuv, 1, FALSE, &buf);
913 if ((res != GST_FLOW_OK) || (buf == NULL)) {
915 gst_buffer_unref (buf);
920 if (buf->data[0] == 'X') {
921 gst_buffer_unref (buf);
923 nuv_frame_header *h = NULL;
925 res = gst_nuv_demux_frame_header_load (nuv, &h);
926 if (res != GST_FLOW_OK)
929 if (h->i_length != 512) {
931 return GST_FLOW_ERROR;
935 nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER_DATA;
937 nuv->priv->state = GST_NUV_DEMUX_INVALID_DATA;
938 g_object_unref (buf);
939 GST_ELEMENT_WARNING (nuv, STREAM, FAILED,
940 (_("incomplete NUV support")), ("incomplete NUV support"));
941 return GST_FLOW_ERROR;
947 gst_nuv_demux_play (GstPad * pad)
949 GstFlowReturn res = GST_FLOW_OK;
950 GstNuvDemux *nuv = GST_NUV_DEMUX (GST_PAD_PARENT (pad));
952 switch (nuv->priv->state) {
953 case GST_NUV_DEMUX_START:
954 res = gst_nuv_demux_stream_file_header (nuv);
955 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
958 if (nuv->priv->state != GST_NUV_DEMUX_HEADER_DATA)
961 case GST_NUV_DEMUX_HEADER_DATA:
962 res = gst_nuv_demux_stream_header_data (nuv);
963 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
966 if (nuv->priv->state != GST_NUV_DEMUX_EXTRA_DATA)
969 case GST_NUV_DEMUX_EXTRA_DATA:
970 res = gst_nuv_demux_stream_extra_data (nuv);
971 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
974 if (nuv->priv->state != GST_NUV_DEMUX_MPEG_DATA)
977 case GST_NUV_DEMUX_MPEG_DATA:
978 res = gst_nuv_demux_stream_mpeg_data (nuv);
979 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
983 if (nuv->priv->state != GST_NUV_DEMUX_EXTEND_HEADER)
986 case GST_NUV_DEMUX_EXTEND_HEADER:
987 res = gst_nuv_demux_stream_extend_header (nuv);
988 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
991 if (nuv->priv->state != GST_NUV_DEMUX_EXTEND_HEADER_DATA)
994 case GST_NUV_DEMUX_EXTEND_HEADER_DATA:
995 res = gst_nuv_demux_stream_extend_header_data (nuv);
996 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
1000 if (nuv->priv->state != GST_NUV_DEMUX_FRAME_HEADER)
1003 case GST_NUV_DEMUX_FRAME_HEADER:
1004 res = gst_nuv_demux_read_head_frame (nuv);
1005 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
1008 if (nuv->priv->state != GST_NUV_DEMUX_MOVI)
1011 case GST_NUV_DEMUX_MOVI:
1012 res = gst_nuv_demux_stream_data (nuv);
1013 if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
1017 case GST_NUV_DEMUX_INVALID_DATA:
1021 g_assert_not_reached ();
1024 GST_DEBUG_OBJECT (nuv, "state: %d res:%s", nuv->priv->state, gst_flow_get_name (res));
1029 GST_LOG_OBJECT (nuv, "pausing task, reason %s", gst_flow_get_name (res));
1030 gst_pad_pause_task (nuv->priv->sinkpad);
1031 if (GST_FLOW_IS_FATAL (res)) {
1032 GST_ELEMENT_ERROR (nuv, STREAM, FAILED,
1033 (_("Internal data stream error.")),
1034 ("streaming stopped, reason %s", gst_flow_get_name (res)));
1036 gst_nuv_demux_send_eos (nuv);
1042 gst_nuv_demux_send_eos (GstNuvDemux * nuv)
1044 gst_element_post_message (GST_ELEMENT (nuv),
1045 gst_message_new_segment_done (GST_OBJECT (nuv), GST_FORMAT_TIME, -1));
1047 if (nuv->priv->src_video_pad)
1048 gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_eos ());
1049 if (nuv->priv->src_audio_pad)
1050 gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_eos ());
1053 static GstFlowReturn
1054 gst_nuv_demux_read_bytes (GstNuvDemux * nuv, guint64 size, gboolean move,
1055 GstBuffer ** buffer)
1057 GstFlowReturn ret = GST_FLOW_OK;
1063 if (nuv->priv->mode == NUV_PULL_MODE) {
1064 ret = gst_pad_pull_range (nuv->priv->sinkpad, nuv->priv->offset, size, buffer);
1065 if (ret == GST_FLOW_OK) {
1067 nuv->priv->offset += size;
1070 } else if (ret == GST_FLOW_UNEXPECTED) {
1072 gst_buffer_unref (buffer);
1074 gst_nuv_demux_send_eos (nuv);
1075 return GST_FLOW_WRONG_STATE;
1078 if (gst_adapter_available (nuv->priv->adapter) < size)
1079 return GST_FLOW_ERROR_NO_DATA;
1082 guint8 *data = NULL;
1083 data = (guint8 *) gst_adapter_take (nuv->priv->adapter, size);
1084 *buffer = gst_buffer_new ();
1085 gst_buffer_set_data (*buffer, data, size);
1087 guint8 *data = NULL;
1088 data = (guint8 *) gst_adapter_peek (nuv->priv->adapter, size);
1089 *buffer = gst_buffer_new ();
1090 gst_buffer_set_data (*buffer, data, size);
1097 gst_nuv_demux_sink_activate (GstPad * sinkpad)
1099 gboolean res = TRUE;
1100 GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
1102 if (gst_pad_check_pull_range (sinkpad)) {
1103 res = gst_pad_activate_pull (sinkpad, TRUE);
1105 res = gst_pad_activate_push (sinkpad, TRUE);
1107 g_object_unref (nuv);
1112 gst_nuv_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
1114 GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
1117 GST_DEBUG_OBJECT (nuv, "activating pull function");
1118 nuv->priv->mode = NUV_PULL_MODE;
1119 if (nuv->priv->adapter) {
1120 gst_adapter_clear (nuv->priv->adapter);
1121 g_object_unref (nuv->priv->adapter);
1122 nuv->priv->adapter = NULL;
1124 gst_pad_start_task (sinkpad, (GstTaskFunction) gst_nuv_demux_loop, sinkpad);
1126 GST_DEBUG_OBJECT (nuv, "deactivating pull function");
1127 gst_pad_stop_task (sinkpad);
1129 gst_object_unref (nuv);
1135 gst_nuv_demux_sink_activate_push (GstPad * pad, gboolean active)
1137 GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
1140 nuv->priv->mode = NUV_PUSH_MODE;
1141 if (nuv->priv->adapter) {
1142 gst_adapter_clear (nuv->priv->adapter);
1144 nuv->priv->adapter = gst_adapter_new ();
1146 GST_DEBUG_OBJECT (nuv, "activating push/chain function");
1148 GST_DEBUG_OBJECT (nuv, "deactivating push/chain function");
1151 gst_object_unref (nuv);
1158 gst_nuv_demux_sink_event (GstPad *pad, GstEvent *event)
1163 nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
1165 switch (GST_EVENT_TYPE (event)) {
1166 case GST_EVENT_SEEK:
1171 GstSeekType cur_type;
1173 GstSeekType stop_type;
1176 gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &cur, &stop_type, &stop);
1178 GST_DEBUG_OBJECT (nuv, "got seek, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, cur, stop);
1182 case GST_EVENT_NEWSEGMENT:
1184 gint64 start, stop, time;
1185 gdouble rate, arate;
1189 GST_DEBUG_OBJECT (nuv, "got a new segment event");
1190 gst_event_parse_new_segment_full (event, &update, &rate, &arate, &format,
1191 &start, &stop, &time);
1193 GST_DEBUG_OBJECT (nuv, "got newsegment, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, start, stop);
1194 g_debug ("got newsegment, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, start, stop);
1195 nuv->priv->duration_bytes = stop - start;
1196 gst_event_unref (event);
1204 GstClockTimeDiff diff;
1205 GstClockTime timestamp;
1207 gst_event_parse_qos (event, &proportion, &diff, ×tamp);
1209 nuv->time_qos = timecode + diff;
1219 res = gst_pad_event_default (pad, event);
1223 gst_object_unref (nuv);
1227 static GstFlowReturn
1228 gst_nuv_demux_chain (GstPad * pad, GstBuffer * buf)
1230 GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
1232 GST_DEBUG_OBJECT (nuv, " gst_nuv_demux_chain function");
1233 gst_adapter_push (nuv->priv->adapter, buf);
1235 gst_object_unref (nuv);
1237 return gst_nuv_demux_play (pad);
1241 gst_nuv_demux_loop (GstPad * pad)
1243 gst_nuv_demux_play (pad);
1247 gst_nuv_demux_reset (GstNuvDemux * nuv)
1249 nuv->priv->state = GST_NUV_DEMUX_START;
1250 nuv->priv->mode = 0;
1251 nuv->priv->offset = 0;
1252 nuv->priv->streamer_offset = 0;
1253 nuv->priv->time_start = 0;
1254 nuv->priv->time_qos = GST_CLOCK_TIME_NONE;
1255 nuv->priv->duration_bytes = GST_CLOCK_TIME_NONE;
1256 nuv->priv->duration_time = GST_CLOCK_TIME_NONE;
1257 nuv->priv->duration_average = GST_CLOCK_TIME_NONE;
1258 gst_segment_init (&nuv->priv->segment, GST_FORMAT_TIME);
1260 if (nuv->priv->adapter != NULL)
1261 gst_adapter_clear (nuv->priv->adapter);
1263 if (nuv->priv->mpeg_buffer != NULL) {
1264 gst_buffer_unref (nuv->priv->mpeg_buffer);
1265 nuv->priv->mpeg_buffer = NULL;
1268 g_free (nuv->priv->h);
1269 nuv->priv->h = NULL;
1271 g_free (nuv->priv->eh);
1272 nuv->priv->eh = NULL;
1274 g_free (nuv->priv->fh);
1275 nuv->priv->fh = NULL;
1279 gst_nuv_demux_destoy_src_pad (GstNuvDemux * nuv)
1281 if (nuv->priv->src_video_pad) {
1282 gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_video_pad);
1283 nuv->priv->src_video_pad = NULL;
1286 if (nuv->priv->src_audio_pad) {
1287 gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_audio_pad);
1288 nuv->priv->src_audio_pad = NULL;
1292 static GstStateChangeReturn
1293 gst_nuv_demux_change_state (GstElement * element, GstStateChange transition)
1295 GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
1297 switch (transition) {
1298 case GST_STATE_CHANGE_READY_TO_PAUSED:
1299 gst_nuv_demux_reset (GST_NUV_DEMUX (element));
1305 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1306 if (ret == GST_STATE_CHANGE_FAILURE)
1309 switch (transition) {
1310 case GST_STATE_CHANGE_READY_TO_NULL:
1311 gst_nuv_demux_reset (GST_NUV_DEMUX (element));
1312 gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
1323 gst_nuv_demux_update_duration (GstNuvDemux *nuv, guint64 current_timestamp)
1325 guint64 interval = 0;
1327 if (gst_nuv_demux_get_time_duration (nuv) != GST_CLOCK_TIME_NONE)
1330 interval = current_timestamp - nuv->priv->last_update;
1332 if (interval > (10 * GST_SECOND)) {
1333 GstMessage* msg = NULL;
1335 gint64 duration_bytes = gst_nuv_demux_get_bytes_duration (nuv);
1337 if (duration_bytes == GST_CLOCK_TIME_NONE)
1340 interval = gst_util_uint64_scale (1, current_timestamp - nuv->priv->time_start, GST_SECOND);
1341 average = gst_util_uint64_scale (1 , nuv->priv->streamer_offset, interval);
1342 nuv->priv->duration_average = gst_util_uint64_scale (GST_SECOND, duration_bytes, average);
1343 nuv->priv->last_update = current_timestamp;
1344 msg = gst_message_new_duration (GST_OBJECT (nuv), GST_FORMAT_TIME, nuv->priv->duration_average);
1345 gst_element_post_message (GST_ELEMENT (nuv), msg);
1346 GST_DEBUG_OBJECT (nuv, "New Duration Average %"G_GUINT64_FORMAT, nuv->priv->duration_average);
1351 gst_nuv_demux_get_bytes_duration (GstNuvDemux *nuv)
1353 if (nuv->priv->duration_bytes == GST_CLOCK_TIME_NONE) {
1354 GstPad *peer = gst_pad_get_peer (nuv->priv->sinkpad);
1355 GstQuery *query = gst_query_new_duration (GST_FORMAT_BYTES);
1356 if (gst_pad_query (peer, query)) {
1359 gst_query_parse_duration (query, NULL, &duration);
1360 nuv->priv->duration_bytes = duration;
1362 gst_object_unref (peer);
1363 gst_query_unref (query);
1365 return nuv->priv->duration_bytes;
1369 gst_nuv_demux_get_time_duration (GstNuvDemux *nuv)
1371 if (nuv->priv->duration_time == GST_CLOCK_TIME_NONE) {
1372 GstPad *peer = gst_pad_get_peer (nuv->priv->sinkpad);
1373 GstQuery *query = gst_query_new_duration (GST_FORMAT_TIME);
1374 if (gst_pad_query (peer, query)) {
1376 gst_query_parse_duration (query, NULL, &duration);
1377 nuv->priv->duration_time = duration;
1379 gst_object_unref (peer);
1380 gst_query_unref (query);
1382 return nuv->priv->duration_time;
1387 plugin_init (GstPlugin * plugin)
1390 setlocale (LC_ALL, "");
1391 bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1392 #endif /* ENABLE_NLS */
1394 if (!gst_element_register (plugin, "nuvdemux", GST_RANK_SECONDARY,
1395 GST_TYPE_NUV_DEMUX)) {
1401 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1404 "Demuxes and muxes audio and video",
1405 plugin_init, VERSION, "LGPL", "NuvDemux", "")