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