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