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