gst-plugins-nuvdemux/nuvdemux/gstnuvdemux.c
author renatofilho
Wed Mar 21 21:35:20 2007 +0000 (2007-03-21)
branchtrunk
changeset 425 9638cccfa1fe
parent 422 fc0a5721cd04
child 430 4476d11d6b9a
permissions -rw-r--r--
[svn r430] inital seek imple
melunko@47
     1
/* GStreamer
melunko@47
     2
 * Copyright (C) <2006> Renato Araujo Oliveira Filho <renato.filho@indt.org.br>
melunko@47
     3
 *                      Rosfran Borges <rosfran.borges@indt.org.br>
melunko@47
     4
 *
melunko@47
     5
 * This library is free software; you can redistribute it and/or
melunko@47
     6
 * modify it under the terms of the GNU Library General Public
melunko@47
     7
 * License as published by the Free Software Foundation; either
melunko@47
     8
 * version 2 of the License, or (at your option) any later version.
melunko@47
     9
 *
melunko@47
    10
 * This library is distributed in the hope that it will be useful,
melunko@47
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
melunko@47
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
melunko@47
    13
 * Library General Public License for more details.
melunko@47
    14
 *
melunko@47
    15
 * You should have received a copy of the GNU Library General Public
melunko@47
    16
 * License along with this library; if not, write to the
melunko@47
    17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
melunko@47
    18
 * Boston, MA 02111-1307, USA.
melunko@47
    19
 */
melunko@47
    20
/* Element-Checklist-Version: 5 */
melunko@47
    21
melunko@47
    22
/**
melunko@47
    23
 * SECTION:element-nuvdemux
melunko@47
    24
 *
melunko@47
    25
 * <refsect2>
melunko@47
    26
 * <para>
melunko@47
    27
 * Demuxes an .nuv file into raw or compressed audio and/or video streams.
melunko@47
    28
 * </para>
melunko@47
    29
 * <para>
melunko@47
    30
 * This element currently only supports pull-based scheduling.
melunko@47
    31
 * </para>
melunko@47
    32
 * <title>Example launch line</title>
melunko@47
    33
 * <para>
melunko@47
    34
 * <programlisting>
melunko@47
    35
 * gst-launch filesrc test.nuv ! nuvdemux name=demux  demux.audio_00 ! decodebin ! audioconvert ! audioresample ! autoaudiosink   demux.video_00 ! queue ! decodebin ! ffmpegcolorspace ! videoscale ! autovideosink
melunko@47
    36
 * </programlisting>
melunko@47
    37
 * Play (parse and decode) an .nuv file and try to output it to
melunko@47
    38
 * an automatically detected soundcard and videosink. If the NUV file contains
melunko@47
    39
 * compressed audio or video data, this will only work if you have the
melunko@47
    40
 * right decoder elements/plugins installed.
melunko@47
    41
 * </para>
melunko@47
    42
 * </refsect2>
melunko@47
    43
 *
melunko@47
    44
 */
melunko@47
    45
melunko@47
    46
#ifdef HAVE_CONFIG_H
melunko@47
    47
#include "config.h"
melunko@47
    48
#endif
melunko@47
    49
melunko@47
    50
#include <gst/gst.h>
melunko@47
    51
#include <gst/gsterror.h>
melunko@47
    52
#include <gst/gstplugin.h>
melunko@47
    53
#include <string.h>
renatofilho@85
    54
#include <math.h>
melunko@47
    55
renatofilho@74
    56
#include "glib/gi18n.h"
melunko@47
    57
#include "gstnuvdemux.h"
melunko@47
    58
renatofilho@91
    59
#define GST_NUV_DEMUX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_NUV_DEMUX, GstNuvDemuxPrivate))
renatofilho@91
    60
melunko@47
    61
GST_DEBUG_CATEGORY_STATIC (nuvdemux_debug);
melunko@47
    62
#define GST_CAT_DEFAULT nuvdemux_debug
renatofilho@91
    63
#define GST_FLOW_ERROR_NO_DATA  -101
melunko@47
    64
renatofilho@82
    65
enum
renatofilho@82
    66
{
renatofilho@82
    67
   NUV_PUSH_MODE = 0,
renatofilho@82
    68
   NUV_PULL_MODE
renatofilho@82
    69
};
melunko@47
    70
melunko@47
    71
GST_DEBUG_CATEGORY_EXTERN (GST_CAT_EVENT);
melunko@47
    72
melunko@47
    73
static const GstElementDetails gst_nuv_demux_details =
melunko@47
    74
GST_ELEMENT_DETAILS ("Nuv demuxer",
melunko@47
    75
    "Codec/Demuxer",
melunko@47
    76
    "Demultiplex a .nuv file into audio and video",
melunko@47
    77
    "Renato Araujo Oliveira Filho <renato.filho@indt.org.br>,"
melunko@47
    78
    "Rosfran Borges <rosfran.borges@indt.org.br>");
melunko@47
    79
renatofilho@91
    80
renatofilho@91
    81
/* file header */
renatofilho@91
    82
typedef struct
renatofilho@91
    83
{
renatofilho@91
    84
    gchar id[12];       /* "NuppelVideo\0" or "MythTVVideo\0" */
renatofilho@91
    85
    gchar version[5];    /* "x.xx\0" */
renatofilho@91
    86
renatofilho@91
    87
    gint  i_width;
renatofilho@91
    88
    gint  i_height;
renatofilho@91
    89
    gint  i_width_desired;
renatofilho@91
    90
    gint  i_height_desired;
renatofilho@91
    91
renatofilho@91
    92
    gchar i_mode;            /* P progressive, I interlaced */
renatofilho@91
    93
renatofilho@91
    94
    gdouble  d_aspect;       /* 1.0 squared pixel */
renatofilho@91
    95
    gdouble  d_fps;
renatofilho@91
    96
    //fps num/denom
renatofilho@91
    97
    gint     i_fpsn;
renatofilho@91
    98
    gint     i_fpsd;
renatofilho@91
    99
renatofilho@91
   100
    gint     i_video_blocks; /* 0 no video, -1 unknown */
renatofilho@91
   101
    gint     i_audio_blocks;
renatofilho@91
   102
    gint     i_text_blocks;
renatofilho@91
   103
renatofilho@91
   104
    gint     i_keyframe_distance;
renatofilho@91
   105
renatofilho@91
   106
} nuv_header;
renatofilho@91
   107
renatofilho@91
   108
/* frame header */
renatofilho@91
   109
typedef struct
renatofilho@91
   110
{
renatofilho@91
   111
    gchar i_type;        /* A: audio, V: video, S: sync; T: test
renatofilho@91
   112
                           R: Seekpoint (string:RTjjjjjjjj)
renatofilho@91
   113
                           D: Extra data for codec */
renatofilho@91
   114
    gchar i_compression; /* V: 0 uncompressed
renatofilho@91
   115
                              1 RTJpeg
renatofilho@91
   116
                              2 RTJpeg+lzo
renatofilho@91
   117
                              N black frame
renatofilho@91
   118
                              L copy last
renatofilho@91
   119
                           A: 0 uncompressed (44100 1-bits, 2ch)
renatofilho@91
   120
                              1 lzo
renatofilho@91
   121
                              2 layer 2
renatofilho@91
   122
                              3 layer 3
renatofilho@91
   123
                              F flac
renatofilho@91
   124
                              S shorten
renatofilho@91
   125
                              N null frame loudless
renatofilho@91
   126
                              L copy last
renatofilho@91
   127
                            S: B audio and vdeo sync point
renatofilho@91
   128
                               A audio sync info (timecode == effective
renatofilho@91
   129
                                    dsp frequency*100)
renatofilho@91
   130
                               V next video sync (timecode == next video
renatofilho@91
   131
                                    frame num)
renatofilho@91
   132
                               S audio,video,text correlation */
renatofilho@91
   133
    gchar i_keyframe;    /* 0 keyframe, else no no key frame */
renatofilho@91
   134
    guint8 i_filters;  /* 0x01: gauss 5 pixel (8,2,2,2,2)/16
renatofilho@91
   135
                           0x02: gauss 5 pixel (8,1,1,1,1)/12
renatofilho@91
   136
                           0x04: cartoon filter */
renatofilho@91
   137
renatofilho@91
   138
    gint32 i_timecode;     /* ms */
renatofilho@91
   139
renatofilho@91
   140
    gint i_length;       /* V,A,T: length of following data
renatofilho@91
   141
                           S: length of packet correl */
renatofilho@91
   142
} nuv_frame_header;
renatofilho@91
   143
renatofilho@91
   144
/* FIXME Not sure of this one */
renatofilho@91
   145
typedef struct
renatofilho@91
   146
{
renatofilho@91
   147
    gint             i_version;
renatofilho@91
   148
    guint32		     i_video_fcc;
renatofilho@91
   149
renatofilho@91
   150
    guint32		     i_audio_fcc;
renatofilho@91
   151
    gint             i_audio_sample_rate;
renatofilho@91
   152
    gint             i_audio_bits_per_sample;
renatofilho@91
   153
    gint             i_audio_channels;
renatofilho@91
   154
    gint             i_audio_compression_ratio;
renatofilho@91
   155
    gint             i_audio_quality;
renatofilho@91
   156
    gint             i_rtjpeg_quality;
renatofilho@91
   157
    gint             i_rtjpeg_luma_filter;
renatofilho@91
   158
    gint             i_rtjpeg_chroma_filter;
renatofilho@91
   159
    gint             i_lavc_bitrate;
renatofilho@91
   160
    gint             i_lavc_qmin;
renatofilho@91
   161
    gint             i_lavc_qmax;
renatofilho@91
   162
    gint             i_lavc_maxqdiff;
renatofilho@91
   163
    gint64         	 i_seekable_offset;
renatofilho@91
   164
    gint64           i_keyframe_adjust_offset;
renatofilho@91
   165
renatofilho@91
   166
} nuv_extended_header;
renatofilho@91
   167
renatofilho@91
   168
typedef enum {
renatofilho@91
   169
  GST_NUV_DEMUX_START,
renatofilho@91
   170
  GST_NUV_DEMUX_HEADER_DATA,
renatofilho@91
   171
  GST_NUV_DEMUX_EXTRA_DATA,
renatofilho@91
   172
  GST_NUV_DEMUX_MPEG_DATA,
renatofilho@91
   173
  GST_NUV_DEMUX_EXTEND_HEADER,
renatofilho@91
   174
  GST_NUV_DEMUX_EXTEND_HEADER_DATA,
renatofilho@91
   175
  GST_NUV_DEMUX_FRAME_HEADER,
renatofilho@91
   176
  GST_NUV_DEMUX_MOVI,
renatofilho@91
   177
  GST_NUV_DEMUX_INVALID_DATA
renatofilho@91
   178
} GstNuvDemuxState;
renatofilho@91
   179
renatofilho@91
   180
struct _GstNuvDemuxPrivate {
renatofilho@91
   181
  /* used for indicate the mode */
renatofilho@91
   182
  guint         mode;
renatofilho@91
   183
renatofilho@91
   184
  /* used on push mode */
renatofilho@91
   185
  GstAdapter    *adapter;
renatofilho@91
   186
renatofilho@91
   187
  /* pads */
renatofilho@91
   188
  GstPad        *sinkpad;
renatofilho@91
   189
  GstPad        *src_video_pad;
renatofilho@91
   190
  GstPad        *src_audio_pad;
renatofilho@91
   191
renatofilho@91
   192
  /* Flow control */
renatofilho@91
   193
  GstFlowReturn last_video_return;
renatofilho@91
   194
  GstFlowReturn last_audio_return;
renatofilho@194
   195
  gboolean      more_data;
renatofilho@91
   196
renatofilho@91
   197
  /* NUV decoding state */
renatofilho@91
   198
  GstNuvDemuxState  state;
renatofilho@91
   199
  GstSegment        segment;
renatofilho@91
   200
  guint64           last_update;
renatofilho@91
   201
  guint64           offset;
renatofilho@91
   202
  guint64           streamer_offset;
renatofilho@91
   203
renatofilho@91
   204
  /* duration information */
renatofilho@91
   205
  gint64            duration_bytes;
renatofilho@91
   206
  gint64            duration_time;
renatofilho@91
   207
  gint64            duration_average;
renatofilho@91
   208
renatofilho@91
   209
  /* segment control info */
renatofilho@91
   210
  gboolean          new_audio_segment;
renatofilho@91
   211
  gboolean          new_video_segment;
renatofilho@91
   212
renatofilho@91
   213
  /* Mpeg ExtraData */
renatofilho@91
   214
  guint64       mpeg_data_size;
renatofilho@91
   215
  GstBuffer     *mpeg_buffer;
renatofilho@91
   216
renatofilho@91
   217
  /* Headers */
renatofilho@170
   218
  nuv_header h;
renatofilho@170
   219
  nuv_extended_header eh;
renatofilho@170
   220
  nuv_frame_header fh;
renatofilho@91
   221
renatofilho@91
   222
  /* anothers info */
renatofilho@91
   223
  gint64            time_start;
renatofilho@91
   224
  gint64            time_diff;
renatofilho@91
   225
  gint64            time_qos;
renatofilho@91
   226
  guint64           last_frame_time;
renatofilho@91
   227
};
renatofilho@91
   228
renatofilho@91
   229
melunko@47
   230
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
melunko@47
   231
    GST_PAD_SINK,
melunko@47
   232
    GST_PAD_ALWAYS,
melunko@47
   233
    GST_STATIC_CAPS ("video/x-nuv"));
melunko@47
   234
melunko@47
   235
static GstStaticPadTemplate audio_src_template =
melunko@47
   236
GST_STATIC_PAD_TEMPLATE ("audio_src",
melunko@47
   237
    GST_PAD_SRC,
melunko@47
   238
    GST_PAD_SOMETIMES,
melunko@47
   239
    GST_STATIC_CAPS_ANY);
melunko@47
   240
melunko@47
   241
static GstStaticPadTemplate video_src_template =
melunko@47
   242
GST_STATIC_PAD_TEMPLATE ("video_src",
melunko@47
   243
    GST_PAD_SRC,
melunko@47
   244
    GST_PAD_SOMETIMES,
melunko@47
   245
    GST_STATIC_CAPS_ANY);
melunko@47
   246
renatofilho@91
   247
static void gst_nuv_demux_dispose (GObject * object);
melunko@47
   248
static void gst_nuv_demux_finalize (GObject * object);
melunko@47
   249
static GstStateChangeReturn gst_nuv_demux_change_state (GstElement * element,
melunko@47
   250
    GstStateChange transition);
melunko@47
   251
static void gst_nuv_demux_loop (GstPad * pad);
melunko@47
   252
static GstFlowReturn gst_nuv_demux_chain (GstPad * pad, GstBuffer * buf);
melunko@47
   253
static GstFlowReturn gst_nuv_demux_play (GstPad * pad);
melunko@47
   254
static gboolean gst_nuv_demux_sink_activate_pull (GstPad * sinkpad,
melunko@47
   255
    gboolean active);
renatofilho@91
   256
static gboolean gst_nuv_demux_sink_activate_push (GstPad * pad,
renatofilho@77
   257
    gboolean active);
melunko@47
   258
static gboolean gst_nuv_demux_sink_activate (GstPad * sinkpad);
renatofilho@91
   259
static gboolean gst_nuv_demux_sink_event    (GstPad *pad, GstEvent *event);
renatofilho@425
   260
static gboolean gst_nuv_demux_srcpad_event  (GstPad * pad, GstEvent * event);
renatofilho@425
   261
melunko@47
   262
static GstFlowReturn gst_nuv_demux_read_bytes (GstNuvDemux * nuv, guint64 size,
melunko@47
   263
    gboolean move, GstBuffer ** buffer);
melunko@47
   264
static void gst_nuv_demux_reset (GstNuvDemux * nuv);
melunko@47
   265
static void gst_nuv_demux_destoy_src_pad (GstNuvDemux * nuv);
melunko@47
   266
static void gst_nuv_demux_send_eos (GstNuvDemux * nuv);
renatofilho@91
   267
static void gst_nuv_demux_update_duration (GstNuvDemux *nuv, guint64 current_timestamp);
renatofilho@91
   268
static gint64 gst_nuv_demux_get_bytes_duration (GstNuvDemux *nuv);
renatofilho@91
   269
static gint64 gst_nuv_demux_get_time_duration (GstNuvDemux *nuv);
renatofilho@181
   270
renatofilho@181
   271
#if (GST_VERSION_MINOR == 10) && (GST_VERSION_MICRO < 6) 
renatofilho@196
   272
GstBuffer * gst_adapter_take_buffer (GstAdapter * adapter, guint nbytes);
renatofilho@181
   273
#endif
melunko@47
   274
renatofilho@91
   275
melunko@47
   276
GST_BOILERPLATE (GstNuvDemux, gst_nuv_demux, GstElement, GST_TYPE_ELEMENT);
melunko@47
   277
renatofilho@91
   278
/******************************************************************************
renatofilho@91
   279
 * Utils function
renatofilho@91
   280
 ******************************************************************************/
melunko@47
   281
#if G_BYTE_ORDER == G_BIG_ENDIAN
melunko@47
   282
static inline gdouble
melunko@47
   283
_gdouble_swap_le_be (gdouble * d)
melunko@47
   284
{
melunko@47
   285
  union
melunko@47
   286
  {
melunko@47
   287
    guint64 i;
melunko@47
   288
    gdouble d;
melunko@47
   289
  } u;
melunko@47
   290
melunko@47
   291
  u.d = *d;
melunko@47
   292
  u.i = GUINT64_SWAP_LE_BE (u.i);
melunko@47
   293
  return u.d;
melunko@47
   294
}
melunko@47
   295
melunko@47
   296
#define READ_DOUBLE_FROM_LE(d) (_gdouble_swap_le_be((gdouble* ) d))
melunko@47
   297
#else /* G_BYTE_ORDER != G_BIG_ENDIAN */
melunko@47
   298
#define READ_DOUBLE_FROM_LE(d) *((gdouble* ) (d))
melunko@47
   299
#endif /* G_BYTE_ORDER != G_BIG_ENDIAN */
melunko@47
   300
renatofilho@91
   301
static void
renatofilho@85
   302
double2fraction (double in, int *num, int *denom)
renatofilho@85
   303
{
renatofilho@85
   304
    if (in == 29.97) {
renatofilho@85
   305
        *num = 30000;
renatofilho@85
   306
        *denom = 1001;
renatofilho@85
   307
    } else if (in == 23.976) {
renatofilho@85
   308
        *num = 24000;
renatofilho@85
   309
        *denom = 1001;
renatofilho@85
   310
    } else {
renatofilho@85
   311
        *denom = 1;
renatofilho@85
   312
        while (in - floor(in) >= 0.1) {
renatofilho@85
   313
            *denom *= 10;
renatofilho@85
   314
            in *= 10.0;
renatofilho@85
   315
        }
renatofilho@85
   316
        *num = (int)floor(in);
renatofilho@85
   317
    }
renatofilho@85
   318
}
renatofilho@85
   319
renatofilho@91
   320
/* GObject Functions */
renatofilho@91
   321
melunko@47
   322
static void
melunko@47
   323
gst_nuv_demux_base_init (gpointer klass)
melunko@47
   324
{
melunko@47
   325
  GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
melunko@47
   326
melunko@47
   327
  gst_element_class_add_pad_template (element_class,
melunko@47
   328
      gst_static_pad_template_get (&audio_src_template));
melunko@47
   329
melunko@47
   330
  gst_element_class_add_pad_template (element_class,
melunko@47
   331
      gst_static_pad_template_get (&video_src_template));
melunko@47
   332
melunko@47
   333
  gst_element_class_add_pad_template (element_class,
melunko@47
   334
      gst_static_pad_template_get (&sink_template));
melunko@47
   335
  gst_element_class_set_details (element_class, &gst_nuv_demux_details);
melunko@47
   336
}
melunko@47
   337
melunko@47
   338
static void
melunko@47
   339
gst_nuv_demux_class_init (GstNuvDemuxClass * klass)
melunko@47
   340
{
melunko@47
   341
  GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
melunko@47
   342
  GObjectClass *gobject_class = (GObjectClass *) klass;
melunko@47
   343
melunko@47
   344
  GST_DEBUG_CATEGORY_INIT (nuvdemux_debug, "nuvdemux",
melunko@47
   345
      0, "Demuxer for NUV streams");
melunko@47
   346
melunko@47
   347
  parent_class = g_type_class_peek_parent (klass);
melunko@47
   348
renatofilho@91
   349
  gobject_class->dispose = gst_nuv_demux_dispose;
melunko@47
   350
  gobject_class->finalize = gst_nuv_demux_finalize;
melunko@47
   351
  gstelement_class->change_state = gst_nuv_demux_change_state;
renatofilho@91
   352
renatofilho@91
   353
  g_type_class_add_private (gobject_class, sizeof (GstNuvDemuxPrivate));
melunko@47
   354
}
melunko@47
   355
melunko@47
   356
static void
melunko@47
   357
gst_nuv_demux_init (GstNuvDemux * nuv, GstNuvDemuxClass * nuv_class)
melunko@47
   358
{
renatofilho@91
   359
  nuv->priv = GST_NUV_DEMUX_GET_PRIVATE (nuv);
renatofilho@91
   360
  nuv->priv->sinkpad = gst_pad_new_from_static_template (&sink_template, "sink");
renatofilho@422
   361
renatofilho@422
   362
  /* creating adapter */
renatofilho@422
   363
  nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@422
   364
  nuv->priv->adapter = gst_adapter_new ();
renatofilho@422
   365
renatofilho@422
   366
  g_debug ("Adapter %p", nuv->priv->adapter);
renatofilho@422
   367
renatofilho@422
   368
  nuv->priv->new_audio_segment = TRUE;
renatofilho@422
   369
  nuv->priv->new_video_segment = TRUE;
renatofilho@422
   370
renatofilho@91
   371
  gst_pad_set_activate_function (nuv->priv->sinkpad, gst_nuv_demux_sink_activate);
renatofilho@91
   372
  gst_pad_set_activatepull_function (nuv->priv->sinkpad,
renatofilho@91
   373
      gst_nuv_demux_sink_activate_pull);
renatofilho@91
   374
  gst_pad_set_activatepush_function (nuv->priv->sinkpad,
renatofilho@91
   375
      gst_nuv_demux_sink_activate_push);
renatofilho@91
   376
  gst_pad_set_chain_function (nuv->priv->sinkpad,
renatofilho@91
   377
      GST_DEBUG_FUNCPTR (gst_nuv_demux_chain));
renatofilho@91
   378
  gst_pad_set_event_function (nuv->priv->sinkpad,
renatofilho@91
   379
      gst_nuv_demux_sink_event);
renatofilho@422
   380
renatofilho@91
   381
  gst_element_add_pad (GST_ELEMENT (nuv), nuv->priv->sinkpad);
melunko@47
   382
renatofilho@91
   383
}
melunko@47
   384
renatofilho@91
   385
static void
renatofilho@91
   386
gst_nuv_demux_dispose (GObject * object)
renatofilho@91
   387
{
renatofilho@91
   388
  GstNuvDemux *nuv = GST_NUV_DEMUX (object);
renatofilho@77
   389
renatofilho@422
   390
  g_debug ("NUV DISPOSE");
renatofilho@422
   391
renatofilho@91
   392
  if (nuv->priv->mpeg_buffer != NULL) {
renatofilho@91
   393
    gst_buffer_unref (nuv->priv->mpeg_buffer);
renatofilho@91
   394
  }
melunko@47
   395
renatofilho@91
   396
  gst_nuv_demux_reset (GST_NUV_DEMUX (object));
renatofilho@91
   397
  gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (object));
leo_sobral@80
   398
renatofilho@91
   399
  if (nuv->priv->adapter != NULL) {
renatofilho@91
   400
    gst_object_unref (nuv->priv->adapter);
renatofilho@91
   401
  }
melunko@47
   402
}
melunko@47
   403
melunko@47
   404
static void
melunko@47
   405
gst_nuv_demux_finalize (GObject * object)
melunko@47
   406
{
melunko@47
   407
  G_OBJECT_CLASS (parent_class)->finalize (object);
melunko@47
   408
}
melunko@47
   409
rosfran@56
   410
melunko@47
   411
/* HeaderLoad:
melunko@47
   412
 */
melunko@47
   413
static GstFlowReturn
renatofilho@170
   414
gst_nuv_demux_header_load (GstNuvDemux * nuv, nuv_header *h)
melunko@47
   415
{
melunko@47
   416
  GstBuffer *buffer = NULL;
melunko@47
   417
  GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 72, TRUE, &buffer);
melunko@47
   418
renatofilho@182
   419
  if ((res != GST_FLOW_OK) || (buffer == NULL)) {
renatofilho@182
   420
      goto done;
renatofilho@182
   421
  }
melunko@47
   422
melunko@47
   423
  memcpy (h->id, buffer->data, 12);
melunko@47
   424
  memcpy (h->version, buffer->data + 12, 5);
melunko@47
   425
  h->i_width = GST_READ_UINT32_LE (&buffer->data[20]);
melunko@47
   426
  h->i_height = GST_READ_UINT32_LE (&buffer->data[24]);
melunko@47
   427
  h->i_width_desired = GST_READ_UINT32_LE (&buffer->data[28]);
melunko@47
   428
  h->i_height_desired = GST_READ_UINT32_LE (&buffer->data[32]);
renatofilho@77
   429
  h->i_mode = GPOINTER_TO_INT (buffer->data[36]);
melunko@47
   430
  h->d_aspect = READ_DOUBLE_FROM_LE (&buffer->data[40]);
melunko@47
   431
  h->d_fps = READ_DOUBLE_FROM_LE (&buffer->data[48]);
renatofilho@85
   432
  /* get the num and denom values from fps */
renatofilho@85
   433
  double2fraction (h->d_fps, &h->i_fpsn, &h->i_fpsd);
melunko@47
   434
  h->i_video_blocks = GST_READ_UINT32_LE (&buffer->data[56]);
melunko@47
   435
  h->i_audio_blocks = GST_READ_UINT32_LE (&buffer->data[60]);
melunko@47
   436
  h->i_text_blocks = GST_READ_UINT32_LE (&buffer->data[64]);
melunko@47
   437
  h->i_keyframe_distance = GST_READ_UINT32_LE (&buffer->data[68]);
melunko@47
   438
melunko@47
   439
  GST_DEBUG_OBJECT (nuv,
melunko@47
   440
      "nuv: h=%s v=%s %dx%d a=%f fps=%f v=%d a=%d t=%d kfd=%d", h->id,
melunko@47
   441
      h->version, h->i_width, h->i_height, h->d_aspect, h->d_fps,
melunko@47
   442
      h->i_video_blocks, h->i_audio_blocks, h->i_text_blocks,
melunko@47
   443
      h->i_keyframe_distance);
melunko@47
   444
renatofilho@182
   445
done:
renatofilho@182
   446
  if (buffer != NULL) {
renatofilho@182
   447
     gst_buffer_unref (buffer);
renatofilho@182
   448
     buffer = NULL;
renatofilho@182
   449
  }
melunko@47
   450
  return res;
melunko@47
   451
}
melunko@47
   452
melunko@47
   453
static GstFlowReturn
melunko@47
   454
gst_nuv_demux_stream_header_data (GstNuvDemux * nuv)
melunko@47
   455
{
renatofilho@91
   456
  GstFlowReturn res;
melunko@47
   457
renatofilho@91
   458
  res = gst_nuv_demux_header_load (nuv, &nuv->priv->h);
melunko@47
   459
  if (res == GST_FLOW_OK)
renatofilho@91
   460
    nuv->priv->state = GST_NUV_DEMUX_EXTRA_DATA;
melunko@47
   461
  return res;
melunko@47
   462
}
melunko@47
   463
melunko@47
   464
/*
melunko@47
   465
 * Read NUV file tag
melunko@47
   466
 */
melunko@47
   467
static GstFlowReturn
melunko@47
   468
gst_nuv_demux_stream_file_header (GstNuvDemux * nuv)
melunko@47
   469
{
melunko@47
   470
  GstFlowReturn res = GST_FLOW_OK;
melunko@47
   471
  GstBuffer *file_header = NULL;
melunko@47
   472
melunko@47
   473
  res = gst_nuv_demux_read_bytes (nuv, 12, FALSE, &file_header);
renatofilho@182
   474
  if (res == GST_FLOW_OK) {
melunko@47
   475
    if (strncmp ((gchar *) file_header->data, "MythTVVideo", 11) ||
melunko@47
   476
        strncmp ((gchar *) file_header->data, "NuppelVideo", 11)) {
renatofilho@91
   477
      nuv->priv->state = GST_NUV_DEMUX_HEADER_DATA;
melunko@47
   478
    } else {
melunko@47
   479
      GST_DEBUG_OBJECT (nuv, "error parsing file header");
renatofilho@91
   480
      nuv->priv->state = GST_NUV_DEMUX_INVALID_DATA;
melunko@47
   481
      res = GST_FLOW_ERROR;
melunko@47
   482
    }
melunko@47
   483
  }
renatofilho@163
   484
melunko@47
   485
  if (file_header != NULL) {
melunko@47
   486
    gst_buffer_unref (file_header);
renatofilho@182
   487
    file_header = NULL;
melunko@47
   488
  }
melunko@47
   489
  return res;
melunko@47
   490
}
melunko@47
   491
melunko@47
   492
/* FrameHeaderLoad:
melunko@47
   493
 */
melunko@47
   494
static GstFlowReturn
renatofilho@170
   495
gst_nuv_demux_frame_header_load (GstNuvDemux * nuv, nuv_frame_header *h)
melunko@47
   496
{
melunko@47
   497
  unsigned char *data;
melunko@47
   498
  GstBuffer *buf = NULL;
melunko@47
   499
melunko@47
   500
  GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 12, TRUE, &buf);
melunko@47
   501
renatofilho@84
   502
  if ((res != GST_FLOW_OK) || (buf == NULL)) {
renatofilho@182
   503
      goto done;
melunko@47
   504
  }
renatofilho@194
   505
melunko@47
   506
  data = buf->data;
melunko@47
   507
renatofilho@77
   508
  h->i_type = GPOINTER_TO_INT (data[0]);
renatofilho@77
   509
  h->i_compression = GPOINTER_TO_INT (data[1]);
renatofilho@77
   510
  h->i_keyframe = GPOINTER_TO_INT (data[2]);
renatofilho@77
   511
  h->i_filters = GPOINTER_TO_INT (data[3]);
rosfran@57
   512
  h->i_timecode = GST_READ_UINT32_LE (&data[4]);
melunko@47
   513
  h->i_length = GST_READ_UINT32_LE (&data[8]);
renatofilho@91
   514
rosfran@56
   515
  GST_DEBUG_OBJECT (nuv, "frame hdr: t=%c c=%c k=%d f=0x%x timecode=%d l=%d",
melunko@47
   516
      h->i_type,
melunko@47
   517
      h->i_compression ? h->i_compression : ' ',
melunko@47
   518
      h->i_keyframe ? h->i_keyframe : ' ',
melunko@47
   519
      h->i_filters, h->i_timecode, h->i_length);
melunko@47
   520
renatofilho@182
   521
done:  
renatofilho@182
   522
  if (buf != NULL) {
renatofilho@182
   523
      gst_buffer_unref (buf);
renatofilho@182
   524
      buf = NULL;
renatofilho@182
   525
  }
renatofilho@182
   526
  return res;
melunko@47
   527
}
melunko@47
   528
melunko@47
   529
static GstFlowReturn
melunko@47
   530
gst_nuv_demux_extended_header_load (GstNuvDemux * nuv,
renatofilho@170
   531
    nuv_extended_header * h)
melunko@47
   532
{
melunko@47
   533
  unsigned char *data;
melunko@47
   534
  GstBuffer *buff = NULL;
melunko@47
   535
melunko@47
   536
  GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 512, TRUE, &buff);
melunko@47
   537
renatofilho@84
   538
  if ((res != GST_FLOW_OK) || (buff == NULL)) {
renatofilho@182
   539
      goto done;
melunko@47
   540
  }
melunko@47
   541
melunko@47
   542
  data = buff->data;
melunko@47
   543
  h->i_version = GST_READ_UINT32_LE (&data[0]);
melunko@47
   544
  h->i_video_fcc = GST_MAKE_FOURCC (data[4], data[5], data[6], data[7]);
melunko@47
   545
  h->i_audio_fcc = GST_MAKE_FOURCC (data[8], data[9], data[10], data[11]);
melunko@47
   546
  h->i_audio_sample_rate = GST_READ_UINT32_LE (&data[12]);
melunko@47
   547
  h->i_audio_bits_per_sample = GST_READ_UINT32_LE (&data[16]);
melunko@47
   548
  h->i_audio_channels = GST_READ_UINT32_LE (&data[20]);
melunko@47
   549
  h->i_audio_compression_ratio = GST_READ_UINT32_LE (&data[24]);
melunko@47
   550
  h->i_audio_quality = GST_READ_UINT32_LE (&data[28]);
melunko@47
   551
  h->i_rtjpeg_quality = GST_READ_UINT32_LE (&data[32]);
melunko@47
   552
  h->i_rtjpeg_luma_filter = GST_READ_UINT32_LE (&data[36]);
melunko@47
   553
  h->i_rtjpeg_chroma_filter = GST_READ_UINT32_LE (&data[40]);
melunko@47
   554
  h->i_lavc_bitrate = GST_READ_UINT32_LE (&data[44]);
melunko@47
   555
  h->i_lavc_qmin = GST_READ_UINT32_LE (&data[48]);
melunko@47
   556
  h->i_lavc_qmin = GST_READ_UINT32_LE (&data[52]);
melunko@47
   557
  h->i_lavc_maxqdiff = GST_READ_UINT32_LE (&data[56]);
melunko@47
   558
  h->i_seekable_offset = GST_READ_UINT64_LE (&data[60]);
melunko@47
   559
  h->i_keyframe_adjust_offset = GST_READ_UINT64_LE (&data[68]);
melunko@47
   560
melunko@47
   561
  GST_DEBUG_OBJECT (nuv,
melunko@47
   562
      "ex hdr: v=%d vffc=%4.4s afcc=%4.4s %dHz %dbits ach=%d acr=%d aq=%d"
melunko@47
   563
      "rtjpeg q=%d lf=%d lc=%d lavc br=%d qmin=%d qmax=%d maxqdiff=%d seekableoff=%lld keyfao=%lld",
melunko@47
   564
      h->i_version, (gchar *) & h->i_video_fcc, (gchar *) & h->i_audio_fcc,
melunko@47
   565
      h->i_audio_sample_rate, h->i_audio_bits_per_sample, h->i_audio_channels,
melunko@47
   566
      h->i_audio_compression_ratio, h->i_audio_quality, h->i_rtjpeg_quality,
melunko@47
   567
      h->i_rtjpeg_luma_filter, h->i_rtjpeg_chroma_filter, h->i_lavc_bitrate,
melunko@47
   568
      h->i_lavc_qmin, h->i_lavc_qmax, h->i_lavc_maxqdiff, h->i_seekable_offset,
melunko@47
   569
      h->i_keyframe_adjust_offset);
melunko@47
   570
renatofilho@182
   571
done:
renatofilho@182
   572
  if (buff != NULL) {
renatofilho@182
   573
    gst_buffer_unref (buff);
renatofilho@182
   574
    buff = NULL;
renatofilho@182
   575
  }
melunko@47
   576
  return res;
melunko@47
   577
}
renatofilho@91
   578
renatofilho@91
   579
renatofilho@91
   580
/* Query Functions */
renatofilho@85
   581
static const GstQueryType *
renatofilho@85
   582
gst_nuv_demux_get_src_query_types (GstPad * pad)
renatofilho@85
   583
{
renatofilho@85
   584
  static const GstQueryType src_types[] = {
renatofilho@85
   585
    GST_QUERY_POSITION,
renatofilho@91
   586
    GST_QUERY_DURATION,
renatofilho@85
   587
    0
renatofilho@85
   588
  };
renatofilho@85
   589
renatofilho@85
   590
  return src_types;
renatofilho@85
   591
}
renatofilho@85
   592
renatofilho@85
   593
static gboolean
renatofilho@85
   594
gst_nuv_demux_handle_src_query (GstPad * pad, GstQuery * query)
renatofilho@85
   595
{
renatofilho@85
   596
  gboolean res = FALSE;
renatofilho@85
   597
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@85
   598
renatofilho@85
   599
  switch (GST_QUERY_TYPE (query)) {
renatofilho@85
   600
    case GST_QUERY_POSITION:
renatofilho@91
   601
      if (GST_CLOCK_TIME_IS_VALID (nuv->priv->last_frame_time)) {
renatofilho@91
   602
renatofilho@91
   603
        gst_query_set_position (query, GST_FORMAT_TIME, nuv->priv->last_frame_time);
renatofilho@85
   604
        res = TRUE;
renatofilho@91
   605
      }
renatofilho@91
   606
      break;
renatofilho@91
   607
    case GST_QUERY_DURATION:
renatofilho@91
   608
      {
renatofilho@91
   609
        gint64 duration = 0;
renatofilho@91
   610
        duration = gst_nuv_demux_get_time_duration (nuv);
renatofilho@91
   611
        if (duration == GST_CLOCK_TIME_NONE) {
renatofilho@91
   612
            duration = nuv->priv->duration_average;
renatofilho@91
   613
        }
renatofilho@91
   614
        if (duration != GST_CLOCK_TIME_NONE) {
renatofilho@91
   615
            gst_query_set_duration (query, GST_FORMAT_TIME, duration);
renatofilho@91
   616
            res = TRUE;
renatofilho@91
   617
        }
renatofilho@85
   618
      }
renatofilho@85
   619
      break;
renatofilho@85
   620
    default:
renatofilho@85
   621
      res = FALSE;
renatofilho@85
   622
      break;
renatofilho@85
   623
  }
renatofilho@85
   624
renatofilho@85
   625
  gst_object_unref (nuv);
renatofilho@85
   626
renatofilho@85
   627
  return res;
renatofilho@85
   628
}
melunko@47
   629
renatofilho@91
   630
static GstPad*
renatofilho@91
   631
gst_nuv_demux_create_pad (GstNuvDemux *nuv, GstCaps *caps, GstStaticPadTemplate *template, const gchar* name)
renatofilho@91
   632
{
renatofilho@91
   633
    GstPad *pad = NULL;
renatofilho@91
   634
    pad = gst_pad_new_from_static_template (template, name);
renatofilho@91
   635
    gst_pad_set_caps (pad, caps);
renatofilho@91
   636
    gst_pad_set_active (pad, TRUE);
renatofilho@133
   637
    gst_pad_use_fixed_caps (pad);
renatofilho@91
   638
    gst_element_add_pad (GST_ELEMENT (nuv), pad);
renatofilho@425
   639
    gst_pad_set_event_function (pad, 
renatofilho@425
   640
        GST_DEBUG_FUNCPTR (gst_nuv_demux_srcpad_event));
renatofilho@91
   641
renatofilho@91
   642
    return pad;
renatofilho@91
   643
}
renatofilho@91
   644
melunko@47
   645
static void
melunko@47
   646
gst_nuv_demux_create_pads (GstNuvDemux * nuv)
melunko@47
   647
{
renatofilho@170
   648
  if (nuv->priv->h.i_video_blocks != 0) {
melunko@47
   649
    GstCaps *video_caps = NULL;
melunko@47
   650
melunko@47
   651
    video_caps = gst_caps_new_simple ("video/x-divx",
melunko@47
   652
        "divxversion", G_TYPE_INT, 4,
renatofilho@170
   653
        "width", G_TYPE_INT, nuv->priv->h.i_width,
renatofilho@170
   654
        "height", G_TYPE_INT, nuv->priv->h.i_height,
renatofilho@170
   655
        "framerate", GST_TYPE_FRACTION, nuv->priv->h.i_fpsn, nuv->priv->h.i_fpsd,
renatofilho@170
   656
        "format", GST_TYPE_FOURCC, nuv->priv->eh.i_video_fcc,
melunko@47
   657
        "pixel-aspect-ratio", GST_TYPE_FRACTION,
renatofilho@170
   658
        (gint) (nuv->priv->h.d_aspect * 1000.0f), 1000, NULL);
melunko@47
   659
renatofilho@91
   660
    nuv->priv->src_video_pad = gst_nuv_demux_create_pad (nuv, video_caps, &video_src_template, "video_src");
melunko@47
   661
    gst_caps_unref (video_caps);
melunko@47
   662
  }
melunko@47
   663
renatofilho@170
   664
  if (nuv->priv->h.i_audio_blocks != 0) {
melunko@47
   665
    GstCaps *audio_caps = NULL;
melunko@47
   666
renatofilho@91
   667
    audio_caps = gst_caps_new_simple ("audio/mpeg",
renatofilho@170
   668
        "rate", G_TYPE_INT, nuv->priv->eh.i_audio_sample_rate,
renatofilho@170
   669
        "format", GST_TYPE_FOURCC, nuv->priv->eh.i_audio_fcc,
renatofilho@170
   670
        "channels", G_TYPE_INT, nuv->priv->eh.i_audio_channels,
melunko@273
   671
        "layer", G_TYPE_INT, 3, // fixme: magic number
renatofilho@170
   672
        "mpegversion", G_TYPE_INT, nuv->priv->eh.i_version, NULL);
melunko@251
   673
    
renatofilho@91
   674
    nuv->priv->src_audio_pad = gst_nuv_demux_create_pad (nuv, audio_caps, &audio_src_template, "audio_src");
melunko@47
   675
    gst_caps_unref (audio_caps);
melunko@47
   676
  }
melunko@47
   677
melunko@47
   678
  gst_element_no_more_pads (GST_ELEMENT (nuv));
melunko@47
   679
}
melunko@47
   680
renatofilho@425
   681
static gboolean
renatofilho@425
   682
gst_nuv_demux_validate_header (nuv_frame_header *h)
renatofilho@425
   683
{
renatofilho@425
   684
  gboolean valid = FALSE;
renatofilho@425
   685
  //g_debug ("Type %d   =  Compression %d", h->i_type, h->i_compression);
renatofilho@425
   686
  //g_usleep (1 * G_USEC_PER_SEC );
renatofilho@425
   687
  switch  (h->i_type) {
renatofilho@425
   688
/*
renatofilho@425
   689
    case 'V':
renatofilho@425
   690
      if (h->i_compression == 0 ||
renatofilho@425
   691
          h->i_compression == 1 ||
renatofilho@425
   692
          h->i_compression == 2 ||
renatofilho@425
   693
          h->i_compression == 'N' ||
renatofilho@425
   694
          h->i_compression == 'L') {
renatofilho@425
   695
         valid = TRUE;
renatofilho@425
   696
      }
renatofilho@425
   697
      break;
renatofilho@425
   698
    case 'A':
renatofilho@425
   699
      if (h->i_compression == 0 ||
renatofilho@425
   700
          h->i_compression == 1 ||
renatofilho@425
   701
          h->i_compression == 2 ||
renatofilho@425
   702
          h->i_compression == 3 ||
renatofilho@425
   703
          h->i_compression == 'F' ||
renatofilho@425
   704
          h->i_compression == 'S' ||
renatofilho@425
   705
          h->i_compression == 'N' ||
renatofilho@425
   706
          h->i_compression == 'L') {
renatofilho@425
   707
         valid = TRUE;
renatofilho@425
   708
      }
renatofilho@425
   709
      break;
renatofilho@425
   710
    case 'S':
renatofilho@425
   711
      if (h->i_compression == 'B' ||
renatofilho@425
   712
          h->i_compression == 'A' ||
renatofilho@425
   713
          h->i_compression == 'V' ||
renatofilho@425
   714
          h->i_compression == 'S') {
renatofilho@425
   715
         valid = TRUE;
renatofilho@425
   716
      }
renatofilho@425
   717
      break;
renatofilho@425
   718
*/
renatofilho@425
   719
    case 'A':
renatofilho@425
   720
    case 'V':
renatofilho@425
   721
    case 'S':
renatofilho@425
   722
    case 'R':
renatofilho@425
   723
    case 'D':
renatofilho@425
   724
      valid  = TRUE;
renatofilho@425
   725
      break;
renatofilho@425
   726
    default:
renatofilho@425
   727
      valid = FALSE;
renatofilho@425
   728
  }
renatofilho@425
   729
renatofilho@425
   730
  return valid;
renatofilho@425
   731
}
renatofilho@425
   732
melunko@47
   733
static GstFlowReturn
melunko@47
   734
gst_nuv_demux_read_head_frame (GstNuvDemux * nuv)
melunko@47
   735
{
melunko@47
   736
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@425
   737
  gboolean valid = FALSE;
melunko@47
   738
renatofilho@425
   739
  do {
renatofilho@425
   740
    ret = gst_nuv_demux_frame_header_load (nuv, &nuv->priv->fh);
renatofilho@425
   741
    if (ret != GST_FLOW_OK) {
renatofilho@425
   742
      g_debug ("FAIL TO READ HEADER");
renatofilho@425
   743
      return ret;
renatofilho@425
   744
    }
renatofilho@425
   745
renatofilho@425
   746
    if (gst_nuv_demux_validate_header (&nuv->priv->fh) == TRUE)
renatofilho@425
   747
	valid = TRUE;
renatofilho@425
   748
    else 
renatofilho@425
   749
       g_debug ("Invalid frame header");
renatofilho@425
   750
renatofilho@425
   751
  } while (valid == FALSE);
renatofilho@425
   752
renatofilho@425
   753
//  } while (gst_nuv_demux_validate_header (nuv->priv->fh));    
melunko@47
   754
renatofilho@91
   755
  nuv->priv->state = GST_NUV_DEMUX_MOVI;
melunko@47
   756
  return ret;
melunko@47
   757
}
melunko@47
   758
renatofilho@88
   759
static gboolean
renatofilho@88
   760
gst_nuv_combine_flow (GstNuvDemux *nuv)
renatofilho@88
   761
{
renatofilho@91
   762
    GstFlowReturn ret_video = nuv->priv->last_video_return;
renatofilho@91
   763
    GstFlowReturn ret_audio = nuv->priv->last_audio_return;
renatofilho@88
   764
renatofilho@88
   765
    if ((ret_video != GST_FLOW_OK) &&
renatofilho@88
   766
        (ret_audio != GST_FLOW_OK))
renatofilho@88
   767
        return FALSE;
renatofilho@88
   768
renatofilho@91
   769
    if (GST_FLOW_IS_FATAL (ret_video))
renatofilho@88
   770
        return FALSE;
renatofilho@88
   771
renatofilho@91
   772
    if (GST_FLOW_IS_FATAL (ret_audio))
renatofilho@88
   773
        return FALSE;
renatofilho@88
   774
renatofilho@91
   775
    return TRUE;
renatofilho@88
   776
}
renatofilho@88
   777
melunko@47
   778
static GstFlowReturn
melunko@47
   779
gst_nuv_demux_stream_data (GstNuvDemux * nuv)
melunko@47
   780
{
melunko@47
   781
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@91
   782
  GstPad *pad = NULL;
renatofilho@91
   783
  guint64 timestamp;
melunko@47
   784
  GstBuffer *buf = NULL;
renatofilho@170
   785
  nuv_frame_header h;
renatofilho@91
   786
renatofilho@91
   787
  h = nuv->priv->fh;
melunko@47
   788
renatofilho@170
   789
  if (h.i_type == 'R')
melunko@47
   790
    goto done;
renatofilho@91
   791
renatofilho@170
   792
  if (h.i_length > 0) {
renatofilho@425
   793
    ret = gst_nuv_demux_read_bytes (nuv, h.i_length, TRUE, &buf);
renatofilho@425
   794
    if ((ret != GST_FLOW_OK) || (buf == NULL)) {
renatofilho@425
   795
      goto done;
renatofilho@425
   796
    }
rosfran@57
   797
renatofilho@425
   798
    if ((h.i_timecode < 0)) {
renatofilho@425
   799
      h.i_timecode = 0;
renatofilho@425
   800
      //goto done;
renatofilho@425
   801
    }
renatofilho@91
   802
renatofilho@425
   803
    timestamp = h.i_timecode * GST_MSECOND;
renatofilho@425
   804
    GST_BUFFER_TIMESTAMP (buf) = timestamp;
renatofilho@77
   805
  }
renatofilho@91
   806
  else {
renatofilho@91
   807
    goto done;
renatofilho@91
   808
  }
renatofilho@91
   809
renatofilho@60
   810
renatofilho@170
   811
  switch (h.i_type) {
melunko@47
   812
    case 'V':
melunko@47
   813
    {
renatofilho@91
   814
      pad = nuv->priv->src_video_pad;
renatofilho@91
   815
renatofilho@91
   816
      if (nuv->priv->new_video_segment) {
renatofilho@136
   817
leo_sobral@80
   818
        /* send new segment event*/
renatofilho@137
   819
        gst_pad_push_event (nuv->priv->src_video_pad,
renatofilho@137
   820
          gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@137
   821
                                     GST_CLOCK_TIME_NONE, 0));
renatofilho@91
   822
renatofilho@91
   823
        if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
renatofilho@91
   824
            nuv->priv->time_start = timestamp;
renatofilho@91
   825
        }
renatofilho@91
   826
        nuv->priv->new_video_segment = FALSE;
leo_sobral@80
   827
      }
renatofilho@91
   828
melunko@47
   829
      break;
melunko@47
   830
    }
melunko@47
   831
    case 'A':
melunko@47
   832
    {
renatofilho@91
   833
      pad = nuv->priv->src_audio_pad;
renatofilho@91
   834
renatofilho@91
   835
      if (nuv->priv->new_audio_segment) {
leo_sobral@80
   836
        /* send new segment event*/
renatofilho@137
   837
        gst_pad_push_event (nuv->priv->src_audio_pad,
renatofilho@137
   838
          gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@137
   839
                                     GST_CLOCK_TIME_NONE, 0));
renatofilho@91
   840
renatofilho@91
   841
        if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
renatofilho@91
   842
            nuv->priv->time_start = timestamp;
renatofilho@91
   843
        }
renatofilho@91
   844
        nuv->priv->new_audio_segment = FALSE;
leo_sobral@80
   845
      }
renatofilho@91
   846
melunko@47
   847
      break;
melunko@47
   848
    }
melunko@47
   849
    case 'S':
melunko@218
   850
   {
renatofilho@170
   851
      switch (h.i_compression) {
melunko@47
   852
        case 'V':
renatofilho@170
   853
          GST_DEBUG_OBJECT (nuv, "sending new video segment: %d", h.i_timecode);
renatofilho@91
   854
          gst_pad_push_event (nuv->priv->src_video_pad,
renatofilho@170
   855
              gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, h.i_timecode * GST_MSECOND,
rosfran@73
   856
              		GST_CLOCK_TIME_NONE, 0));
melunko@47
   857
          break;
renatofilho@91
   858
        case 'A':
renatofilho@170
   859
          GST_DEBUG_OBJECT (nuv, "sending new audio segment: %d", h.i_timecode);
renatofilho@91
   860
          gst_pad_push_event (nuv->priv->src_audio_pad,
renatofilho@91
   861
              gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
rosfran@73
   862
              		GST_CLOCK_TIME_NONE, 0));
melunko@47
   863
          break;
melunko@47
   864
        default:
melunko@47
   865
          break;
melunko@47
   866
      }
renatofilho@91
   867
      goto done;
rosfran@56
   868
    }
rosfran@56
   869
    default:
melunko@47
   870
      break;
melunko@47
   871
  }
melunko@47
   872
renatofilho@91
   873
  if ((buf != NULL) && (pad != NULL)) {
renatofilho@91
   874
      /* update average time */
renatofilho@170
   875
      nuv->priv->streamer_offset += h.i_length;
renatofilho@91
   876
      gst_segment_set_last_stop (&nuv->priv->segment, GST_FORMAT_TIME, timestamp);
renatofilho@91
   877
      gst_nuv_demux_update_duration (nuv, timestamp);
renatofilho@91
   878
renatofilho@91
   879
      /* pushing the buffer */
renatofilho@91
   880
      gst_buffer_set_caps (buf, GST_PAD_CAPS (pad));
renatofilho@91
   881
      ret = gst_pad_push (pad, buf);
renatofilho@168
   882
      buf = NULL;
renatofilho@91
   883
renatofilho@91
   884
      if (ret != GST_FLOW_OK) {
renatofilho@136
   885
        GST_WARNING_OBJECT (nuv, "error: %d pushing on srcpad %s", ret, gst_pad_get_name (pad));
renatofilho@136
   886
renatofilho@91
   887
        if (pad == nuv->priv->src_video_pad) {
renatofilho@91
   888
            nuv->priv->last_video_return = ret;
renatofilho@91
   889
        }
renatofilho@91
   890
        else if (pad == nuv->priv->src_audio_pad) {
renatofilho@91
   891
            nuv->priv->last_audio_return = ret;
renatofilho@91
   892
        }
renatofilho@91
   893
renatofilho@91
   894
        /* verify anothers flow if is necessary stop task */
renatofilho@91
   895
        if (gst_nuv_combine_flow (nuv) != FALSE) {
renatofilho@425
   896
          ret = GST_FLOW_OK;
renatofilho@425
   897
        } else {
renatofilho@425
   898
	  GST_WARNING_OBJECT (nuv, "error: on push");
renatofilho@425
   899
	}
renatofilho@91
   900
renatofilho@91
   901
      }
renatofilho@168
   902
  } 
renatofilho@168
   903
renatofilho@168
   904
done:
renatofilho@168
   905
  if (buf != NULL) {
renatofilho@163
   906
      gst_buffer_unref (buf);
renatofilho@163
   907
      buf = NULL;
renatofilho@91
   908
  }
renatofilho@194
   909
  if (ret == GST_FLOW_OK) {
renatofilho@194
   910
     nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@194
   911
     memset (&nuv->priv->fh, 0, sizeof (nuv->priv->fh));
renatofilho@194
   912
  }
melunko@47
   913
  return ret;
melunko@47
   914
}
melunko@47
   915
melunko@47
   916
static GstFlowReturn
melunko@47
   917
gst_nuv_demux_stream_mpeg_data (GstNuvDemux * nuv)
melunko@47
   918
{
melunko@47
   919
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
   920
melunko@47
   921
  /* ffmpeg extra data */
renatofilho@91
   922
  ret = gst_nuv_demux_read_bytes (nuv, nuv->priv->mpeg_data_size, TRUE,
renatofilho@91
   923
      &nuv->priv->mpeg_buffer);
renatofilho@91
   924
  if ((ret != GST_FLOW_OK) || (nuv->priv->mpeg_buffer == NULL)) {
renatofilho@91
   925
    return ret;
melunko@47
   926
  }
renatofilho@91
   927
renatofilho@91
   928
  GST_BUFFER_SIZE (nuv->priv->mpeg_buffer) = nuv->priv->mpeg_data_size;
renatofilho@91
   929
  nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
melunko@47
   930
  return ret;
melunko@47
   931
}
melunko@47
   932
melunko@47
   933
static GstFlowReturn
melunko@47
   934
gst_nuv_demux_stream_extra_data (GstNuvDemux * nuv)
melunko@47
   935
{
melunko@47
   936
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
   937
melunko@47
   938
  /* Load 'D' */
renatofilho@170
   939
  nuv_frame_header h;
melunko@47
   940
melunko@47
   941
  ret = gst_nuv_demux_frame_header_load (nuv, &h);
melunko@47
   942
  if (ret != GST_FLOW_OK)
melunko@47
   943
    return ret;
melunko@47
   944
renatofilho@170
   945
  if (h.i_type != 'D') {
renatofilho@92
   946
    GST_WARNING_OBJECT (nuv, "Unsuported rtjpeg");
renatofilho@92
   947
    return GST_FLOW_NOT_SUPPORTED;
melunko@47
   948
  }
melunko@47
   949
renatofilho@170
   950
  if (h.i_length > 0) {
renatofilho@170
   951
    if (h.i_compression == 'F') {
renatofilho@91
   952
      nuv->priv->state = GST_NUV_DEMUX_MPEG_DATA;
melunko@47
   953
    } else {
renatofilho@92
   954
      GST_WARNING_OBJECT (nuv, "only file with extended chunk are supported");
renatofilho@92
   955
      return GST_FLOW_NOT_SUPPORTED;
melunko@47
   956
    }
melunko@47
   957
  } else {
renatofilho@91
   958
    nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
melunko@47
   959
  }
melunko@47
   960
melunko@47
   961
  return ret;
melunko@47
   962
}
melunko@47
   963
melunko@47
   964
static GstFlowReturn
melunko@47
   965
gst_nuv_demux_stream_extend_header_data (GstNuvDemux * nuv)
melunko@47
   966
{
melunko@47
   967
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
   968
renatofilho@91
   969
  ret = gst_nuv_demux_extended_header_load (nuv, &nuv->priv->eh);
melunko@47
   970
  if (ret != GST_FLOW_OK)
melunko@47
   971
    return ret;
melunko@47
   972
melunko@47
   973
  gst_nuv_demux_create_pads (nuv);
renatofilho@91
   974
  nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
melunko@47
   975
  return ret;
melunko@47
   976
}
melunko@47
   977
melunko@47
   978
static GstFlowReturn
melunko@47
   979
gst_nuv_demux_stream_extend_header (GstNuvDemux * nuv)
melunko@47
   980
{
melunko@47
   981
  GstBuffer *buf = NULL;
melunko@47
   982
  GstFlowReturn res = GST_FLOW_OK;
melunko@47
   983
melunko@47
   984
  res = gst_nuv_demux_read_bytes (nuv, 1, FALSE, &buf);
renatofilho@84
   985
  if ((res != GST_FLOW_OK) || (buf == NULL)) {
melunko@47
   986
    if (buf != NULL) {
melunko@47
   987
      gst_buffer_unref (buf);
melunko@47
   988
    }
melunko@47
   989
    return res;
melunko@47
   990
  }
melunko@47
   991
melunko@47
   992
  if (buf->data[0] == 'X') {
melunko@47
   993
    gst_buffer_unref (buf);
melunko@47
   994
    buf = NULL;
renatofilho@170
   995
    nuv_frame_header h;
melunko@47
   996
melunko@47
   997
    res = gst_nuv_demux_frame_header_load (nuv, &h);
melunko@47
   998
    if (res != GST_FLOW_OK)
melunko@47
   999
      return res;
melunko@47
  1000
renatofilho@170
  1001
    if (h.i_length != 512) {
melunko@47
  1002
      return GST_FLOW_ERROR;
melunko@47
  1003
    }
renatofilho@91
  1004
    nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER_DATA;
melunko@47
  1005
  } else {
renatofilho@91
  1006
    nuv->priv->state = GST_NUV_DEMUX_INVALID_DATA;
melunko@47
  1007
    g_object_unref (buf);
melunko@47
  1008
    GST_ELEMENT_WARNING (nuv, STREAM, FAILED,
melunko@47
  1009
        (_("incomplete NUV support")), ("incomplete NUV support"));
melunko@47
  1010
    return GST_FLOW_ERROR;
melunko@47
  1011
  }
melunko@47
  1012
  return res;
melunko@47
  1013
}
melunko@47
  1014
renatofilho@425
  1015
melunko@47
  1016
static GstFlowReturn
melunko@47
  1017
gst_nuv_demux_play (GstPad * pad)
melunko@47
  1018
{
melunko@47
  1019
  GstFlowReturn res = GST_FLOW_OK;
melunko@47
  1020
  GstNuvDemux *nuv = GST_NUV_DEMUX (GST_PAD_PARENT (pad));
melunko@47
  1021
renatofilho@91
  1022
  switch (nuv->priv->state) {
melunko@47
  1023
    case GST_NUV_DEMUX_START:
melunko@47
  1024
      res = gst_nuv_demux_stream_file_header (nuv);
melunko@47
  1025
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1026
        goto pause;
melunko@47
  1027
      }
renatofilho@136
  1028
      break;
melunko@47
  1029
melunko@47
  1030
    case GST_NUV_DEMUX_HEADER_DATA:
melunko@47
  1031
      res = gst_nuv_demux_stream_header_data (nuv);
melunko@47
  1032
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1033
        goto pause;
melunko@47
  1034
      }
renatofilho@136
  1035
      break;
melunko@47
  1036
melunko@47
  1037
    case GST_NUV_DEMUX_EXTRA_DATA:
melunko@47
  1038
      res = gst_nuv_demux_stream_extra_data (nuv);
melunko@47
  1039
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1040
        goto pause;
melunko@47
  1041
      }
renatofilho@136
  1042
      break;
melunko@47
  1043
melunko@47
  1044
    case GST_NUV_DEMUX_MPEG_DATA:
melunko@47
  1045
      res = gst_nuv_demux_stream_mpeg_data (nuv);
melunko@47
  1046
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1047
        goto pause;
melunko@47
  1048
      }
renatofilho@136
  1049
      break;
melunko@47
  1050
melunko@47
  1051
    case GST_NUV_DEMUX_EXTEND_HEADER:
melunko@47
  1052
      res = gst_nuv_demux_stream_extend_header (nuv);
melunko@47
  1053
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1054
        goto pause;
melunko@47
  1055
      }
renatofilho@136
  1056
      break;
melunko@47
  1057
melunko@47
  1058
    case GST_NUV_DEMUX_EXTEND_HEADER_DATA:
melunko@47
  1059
      res = gst_nuv_demux_stream_extend_header_data (nuv);
melunko@47
  1060
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1061
        goto pause;
melunko@47
  1062
      }
renatofilho@136
  1063
      break;
melunko@47
  1064
melunko@47
  1065
    case GST_NUV_DEMUX_FRAME_HEADER:
melunko@47
  1066
      res = gst_nuv_demux_read_head_frame (nuv);
melunko@47
  1067
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1068
        goto pause;
melunko@47
  1069
      }
renatofilho@136
  1070
      break;
melunko@47
  1071
renatofilho@425
  1072
    case GST_NUV_DEMUX_MOVI: 
melunko@47
  1073
      res = gst_nuv_demux_stream_data (nuv);
renatofilho@77
  1074
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1075
        goto pause;
melunko@47
  1076
      }
melunko@47
  1077
      break;
renatofilho@136
  1078
melunko@47
  1079
    case GST_NUV_DEMUX_INVALID_DATA:
melunko@47
  1080
      goto pause;
melunko@47
  1081
      break;
melunko@47
  1082
    default:
melunko@47
  1083
      g_assert_not_reached ();
melunko@47
  1084
  }
melunko@47
  1085
melunko@47
  1086
  return GST_FLOW_OK;
melunko@47
  1087
melunko@47
  1088
pause:
melunko@47
  1089
  GST_LOG_OBJECT (nuv, "pausing task, reason %s", gst_flow_get_name (res));
renatofilho@91
  1090
  gst_pad_pause_task (nuv->priv->sinkpad);
melunko@47
  1091
  if (GST_FLOW_IS_FATAL (res)) {
melunko@47
  1092
    GST_ELEMENT_ERROR (nuv, STREAM, FAILED,
melunko@47
  1093
        (_("Internal data stream error.")),
melunko@47
  1094
        ("streaming stopped, reason %s", gst_flow_get_name (res)));
melunko@47
  1095
melunko@47
  1096
    gst_nuv_demux_send_eos (nuv);
melunko@47
  1097
  }
melunko@47
  1098
  return res;
melunko@47
  1099
}
melunko@47
  1100
melunko@47
  1101
static void
melunko@47
  1102
gst_nuv_demux_send_eos (GstNuvDemux * nuv)
melunko@47
  1103
{
melunko@47
  1104
  gst_element_post_message (GST_ELEMENT (nuv),
melunko@47
  1105
      gst_message_new_segment_done (GST_OBJECT (nuv), GST_FORMAT_TIME, -1));
melunko@47
  1106
renatofilho@91
  1107
  if (nuv->priv->src_video_pad)
renatofilho@91
  1108
    gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_eos ());
renatofilho@91
  1109
  if (nuv->priv->src_audio_pad)
renatofilho@91
  1110
    gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_eos ());
melunko@47
  1111
}
renatofilho@91
  1112
melunko@47
  1113
static GstFlowReturn
melunko@47
  1114
gst_nuv_demux_read_bytes (GstNuvDemux * nuv, guint64 size, gboolean move,
melunko@47
  1115
    GstBuffer ** buffer)
melunko@47
  1116
{
melunko@47
  1117
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
  1118
melunko@47
  1119
  if (size == 0) {
melunko@47
  1120
    return ret;
melunko@47
  1121
  }
renatofilho@91
  1122
renatofilho@91
  1123
  if (nuv->priv->mode == NUV_PULL_MODE) {
renatofilho@91
  1124
    ret = gst_pad_pull_range (nuv->priv->sinkpad, nuv->priv->offset, size, buffer);
melunko@47
  1125
    if (ret == GST_FLOW_OK) {
renatofilho@77
  1126
        if (move) {
renatofilho@91
  1127
		    nuv->priv->offset += size;
renatofilho@77
  1128
		}
melunko@47
  1129
      /* got eos */
melunko@47
  1130
    } else if (ret == GST_FLOW_UNEXPECTED) {
renatofilho@77
  1131
      if (buffer != NULL)
renatofilho@77
  1132
          gst_buffer_unref (buffer);
renatofilho@91
  1133
melunko@47
  1134
      gst_nuv_demux_send_eos (nuv);
melunko@47
  1135
      return GST_FLOW_WRONG_STATE;
melunko@47
  1136
    }
melunko@47
  1137
  } else {
renatofilho@194
  1138
    if (gst_adapter_available (nuv->priv->adapter) < size) {
renatofilho@194
  1139
      nuv->priv->more_data = TRUE;
melunko@47
  1140
      return GST_FLOW_ERROR_NO_DATA;
renatofilho@194
  1141
    }
melunko@47
  1142
    if (move) {
renatofilho@181
  1143
      *buffer = gst_adapter_take_buffer (nuv->priv->adapter, size);
melunko@47
  1144
    } else {
renatofilho@156
  1145
      guint8 *data = NULL;
renatofilho@156
  1146
      data = (guint8 *) gst_adapter_peek (nuv->priv->adapter, size);
renatofilho@156
  1147
      *buffer = gst_buffer_new ();
renatofilho@165
  1148
      gst_buffer_set_data (*buffer, data, size);
melunko@47
  1149
    }
melunko@47
  1150
  }
melunko@47
  1151
  return ret;
melunko@47
  1152
}
melunko@47
  1153
melunko@47
  1154
static gboolean
melunko@47
  1155
gst_nuv_demux_sink_activate (GstPad * sinkpad)
melunko@47
  1156
{
melunko@47
  1157
  gboolean res = TRUE;
melunko@47
  1158
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
renatofilho@422
  1159
 
renatofilho@422
  1160
  g_debug ("SINK ACTIVATE");
melunko@47
  1161
melunko@47
  1162
  if (gst_pad_check_pull_range (sinkpad)) {
renatofilho@422
  1163
    g_debug ("PULL");
renatofilho@422
  1164
    gst_adapter_clear (nuv->priv->adapter);
melunko@47
  1165
    res = gst_pad_activate_pull (sinkpad, TRUE);
melunko@47
  1166
  } else {
renatofilho@422
  1167
    g_debug ("PUSH");
renatofilho@422
  1168
    gst_adapter_clear (nuv->priv->adapter);
melunko@47
  1169
    res = gst_pad_activate_push (sinkpad, TRUE);
melunko@47
  1170
  }
renatofilho@173
  1171
  
melunko@47
  1172
  g_object_unref (nuv);
melunko@47
  1173
  return res;
melunko@47
  1174
}
melunko@47
  1175
melunko@47
  1176
static gboolean
melunko@47
  1177
gst_nuv_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
melunko@47
  1178
{
melunko@47
  1179
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
melunko@47
  1180
melunko@47
  1181
  if (active) {
renatofilho@85
  1182
    GST_DEBUG_OBJECT (nuv, "activating pull function");
renatofilho@91
  1183
    nuv->priv->mode = NUV_PULL_MODE;
renatofilho@422
  1184
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@422
  1185
melunko@47
  1186
    gst_pad_start_task (sinkpad, (GstTaskFunction) gst_nuv_demux_loop, sinkpad);
melunko@47
  1187
  } else {
renatofilho@85
  1188
    GST_DEBUG_OBJECT (nuv, "deactivating pull function");
renatofilho@422
  1189
    g_debug ("STOP TASK");
melunko@47
  1190
    gst_pad_stop_task (sinkpad);
melunko@47
  1191
  }
melunko@47
  1192
  gst_object_unref (nuv);
melunko@47
  1193
melunko@47
  1194
  return TRUE;
melunko@47
  1195
}
melunko@47
  1196
renatofilho@77
  1197
static gboolean
renatofilho@77
  1198
gst_nuv_demux_sink_activate_push (GstPad * pad, gboolean active)
renatofilho@77
  1199
{
renatofilho@77
  1200
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@77
  1201
renatofilho@422
  1202
  if (active) {
renatofilho@422
  1203
    nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@422
  1204
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@133
  1205
renatofilho@77
  1206
    GST_DEBUG_OBJECT (nuv, "activating push/chain function");
renatofilho@77
  1207
  } else {
renatofilho@77
  1208
    GST_DEBUG_OBJECT (nuv, "deactivating push/chain function");
renatofilho@77
  1209
  }
renatofilho@77
  1210
renatofilho@77
  1211
  gst_object_unref (nuv);
renatofilho@77
  1212
renatofilho@77
  1213
  return TRUE;
renatofilho@77
  1214
}
renatofilho@77
  1215
renatofilho@425
  1216
static gboolean
renatofilho@425
  1217
gst_nuv_demux_do_seek (GstNuvDemux *nuv, GstEvent * event)
renatofilho@425
  1218
{
renatofilho@425
  1219
  gdouble rate;
renatofilho@425
  1220
  GstFormat format;
renatofilho@425
  1221
  GstSeekFlags flags;
renatofilho@425
  1222
  GstSeekType cur_type;
renatofilho@425
  1223
  gint64 cur;
renatofilho@425
  1224
  GstSeekType stop_type;
renatofilho@425
  1225
  gint64 stop;
renatofilho@425
  1226
  gboolean flush;
renatofilho@425
  1227
renatofilho@425
  1228
  g_debug ("DEMUX SEEK");
renatofilho@425
  1229
  gst_event_parse_seek (event, &rate, &format, &flags,
renatofilho@425
  1230
      &cur_type, &cur, &stop_type, &stop);
renatofilho@425
  1231
renatofilho@425
  1232
  if (format == GST_FORMAT_BYTES &&
renatofilho@425
  1233
          nuv->priv->state > GST_NUV_DEMUX_EXTEND_HEADER_DATA &&
renatofilho@425
  1234
          gst_pad_is_linked (nuv->priv->sinkpad)) {
renatofilho@425
  1235
renatofilho@425
  1236
    flush = flags & GST_SEEK_FLAG_FLUSH;
renatofilho@425
  1237
    if (flush) {
renatofilho@425
  1238
      gst_pad_push_event (nuv->priv->sinkpad, gst_event_new_flush_start ());
renatofilho@425
  1239
renatofilho@425
  1240
      if (nuv->priv->src_video_pad != NULL) {
renatofilho@425
  1241
        gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_flush_start ());
renatofilho@425
  1242
      }
renatofilho@425
  1243
renatofilho@425
  1244
      if (nuv->priv->src_audio_pad != NULL) {
renatofilho@425
  1245
        gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_flush_start ());
renatofilho@425
  1246
      }
renatofilho@425
  1247
    }
renatofilho@425
  1248
    else {
renatofilho@425
  1249
	gst_pad_pause_task (nuv->priv->sinkpad);
renatofilho@425
  1250
    }
renatofilho@425
  1251
renatofilho@425
  1252
    GST_PAD_STREAM_LOCK (nuv->priv->sinkpad);
renatofilho@425
  1253
renatofilho@425
  1254
    g_debug ("offset %ld, cur %ld", nuv->priv->offset, cur);
renatofilho@425
  1255
renatofilho@425
  1256
    nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@425
  1257
renatofilho@425
  1258
    if (flush) {
renatofilho@425
  1259
      gst_pad_push_event (nuv->priv->sinkpad, gst_event_new_flush_stop ());
renatofilho@425
  1260
renatofilho@425
  1261
      if (nuv->priv->src_video_pad != NULL) {
renatofilho@425
  1262
        gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_flush_stop ());
renatofilho@425
  1263
      }
renatofilho@425
  1264
renatofilho@425
  1265
      if (nuv->priv->src_audio_pad != NULL) {
renatofilho@425
  1266
        gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_flush_stop ());
renatofilho@425
  1267
      }
renatofilho@425
  1268
    }
renatofilho@425
  1269
renatofilho@425
  1270
    g_debug ("STARTING TASK AGAIN");
renatofilho@425
  1271
    gst_pad_start_task (nuv->priv->sinkpad, (GstTaskFunction) gst_nuv_demux_loop,
renatofilho@425
  1272
        nuv->priv->sinkpad);
renatofilho@425
  1273
renatofilho@425
  1274
    GST_PAD_STREAM_UNLOCK (nuv->priv->sinkpad);
renatofilho@425
  1275
    return TRUE;
renatofilho@425
  1276
  }
renatofilho@425
  1277
  return FALSE;
renatofilho@425
  1278
}
renatofilho@425
  1279
renatofilho@425
  1280
static gboolean
renatofilho@425
  1281
gst_nuv_demux_srcpad_event (GstPad * pad, GstEvent * event)
renatofilho@425
  1282
{
renatofilho@425
  1283
  gboolean res = FALSE;
renatofilho@425
  1284
  GstNuvDemux *nuv;
renatofilho@425
  1285
renatofilho@425
  1286
  nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@425
  1287
  
renatofilho@425
  1288
  switch (GST_EVENT_TYPE (event)) {
renatofilho@425
  1289
    case GST_EVENT_SEEK:
renatofilho@425
  1290
      res = gst_nuv_demux_do_seek (nuv, event);
renatofilho@425
  1291
      break;
renatofilho@425
  1292
    default:
renatofilho@425
  1293
      res = FALSE;
renatofilho@425
  1294
      break;
renatofilho@425
  1295
  }
renatofilho@425
  1296
  return res;
renatofilho@425
  1297
}
renatofilho@91
  1298
renatofilho@91
  1299
static gboolean
renatofilho@91
  1300
gst_nuv_demux_sink_event (GstPad *pad, GstEvent *event)
renatofilho@91
  1301
{
renatofilho@318
  1302
  gboolean res = FALSE;
renatofilho@91
  1303
  GstNuvDemux *nuv;
renatofilho@91
  1304
renatofilho@91
  1305
  nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@91
  1306
renatofilho@91
  1307
  switch (GST_EVENT_TYPE (event)) {
renatofilho@91
  1308
    case GST_EVENT_SEEK:
renatofilho@91
  1309
    {
renatofilho@91
  1310
      gdouble rate;
renatofilho@91
  1311
      GstFormat format;
renatofilho@91
  1312
      GstSeekFlags flags;
renatofilho@91
  1313
      GstSeekType cur_type;
renatofilho@91
  1314
      gint64 cur;
renatofilho@91
  1315
      GstSeekType stop_type;
renatofilho@91
  1316
      gint64 stop;
renatofilho@91
  1317
renatofilho@91
  1318
      gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &cur, &stop_type, &stop);
renatofilho@91
  1319
      GST_DEBUG_OBJECT (nuv, "got seek, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, cur, stop);
renatofilho@422
  1320
      g_debug ("got seek, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, cur, stop);
renatofilho@425
  1321
      res = gst_pad_event_default (pad, event);
renatofilho@91
  1322
      break;
renatofilho@91
  1323
    }
renatofilho@91
  1324
    case GST_EVENT_NEWSEGMENT:
renatofilho@91
  1325
    {
renatofilho@91
  1326
      gint64 start, stop, time;
renatofilho@318
  1327
      gdouble rate;
renatofilho@91
  1328
      GstFormat format;
renatofilho@91
  1329
      gboolean update;
renatofilho@91
  1330
renatofilho@167
  1331
      gst_event_parse_new_segment (event, &update, &rate, &format, &start, &stop, &time);
renatofilho@91
  1332
      GST_DEBUG_OBJECT (nuv, "got newsegment, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, start, stop);
renatofilho@422
  1333
      g_debug ("got newsegment, start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT, start, stop);
renatofilho@425
  1334
      //nuv->priv->duration_bytes = stop - start;
renatofilho@425
  1335
      res = gst_pad_event_default (pad, event);
renatofilho@91
  1336
      break;
renatofilho@91
  1337
    }
renatofilho@91
  1338
    case GST_EVENT_EOS:
renatofilho@91
  1339
    default:
renatofilho@91
  1340
      res = gst_pad_event_default (pad, event);
renatofilho@91
  1341
      break;
renatofilho@91
  1342
  }
renatofilho@91
  1343
renatofilho@91
  1344
  gst_object_unref (nuv);
renatofilho@91
  1345
  return res;
renatofilho@91
  1346
}
renatofilho@91
  1347
melunko@47
  1348
static GstFlowReturn
melunko@47
  1349
gst_nuv_demux_chain (GstPad * pad, GstBuffer * buf)
melunko@47
  1350
{
renatofilho@194
  1351
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@422
  1352
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@422
  1353
  
renatofilho@422
  1354
  if (nuv->priv->mode != NUV_PUSH_MODE)
renatofilho@422
  1355
    return ret;
renatofilho@194
  1356
renatofilho@422
  1357
  g_debug ("CHAIN ADP %p", nuv->priv->adapter);
melunko@47
  1358
renatofilho@194
  1359
  gst_adapter_push (nuv->priv->adapter, buf);  
rosfran@193
  1360
  
renatofilho@194
  1361
  while ((ret == GST_FLOW_OK) && (nuv->priv->more_data == FALSE)) {
renatofilho@194
  1362
      ret = gst_nuv_demux_play (pad);
rosfran@193
  1363
  }
renatofilho@194
  1364
renatofilho@194
  1365
  nuv->priv->more_data = FALSE;
renatofilho@194
  1366
  gst_object_unref (nuv);
renatofilho@422
  1367
renatofilho@422
  1368
  g_debug ("CHAIN END");
rosfran@193
  1369
  
renatofilho@194
  1370
  return ret;
melunko@47
  1371
}
melunko@47
  1372
melunko@47
  1373
static void
melunko@47
  1374
gst_nuv_demux_loop (GstPad * pad)
melunko@47
  1375
{
melunko@47
  1376
  gst_nuv_demux_play (pad);
melunko@47
  1377
}
melunko@47
  1378
melunko@47
  1379
static void
melunko@47
  1380
gst_nuv_demux_reset (GstNuvDemux * nuv)
melunko@47
  1381
{
renatofilho@194
  1382
  nuv->priv->more_data = FALSE;
renatofilho@91
  1383
  nuv->priv->state = GST_NUV_DEMUX_START;
renatofilho@422
  1384
  nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@91
  1385
  nuv->priv->offset = 0;
renatofilho@91
  1386
  nuv->priv->streamer_offset = 0;
renatofilho@91
  1387
  nuv->priv->time_start = 0;
renatofilho@91
  1388
  nuv->priv->time_qos = GST_CLOCK_TIME_NONE;
renatofilho@91
  1389
  nuv->priv->duration_bytes = GST_CLOCK_TIME_NONE;
renatofilho@91
  1390
  nuv->priv->duration_time = GST_CLOCK_TIME_NONE;
renatofilho@91
  1391
  nuv->priv->duration_average = GST_CLOCK_TIME_NONE;
renatofilho@91
  1392
  gst_segment_init (&nuv->priv->segment, GST_FORMAT_TIME);
melunko@47
  1393
renatofilho@422
  1394
  gst_adapter_clear (nuv->priv->adapter);
melunko@47
  1395
renatofilho@91
  1396
  if (nuv->priv->mpeg_buffer != NULL) {
renatofilho@91
  1397
    gst_buffer_unref (nuv->priv->mpeg_buffer);
renatofilho@91
  1398
    nuv->priv->mpeg_buffer = NULL;
melunko@47
  1399
  }
melunko@47
  1400
}
melunko@47
  1401
melunko@47
  1402
static void
melunko@47
  1403
gst_nuv_demux_destoy_src_pad (GstNuvDemux * nuv)
melunko@47
  1404
{
renatofilho@91
  1405
  if (nuv->priv->src_video_pad) {
renatofilho@91
  1406
    gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_video_pad);
renatofilho@91
  1407
    nuv->priv->src_video_pad = NULL;
melunko@47
  1408
  }
melunko@47
  1409
renatofilho@91
  1410
  if (nuv->priv->src_audio_pad) {
renatofilho@91
  1411
    gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_audio_pad);
renatofilho@91
  1412
    nuv->priv->src_audio_pad = NULL;
melunko@47
  1413
  }
melunko@47
  1414
}
melunko@47
  1415
melunko@47
  1416
static GstStateChangeReturn
melunko@47
  1417
gst_nuv_demux_change_state (GstElement * element, GstStateChange transition)
melunko@47
  1418
{
rosfran@62
  1419
  GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
rosfran@73
  1420
melunko@47
  1421
  switch (transition) {
renatofilho@136
  1422
    case GST_STATE_CHANGE_NULL_TO_READY:
renatofilho@422
  1423
	g_debug ("NULL_TO_READY");
renatofilho@91
  1424
      gst_nuv_demux_reset (GST_NUV_DEMUX (element));
renatofilho@133
  1425
      gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
melunko@47
  1426
      break;
melunko@47
  1427
    default:
melunko@47
  1428
      break;
melunko@47
  1429
  }
melunko@47
  1430
melunko@47
  1431
  ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
renatofilho@136
  1432
  if (ret == GST_STATE_CHANGE_FAILURE) {
melunko@47
  1433
    goto done;
renatofilho@136
  1434
  }
melunko@47
  1435
melunko@47
  1436
  switch (transition) {
renatofilho@425
  1437
    case GST_STATE_CHANGE_PAUSED_TO_READY:
renatofilho@425
  1438
    //case GST_STATE_CHANGE_READY_TO_NULL:
renatofilho@425
  1439
      g_debug ("PAUSED_TO_READY");
renatofilho@91
  1440
      gst_nuv_demux_reset (GST_NUV_DEMUX (element));
renatofilho@66
  1441
      gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
melunko@47
  1442
      break;
melunko@47
  1443
    default:
melunko@47
  1444
      break;
melunko@47
  1445
  }
melunko@47
  1446
melunko@47
  1447
done:
melunko@47
  1448
  return ret;
melunko@47
  1449
}
melunko@47
  1450
renatofilho@91
  1451
static void
renatofilho@91
  1452
gst_nuv_demux_update_duration (GstNuvDemux *nuv, guint64 current_timestamp)
renatofilho@91
  1453
{
renatofilho@91
  1454
    guint64 interval = 0;
renatofilho@91
  1455
renatofilho@91
  1456
    if (gst_nuv_demux_get_time_duration (nuv) != GST_CLOCK_TIME_NONE)
renatofilho@91
  1457
        return;
renatofilho@91
  1458
renatofilho@91
  1459
    interval  = current_timestamp - nuv->priv->last_update;
renatofilho@91
  1460
renatofilho@91
  1461
    if (interval > (10 * GST_SECOND)) {
renatofilho@156
  1462
        GstMessage* msg = NULL;
renatofilho@91
  1463
        gint64 average = 0;
renatofilho@91
  1464
        gint64 duration_bytes = gst_nuv_demux_get_bytes_duration (nuv);
renatofilho@91
  1465
renatofilho@194
  1466
        if (duration_bytes == GST_CLOCK_TIME_NONE) {
renatofilho@91
  1467
            return;
renatofilho@194
  1468
        }
renatofilho@91
  1469
renatofilho@168
  1470
        interval = gst_util_uint64_scale (1, current_timestamp - nuv->priv->time_start, GST_SECOND);
renatofilho@168
  1471
        if (interval > 0) {
renatofilho@168
  1472
            average = gst_util_uint64_scale (1 , nuv->priv->streamer_offset, interval);
renatofilho@136
  1473
        }
renatofilho@168
  1474
        if (average > 0) {
renatofilho@168
  1475
            nuv->priv->duration_average = gst_util_uint64_scale (GST_SECOND, duration_bytes, average);
renatofilho@168
  1476
        }
renatofilho@168
  1477
        
renatofilho@168
  1478
        nuv->priv->last_update = current_timestamp;
renatofilho@168
  1479
        msg = gst_message_new_duration (GST_OBJECT (nuv), GST_FORMAT_TIME, nuv->priv->duration_average);
renatofilho@168
  1480
        gst_element_post_message (GST_ELEMENT (nuv), msg);
renatofilho@168
  1481
        GST_DEBUG_OBJECT (nuv, "New Duration Average %"G_GUINT64_FORMAT, nuv->priv->duration_average);
renatofilho@209
  1482
        g_debug ("New Duration Average %"G_GUINT64_FORMAT, nuv->priv->duration_average);
renatofilho@91
  1483
    }
renatofilho@91
  1484
}
renatofilho@91
  1485
renatofilho@91
  1486
static gint64
renatofilho@91
  1487
gst_nuv_demux_get_bytes_duration (GstNuvDemux *nuv)
renatofilho@91
  1488
{
renatofilho@91
  1489
    if (nuv->priv->duration_bytes == GST_CLOCK_TIME_NONE) {
renatofilho@156
  1490
        GstPad *peer = gst_pad_get_peer (nuv->priv->sinkpad);
renatofilho@156
  1491
        GstQuery *query = gst_query_new_duration (GST_FORMAT_BYTES);
renatofilho@156
  1492
        if (gst_pad_query (peer, query)) {
renatofilho@156
  1493
            gint64 duration;
renatofilho@156
  1494
renatofilho@156
  1495
            gst_query_parse_duration (query, NULL, &duration);
renatofilho@91
  1496
            nuv->priv->duration_bytes = duration;
renatofilho@91
  1497
        }
renatofilho@156
  1498
        gst_object_unref (peer);
renatofilho@156
  1499
        gst_query_unref (query);
renatofilho@91
  1500
    }
renatofilho@91
  1501
    return nuv->priv->duration_bytes;
renatofilho@91
  1502
}
renatofilho@91
  1503
renatofilho@91
  1504
static gint64
renatofilho@91
  1505
gst_nuv_demux_get_time_duration (GstNuvDemux *nuv)
renatofilho@91
  1506
{
renatofilho@91
  1507
    if (nuv->priv->duration_time == GST_CLOCK_TIME_NONE) {
renatofilho@156
  1508
        GstPad *peer = gst_pad_get_peer (nuv->priv->sinkpad);
renatofilho@156
  1509
        GstQuery *query = gst_query_new_duration (GST_FORMAT_TIME);
renatofilho@156
  1510
        if (gst_pad_query (peer, query)) {
renatofilho@156
  1511
            gint64 duration;
renatofilho@156
  1512
            gst_query_parse_duration (query, NULL, &duration);
renatofilho@91
  1513
            nuv->priv->duration_time = duration;
renatofilho@91
  1514
        }
renatofilho@156
  1515
        gst_object_unref (peer);
renatofilho@156
  1516
        gst_query_unref (query);
renatofilho@91
  1517
    }
renatofilho@91
  1518
    return nuv->priv->duration_time;
renatofilho@91
  1519
}
renatofilho@91
  1520
renatofilho@181
  1521
#if (GST_VERSION_MINOR == 10) && (GST_VERSION_MICRO < 6) 
renatofilho@173
  1522
GstBuffer *
renatofilho@181
  1523
gst_adapter_take_buffer (GstAdapter * adapter, guint nbytes)
renatofilho@173
  1524
{
renatofilho@173
  1525
  GstBuffer *buffer;
renatofilho@173
  1526
  GstBuffer *cur;
renatofilho@173
  1527
  guint8 *data;
renatofilho@173
  1528
renatofilho@173
  1529
  g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
renatofilho@173
  1530
  g_return_val_if_fail (nbytes > 0, NULL);
renatofilho@173
  1531
renatofilho@173
  1532
  GST_LOG_OBJECT (adapter, "taking buffer of %u bytes", nbytes);
renatofilho@173
  1533
renatofilho@173
  1534
  /* we don't have enough data, return NULL. This is unlikely
renatofilho@173
  1535
   * as one usually does an _available() first instead of peeking a
renatofilho@173
  1536
   * random size. */
renatofilho@173
  1537
  if (G_UNLIKELY (nbytes > adapter->size))
renatofilho@173
  1538
    return NULL;
renatofilho@173
  1539
renatofilho@173
  1540
  /* our head buffer has enough data left, return it */
renatofilho@173
  1541
  cur = adapter->buflist->data;
renatofilho@173
  1542
  if (GST_BUFFER_SIZE (cur) >= nbytes + adapter->skip) {
renatofilho@173
  1543
    GST_LOG_OBJECT (adapter, "providing buffer of %d bytes via sub-buffer",
renatofilho@173
  1544
        nbytes);
renatofilho@173
  1545
    buffer = gst_buffer_create_sub (cur, adapter->skip, nbytes);
renatofilho@173
  1546
renatofilho@173
  1547
    gst_adapter_flush (adapter, nbytes);
renatofilho@173
  1548
renatofilho@173
  1549
    return buffer;
renatofilho@173
  1550
  }
renatofilho@173
  1551
renatofilho@173
  1552
  data = gst_adapter_take (adapter, nbytes);
renatofilho@173
  1553
  if (data == NULL)
renatofilho@173
  1554
    return NULL;
renatofilho@173
  1555
renatofilho@173
  1556
  buffer = gst_buffer_new ();
renatofilho@173
  1557
  GST_BUFFER_DATA (buffer) = data;
renatofilho@173
  1558
  GST_BUFFER_MALLOCDATA (buffer) = data;
renatofilho@173
  1559
  GST_BUFFER_SIZE (buffer) = nbytes;
renatofilho@173
  1560
renatofilho@173
  1561
  return buffer;
renatofilho@173
  1562
}
renatofilho@181
  1563
#endif
renatofilho@173
  1564
renatofilho@91
  1565
melunko@47
  1566
static gboolean
melunko@47
  1567
plugin_init (GstPlugin * plugin)
melunko@47
  1568
{
melunko@47
  1569
#ifdef ENABLE_NLS
melunko@47
  1570
  setlocale (LC_ALL, "");
rosfran@73
  1571
  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
melunko@47
  1572
#endif /* ENABLE_NLS */
melunko@47
  1573
melunko@47
  1574
  if (!gst_element_register (plugin, "nuvdemux", GST_RANK_SECONDARY,
melunko@47
  1575
          GST_TYPE_NUV_DEMUX)) {
melunko@47
  1576
    return FALSE;
melunko@47
  1577
  }
melunko@47
  1578
  return TRUE;
melunko@47
  1579
}
melunko@47
  1580
melunko@47
  1581
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
melunko@47
  1582
    GST_VERSION_MINOR,
melunko@47
  1583
    "nuvdemux",
melunko@47
  1584
    "Demuxes and muxes audio and video",
renatofilho@163
  1585
     plugin_init, VERSION, "LGPL", "NuvDemux", "")
renatofilho@163
  1586