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