gst-plugins-nuvdemux/nuvdemux/gstnuvdemux.c
author renatofilho
Wed Apr 04 21:36:07 2007 +0100 (2007-04-04)
branchtrunk
changeset 500 f92a59c9a9a5
parent 476 f9330272e09d
child 508 224adf6cd007
permissions -rw-r--r--
[svn r505] fixed gmyth_file_transfer class
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@430
   232
  gint64            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_debug ("Type %d   =  Compression %d", h->i_type, h->i_compression);
renatofilho@425
   702
  //g_usleep (1 * G_USEC_PER_SEC );
renatofilho@425
   703
  switch  (h->i_type) {
renatofilho@425
   704
/*
renatofilho@425
   705
    case 'V':
renatofilho@425
   706
      if (h->i_compression == 0 ||
renatofilho@425
   707
          h->i_compression == 1 ||
renatofilho@425
   708
          h->i_compression == 2 ||
renatofilho@425
   709
          h->i_compression == 'N' ||
renatofilho@425
   710
          h->i_compression == 'L') {
renatofilho@425
   711
         valid = TRUE;
renatofilho@425
   712
      }
renatofilho@425
   713
      break;
renatofilho@425
   714
    case 'A':
renatofilho@425
   715
      if (h->i_compression == 0 ||
renatofilho@425
   716
          h->i_compression == 1 ||
renatofilho@425
   717
          h->i_compression == 2 ||
renatofilho@425
   718
          h->i_compression == 3 ||
renatofilho@425
   719
          h->i_compression == 'F' ||
renatofilho@425
   720
          h->i_compression == 'S' ||
renatofilho@425
   721
          h->i_compression == 'N' ||
renatofilho@425
   722
          h->i_compression == 'L') {
renatofilho@425
   723
         valid = TRUE;
renatofilho@425
   724
      }
renatofilho@425
   725
      break;
renatofilho@425
   726
    case 'S':
renatofilho@425
   727
      if (h->i_compression == 'B' ||
renatofilho@425
   728
          h->i_compression == 'A' ||
renatofilho@425
   729
          h->i_compression == 'V' ||
renatofilho@425
   730
          h->i_compression == 'S') {
renatofilho@425
   731
         valid = TRUE;
renatofilho@425
   732
      }
renatofilho@425
   733
      break;
renatofilho@425
   734
*/
renatofilho@425
   735
    case 'A':
renatofilho@425
   736
    case 'V':
renatofilho@425
   737
    case 'S':
renatofilho@425
   738
    case 'R':
renatofilho@425
   739
    case 'D':
renatofilho@430
   740
    case 'Q':
renatofilho@425
   741
      valid  = TRUE;
renatofilho@425
   742
      break;
renatofilho@425
   743
    default:
renatofilho@425
   744
      valid = FALSE;
renatofilho@425
   745
  }
renatofilho@425
   746
renatofilho@425
   747
  return valid;
renatofilho@425
   748
}
renatofilho@425
   749
melunko@47
   750
static GstFlowReturn
melunko@47
   751
gst_nuv_demux_read_head_frame (GstNuvDemux * nuv)
melunko@47
   752
{
melunko@47
   753
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@425
   754
  gboolean valid = FALSE;
melunko@47
   755
renatofilho@425
   756
  do {
renatofilho@425
   757
    ret = gst_nuv_demux_frame_header_load (nuv, &nuv->priv->fh);
renatofilho@425
   758
    if (ret != GST_FLOW_OK) {
renatofilho@425
   759
      return ret;
renatofilho@425
   760
    }
renatofilho@425
   761
renatofilho@425
   762
    if (gst_nuv_demux_validate_header (&nuv->priv->fh) == TRUE)
renatofilho@432
   763
      valid = TRUE;
renatofilho@425
   764
renatofilho@425
   765
  } while (valid == FALSE);
renatofilho@425
   766
renatofilho@91
   767
  nuv->priv->state = GST_NUV_DEMUX_MOVI;
melunko@47
   768
  return ret;
melunko@47
   769
}
melunko@47
   770
renatofilho@88
   771
static gboolean
renatofilho@88
   772
gst_nuv_combine_flow (GstNuvDemux *nuv)
renatofilho@88
   773
{
renatofilho@91
   774
    GstFlowReturn ret_video = nuv->priv->last_video_return;
renatofilho@91
   775
    GstFlowReturn ret_audio = nuv->priv->last_audio_return;
renatofilho@88
   776
renatofilho@88
   777
    if ((ret_video != GST_FLOW_OK) &&
renatofilho@88
   778
        (ret_audio != GST_FLOW_OK))
renatofilho@88
   779
        return FALSE;
renatofilho@88
   780
renatofilho@91
   781
    if (GST_FLOW_IS_FATAL (ret_video))
renatofilho@88
   782
        return FALSE;
renatofilho@88
   783
renatofilho@91
   784
    if (GST_FLOW_IS_FATAL (ret_audio))
renatofilho@88
   785
        return FALSE;
renatofilho@88
   786
renatofilho@91
   787
    return TRUE;
renatofilho@88
   788
}
renatofilho@88
   789
melunko@47
   790
static GstFlowReturn
melunko@47
   791
gst_nuv_demux_stream_data (GstNuvDemux * nuv)
melunko@47
   792
{
melunko@47
   793
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@91
   794
  GstPad *pad = NULL;
renatofilho@91
   795
  guint64 timestamp;
melunko@47
   796
  GstBuffer *buf = NULL;
renatofilho@170
   797
  nuv_frame_header h;
renatofilho@91
   798
renatofilho@91
   799
  h = nuv->priv->fh;
melunko@47
   800
renatofilho@477
   801
  if (h.i_type == 'R') {
renatofilho@477
   802
    nuv->priv->offset += h.i_length;
melunko@47
   803
    goto done;
renatofilho@477
   804
  }
renatofilho@91
   805
renatofilho@170
   806
  if (h.i_length > 0) {
renatofilho@425
   807
    ret = gst_nuv_demux_read_bytes (nuv, h.i_length, TRUE, &buf);
renatofilho@425
   808
    if ((ret != GST_FLOW_OK) || (buf == NULL)) {
renatofilho@425
   809
      goto done;
renatofilho@425
   810
    }
rosfran@57
   811
renatofilho@425
   812
    if ((h.i_timecode < 0)) {
renatofilho@425
   813
      h.i_timecode = 0;
renatofilho@425
   814
      //goto done;
renatofilho@425
   815
    }
renatofilho@91
   816
renatofilho@425
   817
    timestamp = h.i_timecode * GST_MSECOND;
renatofilho@425
   818
    GST_BUFFER_TIMESTAMP (buf) = timestamp;
renatofilho@77
   819
  }
renatofilho@91
   820
  else {
renatofilho@91
   821
    goto done;
renatofilho@91
   822
  }
renatofilho@91
   823
renatofilho@60
   824
renatofilho@170
   825
  switch (h.i_type) {
melunko@47
   826
    case 'V':
melunko@47
   827
    {
renatofilho@91
   828
      pad = nuv->priv->src_video_pad;
renatofilho@91
   829
renatofilho@91
   830
      if (nuv->priv->new_video_segment) {
renatofilho@136
   831
leo_sobral@80
   832
        /* send new segment event*/
renatofilho@137
   833
        gst_pad_push_event (nuv->priv->src_video_pad,
renatofilho@137
   834
          gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@137
   835
                                     GST_CLOCK_TIME_NONE, 0));
renatofilho@91
   836
renatofilho@91
   837
        if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
renatofilho@91
   838
            nuv->priv->time_start = timestamp;
renatofilho@91
   839
        }
renatofilho@91
   840
        nuv->priv->new_video_segment = FALSE;
leo_sobral@80
   841
      }
renatofilho@91
   842
melunko@47
   843
      break;
melunko@47
   844
    }
melunko@47
   845
    case 'A':
melunko@47
   846
    {
renatofilho@91
   847
      pad = nuv->priv->src_audio_pad;
renatofilho@91
   848
renatofilho@91
   849
      if (nuv->priv->new_audio_segment) {
leo_sobral@80
   850
        /* send new segment event*/
renatofilho@137
   851
        gst_pad_push_event (nuv->priv->src_audio_pad,
renatofilho@137
   852
          gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@137
   853
                                     GST_CLOCK_TIME_NONE, 0));
renatofilho@91
   854
renatofilho@91
   855
        if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
renatofilho@91
   856
            nuv->priv->time_start = timestamp;
renatofilho@91
   857
        }
renatofilho@91
   858
        nuv->priv->new_audio_segment = FALSE;
leo_sobral@80
   859
      }
renatofilho@91
   860
melunko@47
   861
      break;
melunko@47
   862
    }
melunko@47
   863
    case 'S':
melunko@218
   864
   {
renatofilho@170
   865
      switch (h.i_compression) {
melunko@47
   866
        case 'V':
renatofilho@170
   867
          GST_DEBUG_OBJECT (nuv, "sending new video segment: %d", h.i_timecode);
renatofilho@91
   868
          gst_pad_push_event (nuv->priv->src_video_pad,
renatofilho@170
   869
              gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, h.i_timecode * GST_MSECOND,
rosfran@73
   870
              		GST_CLOCK_TIME_NONE, 0));
melunko@47
   871
          break;
renatofilho@91
   872
        case 'A':
renatofilho@170
   873
          GST_DEBUG_OBJECT (nuv, "sending new audio segment: %d", h.i_timecode);
renatofilho@91
   874
          gst_pad_push_event (nuv->priv->src_audio_pad,
renatofilho@91
   875
              gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
rosfran@73
   876
              		GST_CLOCK_TIME_NONE, 0));
melunko@47
   877
          break;
melunko@47
   878
        default:
melunko@47
   879
          break;
melunko@47
   880
      }
renatofilho@91
   881
      goto done;
rosfran@56
   882
    }
rosfran@56
   883
    default:
melunko@47
   884
      break;
melunko@47
   885
  }
melunko@47
   886
renatofilho@91
   887
  if ((buf != NULL) && (pad != NULL)) {
renatofilho@91
   888
      /* pushing the buffer */
renatofilho@91
   889
      gst_buffer_set_caps (buf, GST_PAD_CAPS (pad));
renatofilho@91
   890
      ret = gst_pad_push (pad, buf);
renatofilho@168
   891
      buf = NULL;
renatofilho@91
   892
renatofilho@91
   893
      if (ret != GST_FLOW_OK) {
renatofilho@136
   894
        GST_WARNING_OBJECT (nuv, "error: %d pushing on srcpad %s", ret, gst_pad_get_name (pad));
renatofilho@136
   895
renatofilho@91
   896
        if (pad == nuv->priv->src_video_pad) {
renatofilho@91
   897
            nuv->priv->last_video_return = ret;
renatofilho@91
   898
        }
renatofilho@91
   899
        else if (pad == nuv->priv->src_audio_pad) {
renatofilho@91
   900
            nuv->priv->last_audio_return = ret;
renatofilho@91
   901
        }
renatofilho@91
   902
renatofilho@91
   903
        /* verify anothers flow if is necessary stop task */
renatofilho@91
   904
        if (gst_nuv_combine_flow (nuv) != FALSE) {
renatofilho@425
   905
          ret = GST_FLOW_OK;
renatofilho@425
   906
        } else {
renatofilho@425
   907
	  GST_WARNING_OBJECT (nuv, "error: on push");
renatofilho@425
   908
	}
renatofilho@91
   909
renatofilho@91
   910
      }
renatofilho@168
   911
  } 
renatofilho@168
   912
renatofilho@168
   913
done:
renatofilho@168
   914
  if (buf != NULL) {
renatofilho@163
   915
      gst_buffer_unref (buf);
renatofilho@163
   916
      buf = NULL;
renatofilho@91
   917
  }
renatofilho@194
   918
  if (ret == GST_FLOW_OK) {
renatofilho@194
   919
     nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@194
   920
     memset (&nuv->priv->fh, 0, sizeof (nuv->priv->fh));
renatofilho@194
   921
  }
melunko@47
   922
  return ret;
melunko@47
   923
}
melunko@47
   924
melunko@47
   925
static GstFlowReturn
melunko@47
   926
gst_nuv_demux_stream_mpeg_data (GstNuvDemux * nuv)
melunko@47
   927
{
melunko@47
   928
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
   929
melunko@47
   930
  /* ffmpeg extra data */
renatofilho@91
   931
  ret = gst_nuv_demux_read_bytes (nuv, nuv->priv->mpeg_data_size, TRUE,
renatofilho@91
   932
      &nuv->priv->mpeg_buffer);
renatofilho@91
   933
  if ((ret != GST_FLOW_OK) || (nuv->priv->mpeg_buffer == NULL)) {
renatofilho@91
   934
    return ret;
melunko@47
   935
  }
renatofilho@91
   936
renatofilho@91
   937
  GST_BUFFER_SIZE (nuv->priv->mpeg_buffer) = nuv->priv->mpeg_data_size;
renatofilho@91
   938
  nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
melunko@47
   939
  return ret;
melunko@47
   940
}
melunko@47
   941
melunko@47
   942
static GstFlowReturn
melunko@47
   943
gst_nuv_demux_stream_extra_data (GstNuvDemux * nuv)
melunko@47
   944
{
melunko@47
   945
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
   946
melunko@47
   947
  /* Load 'D' */
renatofilho@170
   948
  nuv_frame_header h;
melunko@47
   949
melunko@47
   950
  ret = gst_nuv_demux_frame_header_load (nuv, &h);
melunko@47
   951
  if (ret != GST_FLOW_OK)
melunko@47
   952
    return ret;
melunko@47
   953
renatofilho@170
   954
  if (h.i_type != 'D') {
renatofilho@92
   955
    GST_WARNING_OBJECT (nuv, "Unsuported rtjpeg");
renatofilho@92
   956
    return GST_FLOW_NOT_SUPPORTED;
melunko@47
   957
  }
melunko@47
   958
renatofilho@170
   959
  if (h.i_length > 0) {
renatofilho@170
   960
    if (h.i_compression == 'F') {
renatofilho@91
   961
      nuv->priv->state = GST_NUV_DEMUX_MPEG_DATA;
melunko@47
   962
    } else {
renatofilho@92
   963
      GST_WARNING_OBJECT (nuv, "only file with extended chunk are supported");
renatofilho@92
   964
      return GST_FLOW_NOT_SUPPORTED;
melunko@47
   965
    }
melunko@47
   966
  } else {
renatofilho@91
   967
    nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
melunko@47
   968
  }
melunko@47
   969
melunko@47
   970
  return ret;
melunko@47
   971
}
melunko@47
   972
melunko@47
   973
static GstFlowReturn
melunko@47
   974
gst_nuv_demux_stream_extend_header_data (GstNuvDemux * nuv)
melunko@47
   975
{
melunko@47
   976
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
   977
renatofilho@91
   978
  ret = gst_nuv_demux_extended_header_load (nuv, &nuv->priv->eh);
melunko@47
   979
  if (ret != GST_FLOW_OK)
melunko@47
   980
    return ret;
melunko@47
   981
melunko@47
   982
  gst_nuv_demux_create_pads (nuv);
renatofilho@430
   983
  nuv->priv->state = GST_NUV_DEMUX_INDEX_CREATE;
melunko@47
   984
  return ret;
melunko@47
   985
}
melunko@47
   986
melunko@47
   987
static GstFlowReturn
melunko@47
   988
gst_nuv_demux_stream_extend_header (GstNuvDemux * nuv)
melunko@47
   989
{
melunko@47
   990
  GstBuffer *buf = NULL;
melunko@47
   991
  GstFlowReturn res = GST_FLOW_OK;
melunko@47
   992
melunko@47
   993
  res = gst_nuv_demux_read_bytes (nuv, 1, FALSE, &buf);
renatofilho@84
   994
  if ((res != GST_FLOW_OK) || (buf == NULL)) {
melunko@47
   995
    if (buf != NULL) {
melunko@47
   996
      gst_buffer_unref (buf);
melunko@47
   997
    }
melunko@47
   998
    return res;
melunko@47
   999
  }
melunko@47
  1000
melunko@47
  1001
  if (buf->data[0] == 'X') {
melunko@47
  1002
    gst_buffer_unref (buf);
melunko@47
  1003
    buf = NULL;
renatofilho@170
  1004
    nuv_frame_header h;
melunko@47
  1005
melunko@47
  1006
    res = gst_nuv_demux_frame_header_load (nuv, &h);
melunko@47
  1007
    if (res != GST_FLOW_OK)
melunko@47
  1008
      return res;
melunko@47
  1009
renatofilho@170
  1010
    if (h.i_length != 512) {
melunko@47
  1011
      return GST_FLOW_ERROR;
melunko@47
  1012
    }
renatofilho@91
  1013
    nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER_DATA;
melunko@47
  1014
  } else {
renatofilho@91
  1015
    nuv->priv->state = GST_NUV_DEMUX_INVALID_DATA;
melunko@47
  1016
    g_object_unref (buf);
melunko@47
  1017
    GST_ELEMENT_WARNING (nuv, STREAM, FAILED,
melunko@47
  1018
        (_("incomplete NUV support")), ("incomplete NUV support"));
melunko@47
  1019
    return GST_FLOW_ERROR;
melunko@47
  1020
  }
melunko@47
  1021
  return res;
melunko@47
  1022
}
melunko@47
  1023
renatofilho@430
  1024
static void
renatofilho@430
  1025
gst_nuv_demux_create_seek_index (GstNuvDemux * nuv)
renatofilho@430
  1026
{
renatofilho@430
  1027
  GstMessage *msg;
renatofilho@430
  1028
  nuv_frame_header h;
renatofilho@430
  1029
renatofilho@430
  1030
  while (gst_nuv_demux_frame_header_load (nuv, &h) == GST_FLOW_OK) {
renatofilho@442
  1031
    if ((h.i_type == 'V') && (h.i_keyframe == 0)) {
renatofilho@430
  1032
      frame_index_data *f = g_new0 (frame_index_data, 1);
renatofilho@430
  1033
renatofilho@430
  1034
      f->offset = nuv->priv->offset - 12;
renatofilho@430
  1035
      f->timecode = h.i_timecode * GST_MSECOND;
renatofilho@430
  1036
renatofilho@430
  1037
      nuv->priv->index = g_slist_append (nuv->priv->index, f);
renatofilho@430
  1038
    } 
renatofilho@430
  1039
    if (h.i_type != 'R') {
renatofilho@430
  1040
      nuv->priv->offset += h.i_length;
renatofilho@430
  1041
		  if (h.i_type == 'A' || h.i_type == 'V')
renatofilho@430
  1042
  		  nuv->priv->duration_time = h.i_timecode * GST_MSECOND;
renatofilho@430
  1043
    }
renatofilho@430
  1044
  }
renatofilho@442
  1045
  GST_DEBUG_OBJECT  (nuv, "CREATING INDEX: DONE : DURATION Bytes/Sec: %" G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT, 
renatofilho@442
  1046
    nuv->priv->offset, nuv->priv->duration_time);
renatofilho@442
  1047
renatofilho@430
  1048
  nuv->priv->duration_bytes = nuv->priv->offset;
renatofilho@430
  1049
  nuv->priv->offset = nuv->priv->header_lengh;
renatofilho@430
  1050
renatofilho@430
  1051
  msg = gst_message_new_duration (GST_OBJECT (nuv), GST_FORMAT_TIME, nuv->priv->duration_time);
renatofilho@430
  1052
  gst_element_post_message (GST_ELEMENT (nuv), msg);
renatofilho@430
  1053
}
renatofilho@430
  1054
melunko@47
  1055
static GstFlowReturn
melunko@47
  1056
gst_nuv_demux_play (GstPad * pad)
melunko@47
  1057
{
melunko@47
  1058
  GstFlowReturn res = GST_FLOW_OK;
melunko@47
  1059
  GstNuvDemux *nuv = GST_NUV_DEMUX (GST_PAD_PARENT (pad));
melunko@47
  1060
renatofilho@91
  1061
  switch (nuv->priv->state) {
melunko@47
  1062
    case GST_NUV_DEMUX_START:
melunko@47
  1063
      res = gst_nuv_demux_stream_file_header (nuv);
melunko@47
  1064
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1065
        goto pause;
melunko@47
  1066
      }
renatofilho@136
  1067
      break;
melunko@47
  1068
melunko@47
  1069
    case GST_NUV_DEMUX_HEADER_DATA:
melunko@47
  1070
      res = gst_nuv_demux_stream_header_data (nuv);
melunko@47
  1071
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1072
        goto pause;
melunko@47
  1073
      }
renatofilho@136
  1074
      break;
melunko@47
  1075
melunko@47
  1076
    case GST_NUV_DEMUX_EXTRA_DATA:
melunko@47
  1077
      res = gst_nuv_demux_stream_extra_data (nuv);
melunko@47
  1078
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1079
        goto pause;
melunko@47
  1080
      }
renatofilho@136
  1081
      break;
melunko@47
  1082
melunko@47
  1083
    case GST_NUV_DEMUX_MPEG_DATA:
melunko@47
  1084
      res = gst_nuv_demux_stream_mpeg_data (nuv);
melunko@47
  1085
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1086
        goto pause;
melunko@47
  1087
      }
renatofilho@136
  1088
      break;
melunko@47
  1089
melunko@47
  1090
    case GST_NUV_DEMUX_EXTEND_HEADER:
melunko@47
  1091
      res = gst_nuv_demux_stream_extend_header (nuv);
melunko@47
  1092
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1093
        goto pause;
melunko@47
  1094
      }
renatofilho@136
  1095
      break;
melunko@47
  1096
melunko@47
  1097
    case GST_NUV_DEMUX_EXTEND_HEADER_DATA:
melunko@47
  1098
      res = gst_nuv_demux_stream_extend_header_data (nuv);
melunko@47
  1099
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1100
        goto pause;
melunko@47
  1101
      }
renatofilho@430
  1102
      //store file header size
renatofilho@430
  1103
      nuv->priv->header_lengh = nuv->priv->offset;
renatofilho@430
  1104
      break;
renatofilho@430
  1105
renatofilho@430
  1106
    case GST_NUV_DEMUX_INDEX_CREATE:
renatofilho@431
  1107
      if (nuv->priv->mode == NUV_PULL_MODE) {
renatofilho@430
  1108
        gst_nuv_demux_create_seek_index (nuv);
renatofilho@430
  1109
      }
renatofilho@430
  1110
      nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@136
  1111
      break;
melunko@47
  1112
melunko@47
  1113
    case GST_NUV_DEMUX_FRAME_HEADER:
melunko@47
  1114
      res = gst_nuv_demux_read_head_frame (nuv);
melunko@47
  1115
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1116
        goto pause;
melunko@47
  1117
      }
renatofilho@136
  1118
      break;
melunko@47
  1119
renatofilho@425
  1120
    case GST_NUV_DEMUX_MOVI: 
melunko@47
  1121
      res = gst_nuv_demux_stream_data (nuv);
renatofilho@77
  1122
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
melunko@47
  1123
        goto pause;
melunko@47
  1124
      }
melunko@47
  1125
      break;
renatofilho@136
  1126
melunko@47
  1127
    case GST_NUV_DEMUX_INVALID_DATA:
melunko@47
  1128
      goto pause;
melunko@47
  1129
      break;
melunko@47
  1130
    default:
melunko@47
  1131
      g_assert_not_reached ();
melunko@47
  1132
  }
melunko@47
  1133
melunko@47
  1134
  return GST_FLOW_OK;
melunko@47
  1135
melunko@47
  1136
pause:
melunko@47
  1137
  GST_LOG_OBJECT (nuv, "pausing task, reason %s", gst_flow_get_name (res));
renatofilho@91
  1138
  gst_pad_pause_task (nuv->priv->sinkpad);
renatofilho@440
  1139
renatofilho@440
  1140
  if (res == GST_FLOW_ERROR_EOS) {
renatofilho@440
  1141
    gst_nuv_demux_send_eos (nuv);
renatofilho@440
  1142
    nuv->priv->eos = TRUE;
renatofilho@440
  1143
    res = GST_FLOW_OK;
renatofilho@440
  1144
  }
renatofilho@440
  1145
melunko@47
  1146
  if (GST_FLOW_IS_FATAL (res)) {
melunko@47
  1147
    GST_ELEMENT_ERROR (nuv, STREAM, FAILED,
melunko@47
  1148
        (_("Internal data stream error.")),
melunko@47
  1149
        ("streaming stopped, reason %s", gst_flow_get_name (res)));
melunko@47
  1150
melunko@47
  1151
    gst_nuv_demux_send_eos (nuv);
melunko@47
  1152
  }
melunko@47
  1153
  return res;
melunko@47
  1154
}
melunko@47
  1155
melunko@47
  1156
static void
melunko@47
  1157
gst_nuv_demux_send_eos (GstNuvDemux * nuv)
melunko@47
  1158
{
melunko@47
  1159
  gst_element_post_message (GST_ELEMENT (nuv),
melunko@47
  1160
      gst_message_new_segment_done (GST_OBJECT (nuv), GST_FORMAT_TIME, -1));
melunko@47
  1161
renatofilho@91
  1162
  if (nuv->priv->src_video_pad)
renatofilho@91
  1163
    gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_eos ());
renatofilho@91
  1164
  if (nuv->priv->src_audio_pad)
renatofilho@91
  1165
    gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_eos ());
melunko@47
  1166
}
renatofilho@91
  1167
melunko@47
  1168
static GstFlowReturn
melunko@47
  1169
gst_nuv_demux_read_bytes (GstNuvDemux * nuv, guint64 size, gboolean move,
melunko@47
  1170
    GstBuffer ** buffer)
melunko@47
  1171
{
melunko@47
  1172
  GstFlowReturn ret = GST_FLOW_OK;
melunko@47
  1173
melunko@47
  1174
  if (size == 0) {
melunko@47
  1175
    return ret;
melunko@47
  1176
  }
renatofilho@91
  1177
renatofilho@91
  1178
  if (nuv->priv->mode == NUV_PULL_MODE) {
renatofilho@91
  1179
    ret = gst_pad_pull_range (nuv->priv->sinkpad, nuv->priv->offset, size, buffer);
melunko@47
  1180
    if (ret == GST_FLOW_OK) {
renatofilho@430
  1181
      if (move) {
renatofilho@430
  1182
        nuv->priv->offset += size;
renatofilho@430
  1183
      }
melunko@47
  1184
      /* got eos */
melunko@47
  1185
    } else if (ret == GST_FLOW_UNEXPECTED) {
renatofilho@440
  1186
      return GST_FLOW_ERROR_EOS;
melunko@47
  1187
    }
melunko@47
  1188
  } else {
renatofilho@194
  1189
    if (gst_adapter_available (nuv->priv->adapter) < size) {
renatofilho@194
  1190
      nuv->priv->more_data = TRUE;
melunko@47
  1191
      return GST_FLOW_ERROR_NO_DATA;
renatofilho@194
  1192
    }
melunko@47
  1193
    if (move) {
renatofilho@181
  1194
      *buffer = gst_adapter_take_buffer (nuv->priv->adapter, size);
melunko@47
  1195
    } else {
renatofilho@156
  1196
      guint8 *data = NULL;
renatofilho@156
  1197
      data = (guint8 *) gst_adapter_peek (nuv->priv->adapter, size);
renatofilho@156
  1198
      *buffer = gst_buffer_new ();
renatofilho@165
  1199
      gst_buffer_set_data (*buffer, data, size);
melunko@47
  1200
    }
melunko@47
  1201
  }
melunko@47
  1202
  return ret;
melunko@47
  1203
}
melunko@47
  1204
melunko@47
  1205
static gboolean
melunko@47
  1206
gst_nuv_demux_sink_activate (GstPad * sinkpad)
melunko@47
  1207
{
melunko@47
  1208
  gboolean res = TRUE;
melunko@47
  1209
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
renatofilho@422
  1210
 
melunko@47
  1211
  if (gst_pad_check_pull_range (sinkpad)) {
renatofilho@422
  1212
    gst_adapter_clear (nuv->priv->adapter);
melunko@47
  1213
    res = gst_pad_activate_pull (sinkpad, TRUE);
melunko@47
  1214
  } else {
renatofilho@422
  1215
    gst_adapter_clear (nuv->priv->adapter);
melunko@47
  1216
    res = gst_pad_activate_push (sinkpad, TRUE);
melunko@47
  1217
  }
renatofilho@173
  1218
  
melunko@47
  1219
  g_object_unref (nuv);
melunko@47
  1220
  return res;
melunko@47
  1221
}
melunko@47
  1222
melunko@47
  1223
static gboolean
melunko@47
  1224
gst_nuv_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
melunko@47
  1225
{
melunko@47
  1226
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
melunko@47
  1227
melunko@47
  1228
  if (active) {
renatofilho@85
  1229
    GST_DEBUG_OBJECT (nuv, "activating pull function");
renatofilho@91
  1230
    nuv->priv->mode = NUV_PULL_MODE;
renatofilho@422
  1231
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@422
  1232
melunko@47
  1233
    gst_pad_start_task (sinkpad, (GstTaskFunction) gst_nuv_demux_loop, sinkpad);
melunko@47
  1234
  } else {
renatofilho@85
  1235
    GST_DEBUG_OBJECT (nuv, "deactivating pull function");
melunko@47
  1236
    gst_pad_stop_task (sinkpad);
melunko@47
  1237
  }
melunko@47
  1238
  gst_object_unref (nuv);
melunko@47
  1239
melunko@47
  1240
  return TRUE;
melunko@47
  1241
}
melunko@47
  1242
renatofilho@77
  1243
static gboolean
renatofilho@77
  1244
gst_nuv_demux_sink_activate_push (GstPad * pad, gboolean active)
renatofilho@77
  1245
{
renatofilho@77
  1246
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@77
  1247
renatofilho@422
  1248
  if (active) {
renatofilho@422
  1249
    nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@422
  1250
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@133
  1251
renatofilho@77
  1252
    GST_DEBUG_OBJECT (nuv, "activating push/chain function");
renatofilho@77
  1253
  } else {
renatofilho@77
  1254
    GST_DEBUG_OBJECT (nuv, "deactivating push/chain function");
renatofilho@77
  1255
  }
renatofilho@77
  1256
renatofilho@77
  1257
  gst_object_unref (nuv);
renatofilho@77
  1258
renatofilho@77
  1259
  return TRUE;
renatofilho@77
  1260
}
renatofilho@77
  1261
renatofilho@430
  1262
static frame_index_data *
renatofilho@430
  1263
gst_nuv_demux_do_seek_index (GstNuvDemux *nuv, gint64 seek_pos, 
renatofilho@430
  1264
  gint64 segment_stop, GstFormat format)
renatofilho@430
  1265
{
renatofilho@430
  1266
  GSList *l;
renatofilho@430
  1267
  frame_index_data *ret = NULL;
renatofilho@430
  1268
renatofilho@430
  1269
  if (nuv->priv->index == NULL) {
renatofilho@430
  1270
    return NULL;
renatofilho@430
  1271
  }
renatofilho@430
  1272
renatofilho@430
  1273
  /* find keyframe closest to the requested position  */
renatofilho@430
  1274
  for (l = nuv->priv->index; l != NULL; l = l->next) {
renatofilho@430
  1275
    frame_index_data *f = (frame_index_data *) l->data;  
renatofilho@430
  1276
    gint64 pos = 0;
renatofilho@430
  1277
   
renatofilho@430
  1278
    if (format == GST_FORMAT_BYTES) {     
renatofilho@430
  1279
      pos = f->offset;
renatofilho@430
  1280
    } else if (format == GST_FORMAT_TIME) {
renatofilho@430
  1281
      pos = f->timecode;
renatofilho@430
  1282
    } else {
renatofilho@430
  1283
      return NULL;
renatofilho@430
  1284
    }
renatofilho@430
  1285
renatofilho@477
  1286
    if (pos >= seek_pos) {
renatofilho@477
  1287
      ret = f;
renatofilho@477
  1288
      break;
renatofilho@430
  1289
    }
renatofilho@477
  1290
renatofilho@477
  1291
    if ((segment_stop != -1) &&  (segment_stop != GST_CLOCK_TIME_NONE) && (pos > segment_stop)) {
renatofilho@430
  1292
      break;
renatofilho@477
  1293
    }
renatofilho@477
  1294
  } 
renatofilho@430
  1295
renatofilho@430
  1296
  return ret;
renatofilho@430
  1297
}
renatofilho@430
  1298
renatofilho@425
  1299
static gboolean
renatofilho@425
  1300
gst_nuv_demux_do_seek (GstNuvDemux *nuv, GstEvent * event)
renatofilho@425
  1301
{
renatofilho@425
  1302
  gdouble rate;
renatofilho@425
  1303
  GstFormat format;
renatofilho@425
  1304
  GstSeekFlags flags;
renatofilho@425
  1305
  GstSeekType cur_type;
renatofilho@425
  1306
  gint64 cur;
renatofilho@425
  1307
  GstSeekType stop_type;
renatofilho@425
  1308
  gint64 stop;
renatofilho@425
  1309
  gboolean flush;
renatofilho@430
  1310
  frame_index_data *entry;
renatofilho@430
  1311
  gint64 segment_start;
renatofilho@430
  1312
  gint64 segment_stop;
renatofilho@440
  1313
  GstEvent *newsegment_event;
renatofilho@430
  1314
renatofilho@442
  1315
  if (nuv->priv->eos) {
renatofilho@442
  1316
    return FALSE;
renatofilho@442
  1317
  }
renatofilho@425
  1318
renatofilho@477
  1319
  if (nuv->priv->mode == NUV_PUSH_MODE) {
renatofilho@477
  1320
    return FALSE;
renatofilho@477
  1321
  }
renatofilho@477
  1322
renatofilho@442
  1323
renatofilho@425
  1324
  gst_event_parse_seek (event, &rate, &format, &flags,
renatofilho@425
  1325
      &cur_type, &cur, &stop_type, &stop);
renatofilho@425
  1326
renatofilho@442
  1327
renatofilho@442
  1328
renatofilho@430
  1329
/*
renatofilho@430
  1330
  if (format == GST_FORMAT_TIME) {
renatofilho@430
  1331
    GST_DEBUG_OBJECT (nuv, "Can only seek on BYTES");
renatofilho@430
  1332
    return FALSE;
renatofilho@430
  1333
  }
renatofilho@430
  1334
*/
renatofilho@425
  1335
renatofilho@430
  1336
  if (rate <= 0.0) {
renatofilho@430
  1337
    GST_DEBUG_OBJECT (nuv, "Can only seek with positive rate");
renatofilho@430
  1338
    return FALSE;
renatofilho@430
  1339
  }
renatofilho@430
  1340
  
renatofilho@430
  1341
  if (cur_type == GST_SEEK_TYPE_SET) {
renatofilho@430
  1342
    GST_OBJECT_LOCK (nuv);
renatofilho@430
  1343
    if (gst_nuv_demux_do_seek_index (nuv, cur, -1, format) == NULL) {
renatofilho@430
  1344
      GST_DEBUG_OBJECT (nuv, "No matching seek entry in index");
renatofilho@430
  1345
      GST_OBJECT_UNLOCK (nuv);
renatofilho@430
  1346
      return FALSE;
renatofilho@425
  1347
    }
renatofilho@430
  1348
    GST_OBJECT_UNLOCK (nuv);
renatofilho@430
  1349
  }
renatofilho@477
  1350
renatofilho@430
  1351
  flush = !!(flags & GST_SEEK_FLAG_FLUSH);
renatofilho@430
  1352
  
renatofilho@430
  1353
  if (flush) {
renatofilho@430
  1354
    gst_pad_push_event (nuv->priv->sinkpad, gst_event_new_flush_start ());
renatofilho@430
  1355
    if (nuv->priv->src_video_pad != NULL) {
renatofilho@430
  1356
      gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_flush_start ());
renatofilho@425
  1357
    }
renatofilho@425
  1358
renatofilho@430
  1359
    if (nuv->priv->src_audio_pad != NULL) {
renatofilho@430
  1360
      gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_flush_start ());
renatofilho@430
  1361
    }
renatofilho@430
  1362
  }
renatofilho@430
  1363
  else {
renatofilho@477
  1364
    gst_pad_pause_task (nuv->priv->sinkpad);
renatofilho@430
  1365
  }
renatofilho@425
  1366
renatofilho@430
  1367
  GST_PAD_STREAM_LOCK (nuv->priv->sinkpad);
renatofilho@430
  1368
  GST_OBJECT_LOCK (nuv);
renatofilho@425
  1369
renatofilho@425
  1370
renatofilho@430
  1371
  if (cur == GST_CLOCK_TIME_NONE)
renatofilho@430
  1372
    cur = 0;
renatofilho@440
  1373
  if (stop == GST_CLOCK_TIME_NONE)
renatofilho@440
  1374
    stop = nuv->priv->duration_time;
renatofilho@430
  1375
renatofilho@430
  1376
  if (cur_type == GST_SEEK_TYPE_SET)
renatofilho@430
  1377
    segment_start = cur;
renatofilho@430
  1378
  else if (cur_type == GST_SEEK_TYPE_CUR)
renatofilho@430
  1379
    segment_start = nuv->priv->segment_start + cur;
renatofilho@430
  1380
  else
renatofilho@430
  1381
    segment_start = nuv->priv->segment_start;
renatofilho@430
  1382
renatofilho@430
  1383
  if (stop_type == GST_SEEK_TYPE_SET)
renatofilho@430
  1384
    segment_stop = stop;
renatofilho@430
  1385
  else if (stop_type == GST_SEEK_TYPE_CUR)
renatofilho@430
  1386
    segment_stop = nuv->priv->segment_stop + stop;
renatofilho@430
  1387
  else
renatofilho@430
  1388
    segment_stop = nuv->priv->segment_stop;
renatofilho@430
  1389
renatofilho@440
  1390
  segment_start = CLAMP (segment_start, 0, nuv->priv->duration_time);
renatofilho@440
  1391
  segment_stop = CLAMP (segment_stop, 0, nuv->priv->duration_time);
renatofilho@430
  1392
renatofilho@430
  1393
  entry = gst_nuv_demux_do_seek_index (nuv, segment_start,
renatofilho@430
  1394
      segment_stop, format);
renatofilho@430
  1395
renatofilho@430
  1396
  if (entry == NULL) {
renatofilho@430
  1397
    GST_DEBUG_OBJECT (nuv, "No matching seek entry in index");
renatofilho@430
  1398
    goto seek_error;
renatofilho@430
  1399
  }
renatofilho@430
  1400
renatofilho@430
  1401
  segment_start = entry->timecode;
renatofilho@430
  1402
renatofilho@430
  1403
  nuv->priv->segment_start = segment_start;
renatofilho@430
  1404
  nuv->priv->segment_stop = segment_stop;
renatofilho@430
  1405
renatofilho@430
  1406
  GST_OBJECT_UNLOCK (nuv);
renatofilho@430
  1407
renatofilho@440
  1408
  if (!nuv->priv->eos) {
renatofilho@440
  1409
    GstMessage *msg;
renatofilho@440
  1410
    msg = gst_message_new_segment_start (GST_OBJECT (nuv), GST_FORMAT_TIME,
renatofilho@440
  1411
      nuv->priv->segment_start);
renatofilho@430
  1412
  
renatofilho@440
  1413
    gst_element_post_message (GST_ELEMENT (nuv), msg);
renatofilho@430
  1414
  }
renatofilho@430
  1415
renatofilho@442
  1416
  GST_DEBUG_OBJECT (nuv, "NEW SEGMENT START %" G_GUINT64_FORMAT ", STOP %" G_GUINT64_FORMAT, 
renatofilho@442
  1417
    segment_start, segment_stop);
renatofilho@440
  1418
  newsegment_event = gst_event_new_new_segment (FALSE, rate,
renatofilho@440
  1419
    GST_FORMAT_TIME, segment_start, segment_stop, segment_start);
renatofilho@430
  1420
renatofilho@430
  1421
renatofilho@430
  1422
  if (flush) {
renatofilho@430
  1423
    if (nuv->priv->src_video_pad != NULL) {
renatofilho@430
  1424
      gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_flush_stop ());
renatofilho@425
  1425
    }
renatofilho@425
  1426
renatofilho@430
  1427
    if (nuv->priv->src_audio_pad != NULL) {
renatofilho@430
  1428
      gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_flush_stop ());
renatofilho@430
  1429
    }
renatofilho@440
  1430
renatofilho@440
  1431
    gst_pad_push_event (nuv->priv->sinkpad, gst_event_new_flush_stop ());
renatofilho@430
  1432
  }
renatofilho@425
  1433
renatofilho@430
  1434
  
renatofilho@430
  1435
  if (nuv->priv->src_video_pad != NULL) {
renatofilho@440
  1436
    gst_pad_push_event (nuv->priv->src_video_pad, gst_event_ref (newsegment_event));
renatofilho@425
  1437
  }
renatofilho@430
  1438
  if (nuv->priv->src_audio_pad != NULL) {
renatofilho@440
  1439
    gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_ref (newsegment_event));
renatofilho@430
  1440
  } 
renatofilho@430
  1441
renatofilho@440
  1442
  gst_event_unref (newsegment_event);
renatofilho@430
  1443
renatofilho@430
  1444
  nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@440
  1445
  nuv->priv->offset = entry->offset;
renatofilho@440
  1446
renatofilho@430
  1447
  gst_pad_start_task (nuv->priv->sinkpad, (GstTaskFunction) gst_nuv_demux_loop,
renatofilho@430
  1448
      nuv->priv->sinkpad);
renatofilho@430
  1449
renatofilho@430
  1450
  GST_PAD_STREAM_UNLOCK (nuv->priv->sinkpad);
renatofilho@430
  1451
  return TRUE;
renatofilho@430
  1452
renatofilho@430
  1453
seek_error:
renatofilho@430
  1454
  GST_DEBUG_OBJECT (nuv, "Got a seek error");
renatofilho@430
  1455
  GST_OBJECT_UNLOCK (nuv);
renatofilho@430
  1456
  GST_PAD_STREAM_UNLOCK (nuv->priv->sinkpad);
renatofilho@425
  1457
  return FALSE;
renatofilho@430
  1458
renatofilho@425
  1459
}
renatofilho@425
  1460
renatofilho@425
  1461
static gboolean
renatofilho@425
  1462
gst_nuv_demux_srcpad_event (GstPad * pad, GstEvent * event)
renatofilho@425
  1463
{
renatofilho@425
  1464
  gboolean res = FALSE;
renatofilho@425
  1465
  GstNuvDemux *nuv;
renatofilho@425
  1466
renatofilho@425
  1467
  nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@425
  1468
  
renatofilho@425
  1469
  switch (GST_EVENT_TYPE (event)) {
renatofilho@425
  1470
    case GST_EVENT_SEEK:
renatofilho@425
  1471
      res = gst_nuv_demux_do_seek (nuv, event);
renatofilho@425
  1472
      break;
renatofilho@425
  1473
    default:
renatofilho@425
  1474
      res = FALSE;
renatofilho@425
  1475
      break;
renatofilho@425
  1476
  }
renatofilho@430
  1477
  
renatofilho@91
  1478
  gst_object_unref (nuv);
renatofilho@91
  1479
  return res;
renatofilho@91
  1480
}
renatofilho@91
  1481
melunko@47
  1482
static GstFlowReturn
melunko@47
  1483
gst_nuv_demux_chain (GstPad * pad, GstBuffer * buf)
melunko@47
  1484
{
renatofilho@194
  1485
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@422
  1486
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@422
  1487
  
renatofilho@422
  1488
  if (nuv->priv->mode != NUV_PUSH_MODE)
renatofilho@422
  1489
    return ret;
renatofilho@194
  1490
renatofilho@194
  1491
  gst_adapter_push (nuv->priv->adapter, buf);  
rosfran@193
  1492
  
renatofilho@194
  1493
  while ((ret == GST_FLOW_OK) && (nuv->priv->more_data == FALSE)) {
renatofilho@194
  1494
      ret = gst_nuv_demux_play (pad);
rosfran@193
  1495
  }
renatofilho@194
  1496
renatofilho@194
  1497
  nuv->priv->more_data = FALSE;
renatofilho@194
  1498
  gst_object_unref (nuv);
renatofilho@422
  1499
renatofilho@194
  1500
  return ret;
melunko@47
  1501
}
melunko@47
  1502
melunko@47
  1503
static void
melunko@47
  1504
gst_nuv_demux_loop (GstPad * pad)
melunko@47
  1505
{
melunko@47
  1506
  gst_nuv_demux_play (pad);
melunko@47
  1507
}
melunko@47
  1508
melunko@47
  1509
static void
renatofilho@430
  1510
gst_nuv_demux_index_free (gpointer data, gpointer user_data)
renatofilho@430
  1511
{
renatofilho@430
  1512
  g_free (data);
renatofilho@430
  1513
}
renatofilho@430
  1514
renatofilho@430
  1515
static void
melunko@47
  1516
gst_nuv_demux_reset (GstNuvDemux * nuv)
melunko@47
  1517
{
renatofilho@442
  1518
  nuv->priv->eos = FALSE;
renatofilho@194
  1519
  nuv->priv->more_data = FALSE;
renatofilho@91
  1520
  nuv->priv->state = GST_NUV_DEMUX_START;
renatofilho@422
  1521
  nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@91
  1522
  nuv->priv->offset = 0;
renatofilho@91
  1523
  nuv->priv->time_start = 0;
renatofilho@91
  1524
  nuv->priv->time_qos = GST_CLOCK_TIME_NONE;
renatofilho@91
  1525
  nuv->priv->duration_bytes = GST_CLOCK_TIME_NONE;
renatofilho@91
  1526
  nuv->priv->duration_time = GST_CLOCK_TIME_NONE;
renatofilho@430
  1527
  nuv->priv->last_video_return = GST_FLOW_OK;
renatofilho@430
  1528
  nuv->priv->last_audio_return = GST_FLOW_OK;
renatofilho@430
  1529
  nuv->priv->header_lengh = 0;
renatofilho@430
  1530
  nuv->priv->segment_stop = GST_CLOCK_TIME_NONE;
renatofilho@430
  1531
  nuv->priv->segment_start = GST_CLOCK_TIME_NONE;
renatofilho@430
  1532
renatofilho@430
  1533
  //clear index list
renatofilho@430
  1534
  g_slist_foreach (nuv->priv->index, gst_nuv_demux_index_free, NULL);
renatofilho@430
  1535
  g_slist_free (nuv->priv->index);
renatofilho@430
  1536
  nuv->priv->index = NULL;
melunko@47
  1537
renatofilho@422
  1538
  gst_adapter_clear (nuv->priv->adapter);
melunko@47
  1539
renatofilho@91
  1540
  if (nuv->priv->mpeg_buffer != NULL) {
renatofilho@91
  1541
    gst_buffer_unref (nuv->priv->mpeg_buffer);
renatofilho@91
  1542
    nuv->priv->mpeg_buffer = NULL;
melunko@47
  1543
  }
melunko@47
  1544
}
melunko@47
  1545
melunko@47
  1546
static void
melunko@47
  1547
gst_nuv_demux_destoy_src_pad (GstNuvDemux * nuv)
melunko@47
  1548
{
renatofilho@91
  1549
  if (nuv->priv->src_video_pad) {
renatofilho@91
  1550
    gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_video_pad);
renatofilho@91
  1551
    nuv->priv->src_video_pad = NULL;
melunko@47
  1552
  }
melunko@47
  1553
renatofilho@91
  1554
  if (nuv->priv->src_audio_pad) {
renatofilho@91
  1555
    gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_audio_pad);
renatofilho@91
  1556
    nuv->priv->src_audio_pad = NULL;
melunko@47
  1557
  }
melunko@47
  1558
}
melunko@47
  1559
melunko@47
  1560
static GstStateChangeReturn
melunko@47
  1561
gst_nuv_demux_change_state (GstElement * element, GstStateChange transition)
melunko@47
  1562
{
rosfran@62
  1563
  GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
rosfran@73
  1564
melunko@47
  1565
  switch (transition) {
renatofilho@136
  1566
    case GST_STATE_CHANGE_NULL_TO_READY:
renatofilho@91
  1567
      gst_nuv_demux_reset (GST_NUV_DEMUX (element));
renatofilho@133
  1568
      gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
melunko@47
  1569
      break;
melunko@47
  1570
    default:
melunko@47
  1571
      break;
melunko@47
  1572
  }
melunko@47
  1573
melunko@47
  1574
  ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
renatofilho@136
  1575
  if (ret == GST_STATE_CHANGE_FAILURE) {
melunko@47
  1576
    goto done;
renatofilho@136
  1577
  }
melunko@47
  1578
melunko@47
  1579
  switch (transition) {
renatofilho@430
  1580
    case GST_STATE_CHANGE_READY_TO_NULL:
renatofilho@91
  1581
      gst_nuv_demux_reset (GST_NUV_DEMUX (element));
renatofilho@66
  1582
      gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
melunko@47
  1583
      break;
melunko@47
  1584
    default:
melunko@47
  1585
      break;
melunko@47
  1586
  }
melunko@47
  1587
melunko@47
  1588
done:
melunko@47
  1589
  return ret;
melunko@47
  1590
}
melunko@47
  1591
renatofilho@181
  1592
#if (GST_VERSION_MINOR == 10) && (GST_VERSION_MICRO < 6) 
renatofilho@173
  1593
GstBuffer *
renatofilho@181
  1594
gst_adapter_take_buffer (GstAdapter * adapter, guint nbytes)
renatofilho@173
  1595
{
renatofilho@173
  1596
  GstBuffer *buffer;
renatofilho@173
  1597
  GstBuffer *cur;
renatofilho@173
  1598
  guint8 *data;
renatofilho@173
  1599
renatofilho@173
  1600
  g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
renatofilho@173
  1601
  g_return_val_if_fail (nbytes > 0, NULL);
renatofilho@173
  1602
renatofilho@173
  1603
  GST_LOG_OBJECT (adapter, "taking buffer of %u bytes", nbytes);
renatofilho@173
  1604
renatofilho@173
  1605
  /* we don't have enough data, return NULL. This is unlikely
renatofilho@173
  1606
   * as one usually does an _available() first instead of peeking a
renatofilho@173
  1607
   * random size. */
renatofilho@173
  1608
  if (G_UNLIKELY (nbytes > adapter->size))
renatofilho@173
  1609
    return NULL;
renatofilho@173
  1610
renatofilho@173
  1611
  /* our head buffer has enough data left, return it */
renatofilho@173
  1612
  cur = adapter->buflist->data;
renatofilho@173
  1613
  if (GST_BUFFER_SIZE (cur) >= nbytes + adapter->skip) {
renatofilho@173
  1614
    GST_LOG_OBJECT (adapter, "providing buffer of %d bytes via sub-buffer",
renatofilho@173
  1615
        nbytes);
renatofilho@173
  1616
    buffer = gst_buffer_create_sub (cur, adapter->skip, nbytes);
renatofilho@173
  1617
renatofilho@173
  1618
    gst_adapter_flush (adapter, nbytes);
renatofilho@173
  1619
renatofilho@173
  1620
    return buffer;
renatofilho@173
  1621
  }
renatofilho@173
  1622
renatofilho@173
  1623
  data = gst_adapter_take (adapter, nbytes);
renatofilho@173
  1624
  if (data == NULL)
renatofilho@173
  1625
    return NULL;
renatofilho@173
  1626
renatofilho@173
  1627
  buffer = gst_buffer_new ();
renatofilho@173
  1628
  GST_BUFFER_DATA (buffer) = data;
renatofilho@173
  1629
  GST_BUFFER_MALLOCDATA (buffer) = data;
renatofilho@173
  1630
  GST_BUFFER_SIZE (buffer) = nbytes;
renatofilho@173
  1631
renatofilho@173
  1632
  return buffer;
renatofilho@173
  1633
}
renatofilho@181
  1634
#endif
renatofilho@173
  1635
renatofilho@91
  1636
melunko@47
  1637
static gboolean
melunko@47
  1638
plugin_init (GstPlugin * plugin)
melunko@47
  1639
{
melunko@47
  1640
#ifdef ENABLE_NLS
melunko@47
  1641
  setlocale (LC_ALL, "");
rosfran@73
  1642
  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
melunko@47
  1643
#endif /* ENABLE_NLS */
melunko@47
  1644
melunko@47
  1645
  if (!gst_element_register (plugin, "nuvdemux", GST_RANK_SECONDARY,
melunko@47
  1646
          GST_TYPE_NUV_DEMUX)) {
melunko@47
  1647
    return FALSE;
melunko@47
  1648
  }
melunko@47
  1649
  return TRUE;
melunko@47
  1650
}
melunko@47
  1651
melunko@47
  1652
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
melunko@47
  1653
    GST_VERSION_MINOR,
melunko@47
  1654
    "nuvdemux",
melunko@47
  1655
    "Demuxes and muxes audio and video",
renatofilho@163
  1656
     plugin_init, VERSION, "LGPL", "NuvDemux", "")
renatofilho@163
  1657