gst-gmyth/nuvdemux/gstnuvdemux.c
author rosfran
Fri May 25 18:25:50 2007 +0100 (2007-05-25)
branchtrunk
changeset 715 e01c60057f07
parent 713 e8fe96f87916
child 716 1ee5df4c9ccd
permissions -rw-r--r--
[svn r721] Added GStreamer-like indentation.
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@713
   520
  GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 12, FALSE, &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@714
   530
<<<<<<< .mine
renatofilho@714
   531
=======
rosfran@713
   532
  /* verifies if it is a MythTV file header */
rosfran@713
   533
  if ( ( data[0] == 'M' || data[0] == 'N') && data[6] == 'V' )  {
rosfran@713
   534
	  nuv->priv->state = GST_NUV_DEMUX_HEADER_DATA;
rosfran@713
   535
	  goto done;
rosfran@713
   536
  }
rosfran@713
   537
  /* it is not a NUV file header, so now can move the 12 bytes */
rosfran@713
   538
  res = gst_nuv_demux_move_bytes (nuv, 12);
renatofilho@608
   539
renatofilho@714
   540
>>>>>>> .r719
renatofilho@608
   541
  h->i_type = GPOINTER_TO_INT (data[0]);
renatofilho@608
   542
  h->i_compression = GPOINTER_TO_INT (data[1]);
renatofilho@608
   543
  h->i_keyframe = GPOINTER_TO_INT (data[2]);
renatofilho@608
   544
  h->i_filters = GPOINTER_TO_INT (data[3]);
renatofilho@608
   545
  h->i_timecode = GST_READ_UINT32_LE (&data[4]);
renatofilho@608
   546
  h->i_length = GST_READ_UINT32_LE (&data[8]);
renatofilho@608
   547
renatofilho@608
   548
  GST_DEBUG_OBJECT (nuv, "frame hdr: t=%c c=%c k=%d f=0x%x timecode=%d l=%d",
renatofilho@608
   549
      h->i_type,
renatofilho@608
   550
      h->i_compression ? h->i_compression : ' ',
renatofilho@608
   551
      h->i_keyframe ? h->i_keyframe : ' ',
renatofilho@608
   552
      h->i_filters, h->i_timecode, h->i_length);
renatofilho@608
   553
renatofilho@608
   554
done:  
renatofilho@608
   555
  if (buf != NULL) {
renatofilho@608
   556
      gst_buffer_unref (buf);
renatofilho@608
   557
      buf = NULL;
renatofilho@608
   558
  }
renatofilho@608
   559
renatofilho@608
   560
  return res;
renatofilho@608
   561
}
renatofilho@608
   562
renatofilho@608
   563
static GstFlowReturn
renatofilho@608
   564
gst_nuv_demux_extended_header_load (GstNuvDemux * nuv,
renatofilho@608
   565
    nuv_extended_header * h)
renatofilho@608
   566
{
renatofilho@608
   567
  unsigned char *data;
renatofilho@608
   568
  GstBuffer *buff = NULL;
renatofilho@608
   569
renatofilho@608
   570
  GstFlowReturn res = gst_nuv_demux_read_bytes (nuv, 512, TRUE, &buff);
renatofilho@608
   571
renatofilho@608
   572
  if ((res != GST_FLOW_OK) || (buff == NULL)) {
renatofilho@608
   573
      goto done;
renatofilho@608
   574
  }
renatofilho@608
   575
renatofilho@714
   576
  if (h == NULL)
renatofilho@714
   577
    goto done;
renatofilho@714
   578
renatofilho@608
   579
  data = buff->data;
renatofilho@608
   580
  h->i_version = GST_READ_UINT32_LE (&data[0]);
renatofilho@608
   581
  h->i_video_fcc = GST_MAKE_FOURCC (data[4], data[5], data[6], data[7]);
renatofilho@608
   582
  h->i_audio_fcc = GST_MAKE_FOURCC (data[8], data[9], data[10], data[11]);
renatofilho@608
   583
  h->i_audio_sample_rate = GST_READ_UINT32_LE (&data[12]);
renatofilho@608
   584
  h->i_audio_bits_per_sample = GST_READ_UINT32_LE (&data[16]);
renatofilho@608
   585
  h->i_audio_channels = GST_READ_UINT32_LE (&data[20]);
renatofilho@608
   586
  h->i_audio_compression_ratio = GST_READ_UINT32_LE (&data[24]);
renatofilho@608
   587
  h->i_audio_quality = GST_READ_UINT32_LE (&data[28]);
renatofilho@608
   588
  h->i_rtjpeg_quality = GST_READ_UINT32_LE (&data[32]);
renatofilho@608
   589
  h->i_rtjpeg_luma_filter = GST_READ_UINT32_LE (&data[36]);
renatofilho@608
   590
  h->i_rtjpeg_chroma_filter = GST_READ_UINT32_LE (&data[40]);
renatofilho@608
   591
  h->i_lavc_bitrate = GST_READ_UINT32_LE (&data[44]);
renatofilho@608
   592
  h->i_lavc_qmin = GST_READ_UINT32_LE (&data[48]);
renatofilho@608
   593
  h->i_lavc_qmin = GST_READ_UINT32_LE (&data[52]);
renatofilho@608
   594
  h->i_lavc_maxqdiff = GST_READ_UINT32_LE (&data[56]);
renatofilho@608
   595
  h->i_seekable_offset = GST_READ_UINT64_LE (&data[60]);
renatofilho@608
   596
  h->i_keyframe_adjust_offset = GST_READ_UINT64_LE (&data[68]);
renatofilho@608
   597
renatofilho@608
   598
  GST_DEBUG_OBJECT (nuv,
renatofilho@608
   599
      "ex hdr: v=%d vffc=%4.4s afcc=%4.4s %dHz %dbits ach=%d acr=%d aq=%d"
renatofilho@608
   600
      "rtjpeg q=%d lf=%d lc=%d lavc br=%d qmin=%d qmax=%d maxqdiff=%d seekableoff=%lld keyfao=%lld",
renatofilho@608
   601
      h->i_version, (gchar *) & h->i_video_fcc, (gchar *) & h->i_audio_fcc,
renatofilho@608
   602
      h->i_audio_sample_rate, h->i_audio_bits_per_sample, h->i_audio_channels,
renatofilho@608
   603
      h->i_audio_compression_ratio, h->i_audio_quality, h->i_rtjpeg_quality,
renatofilho@608
   604
      h->i_rtjpeg_luma_filter, h->i_rtjpeg_chroma_filter, h->i_lavc_bitrate,
renatofilho@608
   605
      h->i_lavc_qmin, h->i_lavc_qmax, h->i_lavc_maxqdiff, h->i_seekable_offset,
renatofilho@608
   606
      h->i_keyframe_adjust_offset);
renatofilho@608
   607
renatofilho@608
   608
done:
renatofilho@608
   609
  if (buff != NULL) {
renatofilho@608
   610
    gst_buffer_unref (buff);
renatofilho@608
   611
    buff = NULL;
renatofilho@608
   612
  }
renatofilho@608
   613
  return res;
renatofilho@608
   614
}
renatofilho@608
   615
renatofilho@608
   616
renatofilho@608
   617
/* Query Functions */
renatofilho@608
   618
static const GstQueryType *
renatofilho@608
   619
gst_nuv_demux_get_src_query_types (GstPad * pad)
renatofilho@608
   620
{
renatofilho@608
   621
  static const GstQueryType src_types[] = {
renatofilho@608
   622
    GST_QUERY_POSITION,
renatofilho@608
   623
    GST_QUERY_DURATION,
renatofilho@608
   624
    0
renatofilho@608
   625
  };
renatofilho@608
   626
renatofilho@608
   627
  return src_types;
renatofilho@608
   628
}
renatofilho@608
   629
renatofilho@608
   630
static gboolean
renatofilho@608
   631
gst_nuv_demux_handle_src_query (GstPad * pad, GstQuery * query)
renatofilho@608
   632
{
renatofilho@608
   633
  gboolean res = FALSE;
renatofilho@608
   634
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@608
   635
renatofilho@674
   636
renatofilho@674
   637
  switch (GST_QUERY_TYPE (query)) 
renatofilho@674
   638
  {
renatofilho@608
   639
    case GST_QUERY_POSITION:
renatofilho@674
   640
	{
renatofilho@674
   641
		GstFormat format;
renatofilho@674
   642
		gst_query_parse_position (query, &format, NULL); 
renatofilho@674
   643
		switch (format) 
renatofilho@674
   644
		{
renatofilho@674
   645
			case GST_FORMAT_TIME:
renatofilho@674
   646
				if (GST_CLOCK_TIME_IS_VALID (nuv->priv->last_frame_time)) {
renatofilho@674
   647
			        gst_query_set_position (query, GST_FORMAT_TIME, nuv->priv->last_frame_time);
renatofilho@674
   648
			        res = TRUE;
renatofilho@674
   649
				}
renatofilho@674
   650
			  	break;
renatofilho@674
   651
			default:				
renatofilho@674
   652
				break;
renatofilho@674
   653
		}
renatofilho@674
   654
		break;
renatofilho@674
   655
	}		
renatofilho@608
   656
    case GST_QUERY_DURATION:
renatofilho@674
   657
	{
renatofilho@674
   658
	  GstFormat format;		
renatofilho@674
   659
	  gst_query_parse_duration (query, &format, NULL); 
renatofilho@674
   660
	  switch (format)
renatofilho@674
   661
	  {
renatofilho@674
   662
			case GST_FORMAT_TIME:			 
renatofilho@674
   663
				if (nuv->priv->duration_time != GST_CLOCK_TIME_NONE) {
renatofilho@674
   664
			        gst_query_set_duration (query, GST_FORMAT_TIME, nuv->priv->duration_time);
renatofilho@674
   665
				    res = TRUE;
renatofilho@674
   666
			    }
renatofilho@674
   667
				break;
renatofilho@674
   668
			default:				
renatofilho@674
   669
			    break;
renatofilho@674
   670
	  }
renatofilho@674
   671
	  break;
renatofilho@674
   672
  	}
renatofilho@674
   673
	default:
renatofilho@674
   674
	  break;
renatofilho@608
   675
  }
renatofilho@608
   676
renatofilho@674
   677
  if (res==FALSE) {
renatofilho@674
   678
	res = gst_pad_query_default (pad, query);		  
renatofilho@674
   679
  } 
renatofilho@674
   680
renatofilho@608
   681
  gst_object_unref (nuv);
renatofilho@608
   682
  return res;
renatofilho@608
   683
}
renatofilho@608
   684
renatofilho@608
   685
static GstPad*
renatofilho@608
   686
gst_nuv_demux_create_pad (GstNuvDemux *nuv, GstCaps *caps, GstStaticPadTemplate *template, const gchar* name)
renatofilho@608
   687
{
renatofilho@608
   688
    GstPad *pad = NULL;
renatofilho@608
   689
    pad = gst_pad_new_from_static_template (template, name);
renatofilho@608
   690
    gst_pad_set_caps (pad, caps);
renatofilho@608
   691
    gst_pad_set_active (pad, TRUE);
renatofilho@608
   692
    gst_pad_use_fixed_caps (pad);
renatofilho@608
   693
    gst_element_add_pad (GST_ELEMENT (nuv), pad);
renatofilho@608
   694
renatofilho@608
   695
    gst_pad_set_event_function (pad,
renatofilho@608
   696
      GST_DEBUG_FUNCPTR (gst_nuv_demux_srcpad_event));
renatofilho@608
   697
renatofilho@608
   698
    gst_pad_set_query_type_function (pad,
renatofilho@608
   699
      GST_DEBUG_FUNCPTR (gst_nuv_demux_get_src_query_types));
renatofilho@608
   700
renatofilho@608
   701
    gst_pad_set_query_function (pad,
renatofilho@608
   702
      GST_DEBUG_FUNCPTR (gst_nuv_demux_handle_src_query));
renatofilho@608
   703
      
renatofilho@608
   704
renatofilho@608
   705
    return pad;
renatofilho@608
   706
}
renatofilho@608
   707
renatofilho@608
   708
static void
renatofilho@608
   709
gst_nuv_demux_create_pads (GstNuvDemux * nuv)
renatofilho@608
   710
{
renatofilho@608
   711
  if (nuv->priv->h.i_video_blocks != 0) {
renatofilho@608
   712
    GstCaps *video_caps = NULL;
renatofilho@608
   713
renatofilho@608
   714
    video_caps = gst_caps_new_simple ("video/x-divx",
renatofilho@608
   715
        "divxversion", G_TYPE_INT, 4,
renatofilho@608
   716
        "width", G_TYPE_INT, nuv->priv->h.i_width,
renatofilho@608
   717
        "height", G_TYPE_INT, nuv->priv->h.i_height,
renatofilho@608
   718
        "framerate", GST_TYPE_FRACTION, nuv->priv->h.i_fpsn, nuv->priv->h.i_fpsd,
renatofilho@608
   719
        "format", GST_TYPE_FOURCC, nuv->priv->eh.i_video_fcc,
renatofilho@608
   720
        "pixel-aspect-ratio", GST_TYPE_FRACTION,
renatofilho@608
   721
        (gint) (nuv->priv->h.d_aspect * 1000.0f), 1000, NULL);
renatofilho@608
   722
renatofilho@608
   723
    nuv->priv->src_video_pad = gst_nuv_demux_create_pad (nuv, video_caps, &video_src_template, "video_src");
renatofilho@608
   724
    gst_caps_unref (video_caps);
renatofilho@608
   725
  }
renatofilho@608
   726
renatofilho@608
   727
  if (nuv->priv->h.i_audio_blocks != 0) {
renatofilho@608
   728
    GstCaps *audio_caps = NULL;
renatofilho@608
   729
renatofilho@608
   730
    audio_caps = gst_caps_new_simple ("audio/mpeg",
renatofilho@608
   731
        "rate", G_TYPE_INT, nuv->priv->eh.i_audio_sample_rate,
renatofilho@608
   732
        "format", GST_TYPE_FOURCC, nuv->priv->eh.i_audio_fcc,
renatofilho@608
   733
        "channels", G_TYPE_INT, nuv->priv->eh.i_audio_channels,
renatofilho@608
   734
        "layer", G_TYPE_INT, 3, // fixme: magic number
renatofilho@608
   735
        "mpegversion", G_TYPE_INT, nuv->priv->eh.i_version, NULL);
renatofilho@608
   736
    
renatofilho@608
   737
    nuv->priv->src_audio_pad = gst_nuv_demux_create_pad (nuv, audio_caps, &audio_src_template, "audio_src");
renatofilho@608
   738
    gst_caps_unref (audio_caps);
renatofilho@608
   739
  }
renatofilho@608
   740
renatofilho@608
   741
  gst_element_no_more_pads (GST_ELEMENT (nuv));
renatofilho@608
   742
}
renatofilho@608
   743
renatofilho@608
   744
static gboolean
renatofilho@608
   745
gst_nuv_demux_validate_header (nuv_frame_header *h)
renatofilho@608
   746
{
renatofilho@608
   747
  gboolean valid = FALSE;
renatofilho@608
   748
  //g_usleep (1 * G_USEC_PER_SEC );
renatofilho@608
   749
  switch  (h->i_type) {
renatofilho@608
   750
/*
renatofilho@608
   751
    case 'V':
renatofilho@608
   752
      if (h->i_compression == 0 ||
renatofilho@608
   753
          h->i_compression == 1 ||
renatofilho@608
   754
          h->i_compression == 2 ||
renatofilho@608
   755
          h->i_compression == 'N' ||
renatofilho@608
   756
          h->i_compression == 'L') {
renatofilho@608
   757
         valid = TRUE;
renatofilho@608
   758
      }
renatofilho@608
   759
      break;
renatofilho@608
   760
    case 'A':
renatofilho@608
   761
      if (h->i_compression == 0 ||
renatofilho@608
   762
          h->i_compression == 1 ||
renatofilho@608
   763
          h->i_compression == 2 ||
renatofilho@608
   764
          h->i_compression == 3 ||
renatofilho@608
   765
          h->i_compression == 'F' ||
renatofilho@608
   766
          h->i_compression == 'S' ||
renatofilho@608
   767
          h->i_compression == 'N' ||
renatofilho@608
   768
          h->i_compression == 'L') {
renatofilho@608
   769
         valid = TRUE;
renatofilho@608
   770
      }
renatofilho@608
   771
      break;
renatofilho@608
   772
    case 'S':
renatofilho@608
   773
      if (h->i_compression == 'B' ||
renatofilho@608
   774
          h->i_compression == 'A' ||
renatofilho@608
   775
          h->i_compression == 'V' ||
renatofilho@608
   776
          h->i_compression == 'S') {
renatofilho@608
   777
         valid = TRUE;
renatofilho@608
   778
      }
renatofilho@608
   779
      break;
renatofilho@608
   780
*/
renatofilho@608
   781
    case 'A':
renatofilho@608
   782
    case 'V':
renatofilho@608
   783
    case 'S':
renatofilho@608
   784
    case 'R':
renatofilho@608
   785
    case 'D':
renatofilho@608
   786
    case 'Q':
renatofilho@608
   787
      valid  = TRUE;
renatofilho@608
   788
      break;
renatofilho@608
   789
    default:
renatofilho@608
   790
      valid = FALSE;
renatofilho@608
   791
  }
renatofilho@608
   792
renatofilho@608
   793
  return valid;
renatofilho@608
   794
}
renatofilho@608
   795
renatofilho@608
   796
static GstFlowReturn
renatofilho@608
   797
gst_nuv_demux_read_head_frame (GstNuvDemux * nuv)
renatofilho@608
   798
{
renatofilho@608
   799
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
   800
  gboolean valid = FALSE;
renatofilho@608
   801
renatofilho@608
   802
  do {
renatofilho@608
   803
    ret = gst_nuv_demux_frame_header_load (nuv, &nuv->priv->fh);
renatofilho@608
   804
    if (ret != GST_FLOW_OK) {
renatofilho@608
   805
      return ret;
renatofilho@608
   806
    }
renatofilho@608
   807
renatofilho@608
   808
    if (gst_nuv_demux_validate_header (&nuv->priv->fh) == TRUE)
renatofilho@608
   809
      valid = TRUE;
renatofilho@608
   810
renatofilho@608
   811
  } while (valid == FALSE);
renatofilho@608
   812
renatofilho@608
   813
  nuv->priv->state = GST_NUV_DEMUX_MOVI;
renatofilho@608
   814
  return ret;
renatofilho@608
   815
}
renatofilho@608
   816
renatofilho@608
   817
static gboolean
renatofilho@608
   818
gst_nuv_combine_flow (GstNuvDemux *nuv)
renatofilho@608
   819
{
renatofilho@608
   820
    GstFlowReturn ret_video = nuv->priv->last_video_return;
renatofilho@608
   821
    GstFlowReturn ret_audio = nuv->priv->last_audio_return;
renatofilho@608
   822
renatofilho@608
   823
    if ((ret_video != GST_FLOW_OK) &&
renatofilho@608
   824
        (ret_audio != GST_FLOW_OK))
renatofilho@608
   825
        return FALSE;
renatofilho@608
   826
renatofilho@608
   827
    if (GST_FLOW_IS_FATAL (ret_video))
renatofilho@608
   828
        return FALSE;
renatofilho@608
   829
renatofilho@608
   830
    if (GST_FLOW_IS_FATAL (ret_audio))
renatofilho@608
   831
        return FALSE;
renatofilho@608
   832
renatofilho@608
   833
    return TRUE;
renatofilho@608
   834
}
renatofilho@608
   835
renatofilho@608
   836
static GstFlowReturn
renatofilho@608
   837
gst_nuv_demux_stream_data (GstNuvDemux * nuv)
renatofilho@608
   838
{
renatofilho@608
   839
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
   840
  GstPad *pad = NULL;
renatofilho@608
   841
  guint64 timestamp;
renatofilho@608
   842
  GstBuffer *buf = NULL;
renatofilho@608
   843
  nuv_frame_header h;
renatofilho@608
   844
renatofilho@608
   845
  h = nuv->priv->fh;
renatofilho@608
   846
renatofilho@608
   847
  if (h.i_type == 'R') {
renatofilho@608
   848
    goto done;
renatofilho@608
   849
  }
renatofilho@608
   850
renatofilho@608
   851
  if (h.i_length > 0) {
renatofilho@608
   852
    ret = gst_nuv_demux_read_bytes (nuv, h.i_length, TRUE, &buf);
renatofilho@608
   853
    if ((ret != GST_FLOW_OK) || (buf == NULL)) {
renatofilho@608
   854
      goto done;
renatofilho@608
   855
    }
renatofilho@608
   856
renatofilho@608
   857
    if ((h.i_timecode < 0)) {
renatofilho@608
   858
      h.i_timecode = 0;
renatofilho@608
   859
      //goto done;
renatofilho@608
   860
    }
renatofilho@608
   861
renatofilho@608
   862
    timestamp = h.i_timecode * GST_MSECOND;
renatofilho@608
   863
    GST_BUFFER_TIMESTAMP (buf) = timestamp;
renatofilho@608
   864
  }
renatofilho@608
   865
  else {
renatofilho@608
   866
    goto done;
renatofilho@608
   867
  }
renatofilho@608
   868
renatofilho@608
   869
renatofilho@608
   870
  switch (h.i_type) {
renatofilho@608
   871
    case 'V':
renatofilho@608
   872
    {
renatofilho@608
   873
      pad = nuv->priv->src_video_pad;
renatofilho@608
   874
renatofilho@608
   875
      if (nuv->priv->new_video_segment) {
renatofilho@608
   876
renatofilho@608
   877
        /* send new segment event*/
renatofilho@608
   878
        gst_pad_push_event (nuv->priv->src_video_pad,
renatofilho@608
   879
          gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@608
   880
                                     GST_CLOCK_TIME_NONE, 0));
renatofilho@608
   881
renatofilho@608
   882
        if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
renatofilho@608
   883
            nuv->priv->time_start = timestamp;
renatofilho@608
   884
        }
renatofilho@608
   885
        nuv->priv->new_video_segment = FALSE;
renatofilho@608
   886
      }
renatofilho@608
   887
renatofilho@608
   888
      break;
renatofilho@608
   889
    }
renatofilho@608
   890
    case 'A':
renatofilho@608
   891
    {
renatofilho@608
   892
      pad = nuv->priv->src_audio_pad;
renatofilho@608
   893
renatofilho@608
   894
      if (nuv->priv->new_audio_segment) {
renatofilho@608
   895
        /* send new segment event*/
renatofilho@608
   896
        gst_pad_push_event (nuv->priv->src_audio_pad,
renatofilho@608
   897
          gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@608
   898
                                     GST_CLOCK_TIME_NONE, 0));
renatofilho@608
   899
renatofilho@608
   900
        if (nuv->priv->time_start == GST_CLOCK_TIME_NONE) {
renatofilho@608
   901
            nuv->priv->time_start = timestamp;
renatofilho@608
   902
        }
renatofilho@608
   903
        nuv->priv->new_audio_segment = FALSE;
renatofilho@608
   904
      }
renatofilho@608
   905
renatofilho@608
   906
      break;
renatofilho@608
   907
    }
renatofilho@608
   908
    case 'S':
renatofilho@608
   909
   {
renatofilho@608
   910
      switch (h.i_compression) {
renatofilho@608
   911
        case 'V':
renatofilho@608
   912
          GST_DEBUG_OBJECT (nuv, "sending new video segment: %d", h.i_timecode);
renatofilho@608
   913
          gst_pad_push_event (nuv->priv->src_video_pad,
renatofilho@608
   914
              gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, h.i_timecode * GST_MSECOND,
renatofilho@608
   915
              		GST_CLOCK_TIME_NONE, 0));
renatofilho@608
   916
          break;
renatofilho@608
   917
        case 'A':
renatofilho@608
   918
          GST_DEBUG_OBJECT (nuv, "sending new audio segment: %d", h.i_timecode);
renatofilho@608
   919
          gst_pad_push_event (nuv->priv->src_audio_pad,
renatofilho@608
   920
              gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@608
   921
              		GST_CLOCK_TIME_NONE, 0));
renatofilho@608
   922
          break;
renatofilho@608
   923
        default:
renatofilho@608
   924
          break;
renatofilho@608
   925
      }
renatofilho@608
   926
      goto done;
renatofilho@608
   927
    }
renatofilho@608
   928
    default:
renatofilho@608
   929
      break;
renatofilho@608
   930
  }
renatofilho@608
   931
renatofilho@608
   932
  if ((buf != NULL) && (pad != NULL)) {
renatofilho@608
   933
      /* pushing the buffer */
renatofilho@608
   934
      gst_buffer_set_caps (buf, GST_PAD_CAPS (pad));
renatofilho@608
   935
      ret = gst_pad_push (pad, buf);
renatofilho@608
   936
      buf = NULL;
renatofilho@608
   937
renatofilho@608
   938
      if (ret != GST_FLOW_OK) {
renatofilho@608
   939
        GST_WARNING_OBJECT (nuv, "error: %d pushing on srcpad %s", ret, gst_pad_get_name (pad));
renatofilho@608
   940
renatofilho@608
   941
        if (pad == nuv->priv->src_video_pad) {
renatofilho@608
   942
            nuv->priv->last_video_return = ret;
renatofilho@608
   943
        }
renatofilho@608
   944
        else if (pad == nuv->priv->src_audio_pad) {
renatofilho@608
   945
            nuv->priv->last_audio_return = ret;
renatofilho@608
   946
        }
renatofilho@608
   947
renatofilho@608
   948
        /* verify anothers flow if is necessary stop task */
renatofilho@608
   949
        if (gst_nuv_combine_flow (nuv) != FALSE) {
renatofilho@608
   950
          ret = GST_FLOW_OK;
renatofilho@608
   951
        } else {
renatofilho@608
   952
	  GST_WARNING_OBJECT (nuv, "error: on push");
renatofilho@608
   953
	}
renatofilho@608
   954
renatofilho@608
   955
      }
renatofilho@608
   956
  } 
renatofilho@608
   957
renatofilho@608
   958
done:
renatofilho@608
   959
  if (buf != NULL) {
renatofilho@608
   960
      gst_buffer_unref (buf);
renatofilho@608
   961
      buf = NULL;
renatofilho@608
   962
  }
renatofilho@608
   963
  if (ret == GST_FLOW_OK) {
renatofilho@608
   964
     nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@608
   965
     memset (&nuv->priv->fh, 0, sizeof (nuv->priv->fh));
renatofilho@608
   966
  }
renatofilho@608
   967
  return ret;
renatofilho@608
   968
}
renatofilho@608
   969
renatofilho@608
   970
static GstFlowReturn
renatofilho@608
   971
gst_nuv_demux_stream_mpeg_data (GstNuvDemux * nuv)
renatofilho@608
   972
{
renatofilho@608
   973
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
   974
renatofilho@608
   975
  /* ffmpeg extra data */
renatofilho@714
   976
  if (nuv->priv->new_file) {
renatofilho@714
   977
	GstBuffer *buf;
renatofilho@714
   978
	ret = gst_nuv_demux_read_bytes (nuv, nuv->priv->mpeg_data_size, TRUE, &buf);
renatofilho@714
   979
	gst_buffer_unref (buf);
renatofilho@714
   980
  } else {
renatofilho@714
   981
    ret = gst_nuv_demux_read_bytes (nuv, nuv->priv->mpeg_data_size, TRUE,
renatofilho@608
   982
      &nuv->priv->mpeg_buffer);
renatofilho@714
   983
  }
renatofilho@714
   984
renatofilho@608
   985
  if ((ret != GST_FLOW_OK) || (nuv->priv->mpeg_buffer == NULL)) {
renatofilho@608
   986
    return ret;
renatofilho@608
   987
  }
renatofilho@608
   988
renatofilho@608
   989
  GST_BUFFER_SIZE (nuv->priv->mpeg_buffer) = nuv->priv->mpeg_data_size;
renatofilho@608
   990
  nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
renatofilho@608
   991
  return ret;
renatofilho@608
   992
}
renatofilho@608
   993
renatofilho@608
   994
static GstFlowReturn
renatofilho@608
   995
gst_nuv_demux_stream_extra_data (GstNuvDemux * nuv)
renatofilho@608
   996
{
renatofilho@608
   997
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
   998
renatofilho@608
   999
  /* Load 'D' */
renatofilho@608
  1000
  nuv_frame_header h;
renatofilho@608
  1001
renatofilho@714
  1002
  if (nuv->priv->new_file) 
renatofilho@714
  1003
	  ret = gst_nuv_demux_frame_header_load (nuv, NULL);
renatofilho@714
  1004
  else		  
renatofilho@714
  1005
	  ret = gst_nuv_demux_frame_header_load (nuv, &h);
renatofilho@714
  1006
renatofilho@608
  1007
  if (ret != GST_FLOW_OK)
renatofilho@608
  1008
    return ret;
renatofilho@608
  1009
renatofilho@608
  1010
  if (h.i_type != 'D') {
renatofilho@608
  1011
    GST_WARNING_OBJECT (nuv, "Unsuported rtjpeg");
renatofilho@608
  1012
    return GST_FLOW_NOT_SUPPORTED;
renatofilho@608
  1013
  }
renatofilho@608
  1014
renatofilho@608
  1015
  if (h.i_length > 0) {
renatofilho@608
  1016
    if (h.i_compression == 'F') {
renatofilho@608
  1017
      nuv->priv->state = GST_NUV_DEMUX_MPEG_DATA;
renatofilho@608
  1018
    } else {
renatofilho@608
  1019
      GST_WARNING_OBJECT (nuv, "only file with extended chunk are supported");
renatofilho@608
  1020
      return GST_FLOW_NOT_SUPPORTED;
renatofilho@608
  1021
    }
renatofilho@608
  1022
  } else {
renatofilho@608
  1023
    nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER;
renatofilho@608
  1024
  }
renatofilho@608
  1025
renatofilho@608
  1026
  return ret;
renatofilho@608
  1027
}
renatofilho@608
  1028
renatofilho@608
  1029
static GstFlowReturn
renatofilho@608
  1030
gst_nuv_demux_stream_extend_header_data (GstNuvDemux * nuv)
renatofilho@608
  1031
{
renatofilho@608
  1032
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
  1033
renatofilho@714
  1034
  if (nuv->priv->new_file)
renatofilho@714
  1035
	  ret = gst_nuv_demux_extended_header_load (nuv, NULL);
renatofilho@714
  1036
  else { 
renatofilho@714
  1037
	  ret = gst_nuv_demux_extended_header_load (nuv, &nuv->priv->eh);
renatofilho@714
  1038
	  if (ret != GST_FLOW_OK)
renatofilho@714
  1039
    	return ret;
renatofilho@714
  1040
	  gst_nuv_demux_create_pads (nuv);
renatofilho@714
  1041
  }
renatofilho@608
  1042
renatofilho@608
  1043
  nuv->priv->state = GST_NUV_DEMUX_INDEX_CREATE;
renatofilho@608
  1044
  return ret;
renatofilho@608
  1045
}
renatofilho@608
  1046
renatofilho@608
  1047
static GstFlowReturn
renatofilho@608
  1048
gst_nuv_demux_stream_extend_header (GstNuvDemux * nuv)
renatofilho@608
  1049
{
renatofilho@608
  1050
  GstBuffer *buf = NULL;
renatofilho@608
  1051
  GstFlowReturn res = GST_FLOW_OK;
renatofilho@608
  1052
renatofilho@608
  1053
  res = gst_nuv_demux_read_bytes (nuv, 1, FALSE, &buf);
renatofilho@608
  1054
  if ((res != GST_FLOW_OK) || (buf == NULL)) {
renatofilho@608
  1055
    if (buf != NULL) {
renatofilho@608
  1056
      gst_buffer_unref (buf);
renatofilho@608
  1057
    }
renatofilho@608
  1058
    return res;
renatofilho@608
  1059
  }
renatofilho@608
  1060
renatofilho@608
  1061
  if (buf->data[0] == 'X') {
renatofilho@608
  1062
    gst_buffer_unref (buf);
renatofilho@608
  1063
    buf = NULL;
renatofilho@608
  1064
    nuv_frame_header h;
renatofilho@608
  1065
renatofilho@608
  1066
    res = gst_nuv_demux_frame_header_load (nuv, &h);
renatofilho@608
  1067
    if (res != GST_FLOW_OK)
renatofilho@608
  1068
      return res;
renatofilho@608
  1069
renatofilho@608
  1070
    if (h.i_length != 512) {
renatofilho@608
  1071
      return GST_FLOW_ERROR;
renatofilho@608
  1072
    }
renatofilho@608
  1073
    nuv->priv->state = GST_NUV_DEMUX_EXTEND_HEADER_DATA;
renatofilho@608
  1074
  } else {
renatofilho@608
  1075
    nuv->priv->state = GST_NUV_DEMUX_INVALID_DATA;
renatofilho@608
  1076
    g_object_unref (buf);
renatofilho@608
  1077
    GST_ELEMENT_WARNING (nuv, STREAM, FAILED,
renatofilho@608
  1078
        (_("incomplete NUV support")), ("incomplete NUV support"));
renatofilho@608
  1079
    return GST_FLOW_ERROR;
renatofilho@608
  1080
  }
renatofilho@608
  1081
  return res;
renatofilho@608
  1082
}
renatofilho@608
  1083
renatofilho@608
  1084
static void
renatofilho@608
  1085
gst_nuv_demux_create_seek_index (GstNuvDemux * nuv)
renatofilho@608
  1086
{
renatofilho@608
  1087
  GstMessage *msg;
renatofilho@608
  1088
  nuv_frame_header h;
renatofilho@608
  1089
renatofilho@608
  1090
  while (gst_nuv_demux_frame_header_load (nuv, &h) == GST_FLOW_OK) {
renatofilho@608
  1091
    if ((h.i_type == 'V') && (h.i_keyframe == 0)) {
renatofilho@608
  1092
      frame_index_data *f = g_new0 (frame_index_data, 1);
renatofilho@608
  1093
renatofilho@608
  1094
      f->offset = nuv->priv->offset - 12;
renatofilho@608
  1095
      f->timecode = h.i_timecode * GST_MSECOND;
renatofilho@608
  1096
renatofilho@608
  1097
      nuv->priv->index = g_slist_append (nuv->priv->index, f);
renatofilho@608
  1098
    } 
renatofilho@608
  1099
    if (h.i_type != 'R') {
renatofilho@608
  1100
      nuv->priv->offset += h.i_length;
renatofilho@608
  1101
		  if (h.i_type == 'A' || h.i_type == 'V')
renatofilho@608
  1102
  		  nuv->priv->duration_time = h.i_timecode * GST_MSECOND;
renatofilho@608
  1103
    }
renatofilho@608
  1104
  }
renatofilho@608
  1105
  GST_DEBUG_OBJECT  (nuv, "CREATING INDEX: DONE : DURATION Bytes/Sec: %" G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT, 
renatofilho@608
  1106
    nuv->priv->offset, nuv->priv->duration_time);
renatofilho@608
  1107
  
renatofilho@608
  1108
  nuv->priv->duration_bytes = nuv->priv->offset;
renatofilho@608
  1109
  nuv->priv->offset = nuv->priv->header_lengh;
renatofilho@608
  1110
renatofilho@608
  1111
  msg = gst_message_new_duration (GST_OBJECT (nuv), GST_FORMAT_TIME, nuv->priv->duration_time);
renatofilho@608
  1112
  gst_element_post_message (GST_ELEMENT (nuv), msg);
renatofilho@608
  1113
}
renatofilho@608
  1114
renatofilho@608
  1115
static GstFlowReturn
renatofilho@608
  1116
gst_nuv_demux_play (GstPad * pad)
renatofilho@608
  1117
{
renatofilho@608
  1118
  GstFlowReturn res = GST_FLOW_OK;
renatofilho@608
  1119
  GstNuvDemux *nuv = GST_NUV_DEMUX (GST_PAD_PARENT (pad));
renatofilho@608
  1120
renatofilho@608
  1121
  switch (nuv->priv->state) {
renatofilho@608
  1122
    case GST_NUV_DEMUX_START:
renatofilho@608
  1123
      res = gst_nuv_demux_stream_file_header (nuv);
renatofilho@608
  1124
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1125
        goto pause;
renatofilho@608
  1126
      }
renatofilho@608
  1127
      break;
renatofilho@608
  1128
renatofilho@608
  1129
    case GST_NUV_DEMUX_HEADER_DATA:
renatofilho@608
  1130
      res = gst_nuv_demux_stream_header_data (nuv);
renatofilho@608
  1131
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1132
        goto pause;
renatofilho@608
  1133
      }
renatofilho@608
  1134
      break;
renatofilho@608
  1135
renatofilho@608
  1136
    case GST_NUV_DEMUX_EXTRA_DATA:
renatofilho@608
  1137
      res = gst_nuv_demux_stream_extra_data (nuv);
renatofilho@608
  1138
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1139
        goto pause;
renatofilho@608
  1140
      }
renatofilho@608
  1141
      break;
renatofilho@608
  1142
renatofilho@608
  1143
    case GST_NUV_DEMUX_MPEG_DATA:
renatofilho@608
  1144
      res = gst_nuv_demux_stream_mpeg_data (nuv);
renatofilho@608
  1145
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1146
        goto pause;
renatofilho@608
  1147
      }
renatofilho@608
  1148
      break;
renatofilho@608
  1149
renatofilho@608
  1150
    case GST_NUV_DEMUX_EXTEND_HEADER:
renatofilho@608
  1151
      res = gst_nuv_demux_stream_extend_header (nuv);
renatofilho@608
  1152
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1153
        goto pause;
renatofilho@608
  1154
      }
renatofilho@608
  1155
      break;
renatofilho@608
  1156
renatofilho@608
  1157
    case GST_NUV_DEMUX_EXTEND_HEADER_DATA:
renatofilho@608
  1158
      res = gst_nuv_demux_stream_extend_header_data (nuv);
renatofilho@608
  1159
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1160
        goto pause;
renatofilho@608
  1161
      }
renatofilho@608
  1162
      //store file header size
renatofilho@608
  1163
      nuv->priv->header_lengh = nuv->priv->offset;
renatofilho@608
  1164
      break;
renatofilho@608
  1165
renatofilho@608
  1166
    case GST_NUV_DEMUX_INDEX_CREATE:
renatofilho@714
  1167
      if ((nuv->priv->mode == NUV_PULL_MODE) && (!nuv->priv->new_file)) {
renatofilho@608
  1168
        gst_nuv_demux_create_seek_index (nuv);
renatofilho@608
  1169
      }
renatofilho@608
  1170
renatofilho@608
  1171
    case GST_NUV_DEMUX_FRAME_HEADER:
renatofilho@608
  1172
      res = gst_nuv_demux_read_head_frame (nuv);
renatofilho@608
  1173
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1174
        goto pause;
renatofilho@608
  1175
      }
renatofilho@608
  1176
      break;
renatofilho@608
  1177
renatofilho@608
  1178
    case GST_NUV_DEMUX_MOVI: 
renatofilho@608
  1179
      res = gst_nuv_demux_stream_data (nuv);
renatofilho@608
  1180
      if ((res != GST_FLOW_OK) && (res != GST_FLOW_ERROR_NO_DATA)) {
renatofilho@608
  1181
        goto pause;
renatofilho@608
  1182
      }
renatofilho@608
  1183
      break;
renatofilho@608
  1184
renatofilho@608
  1185
    case GST_NUV_DEMUX_INVALID_DATA:
renatofilho@608
  1186
      goto pause;
renatofilho@608
  1187
      break;
renatofilho@608
  1188
    default:
renatofilho@608
  1189
      g_assert_not_reached ();
renatofilho@608
  1190
  }
renatofilho@608
  1191
renatofilho@608
  1192
  return GST_FLOW_OK;
renatofilho@608
  1193
renatofilho@608
  1194
pause:
renatofilho@608
  1195
  GST_LOG_OBJECT (nuv, "pausing task, reason %s", gst_flow_get_name (res));
renatofilho@608
  1196
  gst_pad_pause_task (nuv->priv->sinkpad);
renatofilho@608
  1197
renatofilho@608
  1198
  if (res == GST_FLOW_ERROR_EOS) {
renatofilho@608
  1199
    gst_nuv_demux_send_eos (nuv);
renatofilho@608
  1200
    nuv->priv->eos = TRUE;
renatofilho@608
  1201
    res = GST_FLOW_OK;
renatofilho@608
  1202
  }
renatofilho@608
  1203
renatofilho@608
  1204
  if (GST_FLOW_IS_FATAL (res)) {
renatofilho@608
  1205
    GST_ELEMENT_ERROR (nuv, STREAM, FAILED,
renatofilho@608
  1206
        (_("Internal data stream error.")),
renatofilho@608
  1207
        ("streaming stopped, reason %s", gst_flow_get_name (res)));
renatofilho@608
  1208
renatofilho@608
  1209
    gst_nuv_demux_send_eos (nuv);
renatofilho@608
  1210
  }
renatofilho@608
  1211
  return res;
renatofilho@608
  1212
}
renatofilho@608
  1213
renatofilho@608
  1214
static void
renatofilho@608
  1215
gst_nuv_demux_send_eos (GstNuvDemux * nuv)
renatofilho@608
  1216
{
renatofilho@608
  1217
  gst_element_post_message (GST_ELEMENT (nuv),
renatofilho@608
  1218
      gst_message_new_segment_done (GST_OBJECT (nuv), GST_FORMAT_TIME, -1));
renatofilho@608
  1219
renatofilho@608
  1220
  if (nuv->priv->src_video_pad)
renatofilho@608
  1221
    gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_eos ());
renatofilho@608
  1222
  if (nuv->priv->src_audio_pad)
renatofilho@608
  1223
    gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_eos ());
renatofilho@608
  1224
}
renatofilho@608
  1225
renatofilho@608
  1226
static GstFlowReturn
renatofilho@608
  1227
gst_nuv_demux_read_bytes (GstNuvDemux * nuv, guint64 size, gboolean move,
renatofilho@608
  1228
    GstBuffer ** buffer)
renatofilho@608
  1229
{
renatofilho@608
  1230
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
  1231
renatofilho@608
  1232
  if (size == 0) {
renatofilho@608
  1233
    return ret;
renatofilho@608
  1234
  }
renatofilho@608
  1235
renatofilho@608
  1236
  if (nuv->priv->mode == NUV_PULL_MODE) {
renatofilho@608
  1237
    ret = gst_pad_pull_range (nuv->priv->sinkpad, nuv->priv->offset, size, buffer);
renatofilho@608
  1238
    if (ret == GST_FLOW_OK) {
renatofilho@608
  1239
      if (move) {
renatofilho@608
  1240
        nuv->priv->offset += size;
renatofilho@608
  1241
      }
renatofilho@608
  1242
      /* got eos */
renatofilho@608
  1243
    } else if (ret == GST_FLOW_UNEXPECTED) {
renatofilho@608
  1244
      return GST_FLOW_ERROR_EOS;
renatofilho@608
  1245
    }
renatofilho@608
  1246
  } else {
renatofilho@608
  1247
    if (gst_adapter_available (nuv->priv->adapter) < size) {
renatofilho@608
  1248
      nuv->priv->more_data = TRUE;
renatofilho@608
  1249
      return GST_FLOW_ERROR_NO_DATA;
renatofilho@608
  1250
    }
renatofilho@608
  1251
    if (move) {
renatofilho@608
  1252
      *buffer = gst_adapter_take_buffer (nuv->priv->adapter, size);
renatofilho@608
  1253
    } else {
renatofilho@608
  1254
      guint8 *data = NULL;
renatofilho@608
  1255
      data = (guint8 *) gst_adapter_peek (nuv->priv->adapter, size);
renatofilho@608
  1256
      *buffer = gst_buffer_new ();
renatofilho@608
  1257
      gst_buffer_set_data (*buffer, data, size);
renatofilho@608
  1258
    }
renatofilho@608
  1259
  }
renatofilho@608
  1260
  return ret;
renatofilho@608
  1261
}
renatofilho@608
  1262
rosfran@713
  1263
static GstFlowReturn
rosfran@713
  1264
gst_nuv_demux_move_bytes (GstNuvDemux * nuv, guint64 size)
rosfran@713
  1265
{
rosfran@713
  1266
  GstFlowReturn ret = GST_FLOW_OK;
rosfran@713
  1267
rosfran@713
  1268
  if (size == 0) {
rosfran@713
  1269
    return ret;
rosfran@713
  1270
  }
rosfran@713
  1271
rosfran@713
  1272
  if (nuv->priv->mode == NUV_PULL_MODE) {
rosfran@713
  1273
      nuv->priv->offset += size;
rosfran@713
  1274
  } else {
rosfran@713
  1275
    if (gst_adapter_available (nuv->priv->adapter) < size) {
rosfran@713
  1276
      nuv->priv->more_data = TRUE;
rosfran@713
  1277
      return GST_FLOW_ERROR_NO_DATA;
rosfran@713
  1278
    }
rosfran@713
  1279
    gst_adapter_flush (nuv->priv->adapter, size);
rosfran@713
  1280
  }
rosfran@713
  1281
  return ret;
rosfran@713
  1282
}
rosfran@713
  1283
renatofilho@608
  1284
static gboolean
renatofilho@608
  1285
gst_nuv_demux_sink_activate (GstPad * sinkpad)
renatofilho@608
  1286
{
renatofilho@608
  1287
  gboolean res = TRUE;
renatofilho@608
  1288
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
renatofilho@608
  1289
 
renatofilho@608
  1290
  if (gst_pad_check_pull_range (sinkpad)) {
renatofilho@608
  1291
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@608
  1292
    res = gst_pad_activate_pull (sinkpad, TRUE);
renatofilho@608
  1293
  } else {
renatofilho@608
  1294
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@608
  1295
    res = gst_pad_activate_push (sinkpad, TRUE);
renatofilho@608
  1296
  }
renatofilho@608
  1297
  
renatofilho@608
  1298
  g_object_unref (nuv);
renatofilho@608
  1299
  return res;
renatofilho@608
  1300
}
renatofilho@608
  1301
renatofilho@608
  1302
static gboolean
renatofilho@608
  1303
gst_nuv_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
renatofilho@608
  1304
{
renatofilho@608
  1305
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
renatofilho@608
  1306
renatofilho@608
  1307
  if (active) {
renatofilho@608
  1308
    GST_DEBUG_OBJECT (nuv, "activating pull function");
renatofilho@608
  1309
    nuv->priv->mode = NUV_PULL_MODE;
renatofilho@608
  1310
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@608
  1311
renatofilho@608
  1312
    gst_pad_start_task (sinkpad, (GstTaskFunction) gst_nuv_demux_loop, sinkpad);
renatofilho@608
  1313
  } else {
renatofilho@608
  1314
    GST_DEBUG_OBJECT (nuv, "deactivating pull function");
renatofilho@608
  1315
    gst_pad_stop_task (sinkpad);
renatofilho@608
  1316
  }
renatofilho@608
  1317
  gst_object_unref (nuv);
renatofilho@608
  1318
renatofilho@608
  1319
  return TRUE;
renatofilho@608
  1320
}
renatofilho@608
  1321
renatofilho@608
  1322
static gboolean
renatofilho@608
  1323
gst_nuv_demux_sink_activate_push (GstPad * pad, gboolean active)
renatofilho@608
  1324
{
renatofilho@608
  1325
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@608
  1326
renatofilho@608
  1327
  if (active) {
renatofilho@608
  1328
    nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@608
  1329
    gst_adapter_clear (nuv->priv->adapter);
renatofilho@608
  1330
renatofilho@608
  1331
    GST_DEBUG_OBJECT (nuv, "activating push/chain function");
renatofilho@608
  1332
  } else {
renatofilho@608
  1333
    GST_DEBUG_OBJECT (nuv, "deactivating push/chain function");
renatofilho@608
  1334
  }
renatofilho@608
  1335
renatofilho@608
  1336
  gst_object_unref (nuv);
renatofilho@608
  1337
renatofilho@608
  1338
  return TRUE;
renatofilho@608
  1339
}
renatofilho@608
  1340
renatofilho@608
  1341
static frame_index_data *
renatofilho@608
  1342
gst_nuv_demux_do_seek_index (GstNuvDemux *nuv, gint64 seek_pos, 
renatofilho@608
  1343
  gint64 segment_stop, GstFormat format)
renatofilho@608
  1344
{
renatofilho@608
  1345
  GSList *l;
renatofilho@608
  1346
  frame_index_data *ret = NULL;
renatofilho@608
  1347
renatofilho@608
  1348
  if (nuv->priv->index == NULL) {
renatofilho@608
  1349
    return NULL;
renatofilho@608
  1350
  }
renatofilho@608
  1351
renatofilho@608
  1352
  /* find keyframe closest to the requested position  */
renatofilho@608
  1353
  for (l = nuv->priv->index; l != NULL; l = l->next) {
renatofilho@608
  1354
    frame_index_data *f = (frame_index_data *) l->data;  
renatofilho@608
  1355
    gint64 pos = 0;
renatofilho@608
  1356
   
renatofilho@608
  1357
    if (format == GST_FORMAT_BYTES) {     
renatofilho@608
  1358
      pos = f->offset;
renatofilho@608
  1359
    } else if (format == GST_FORMAT_TIME) {
renatofilho@608
  1360
      pos = f->timecode;
renatofilho@608
  1361
    } else {
renatofilho@608
  1362
      return NULL;
renatofilho@608
  1363
    }
renatofilho@608
  1364
renatofilho@608
  1365
    if (pos >= seek_pos) {
renatofilho@608
  1366
      ret = f;
renatofilho@608
  1367
      break;
renatofilho@608
  1368
    }
renatofilho@608
  1369
renatofilho@608
  1370
    if ((segment_stop != -1) &&  (segment_stop != GST_CLOCK_TIME_NONE) && (pos > segment_stop)) {
renatofilho@608
  1371
      break;
renatofilho@608
  1372
    }
renatofilho@608
  1373
  } 
renatofilho@608
  1374
renatofilho@608
  1375
  return ret;
renatofilho@608
  1376
}
renatofilho@608
  1377
renatofilho@608
  1378
static gboolean
renatofilho@608
  1379
gst_nuv_demux_do_seek (GstNuvDemux *nuv, GstEvent * event)
renatofilho@608
  1380
{
renatofilho@608
  1381
  gdouble rate;
renatofilho@608
  1382
  GstFormat format;
renatofilho@608
  1383
  GstSeekFlags flags;
renatofilho@608
  1384
  GstSeekType cur_type;
renatofilho@608
  1385
  gint64 cur;
renatofilho@608
  1386
  GstSeekType stop_type;
renatofilho@608
  1387
  gint64 stop;
renatofilho@608
  1388
  gboolean flush;
renatofilho@608
  1389
  frame_index_data *entry;
renatofilho@608
  1390
  gint64 segment_start;
renatofilho@608
  1391
  gint64 segment_stop;
renatofilho@608
  1392
  GstEvent *newsegment_event;
renatofilho@608
  1393
renatofilho@608
  1394
  if (nuv->priv->eos) {
renatofilho@608
  1395
    return FALSE;
renatofilho@608
  1396
  }
renatofilho@608
  1397
renatofilho@608
  1398
  if (nuv->priv->mode == NUV_PUSH_MODE) {
renatofilho@608
  1399
    return FALSE;
renatofilho@608
  1400
  }
renatofilho@608
  1401
renatofilho@608
  1402
renatofilho@608
  1403
  gst_event_parse_seek (event, &rate, &format, &flags,
renatofilho@608
  1404
      &cur_type, &cur, &stop_type, &stop);
renatofilho@608
  1405
renatofilho@608
  1406
renatofilho@608
  1407
renatofilho@608
  1408
/*
renatofilho@608
  1409
  if (format == GST_FORMAT_TIME) {
renatofilho@608
  1410
    GST_DEBUG_OBJECT (nuv, "Can only seek on BYTES");
renatofilho@608
  1411
    return FALSE;
renatofilho@608
  1412
  }
renatofilho@608
  1413
*/
renatofilho@608
  1414
renatofilho@608
  1415
  if (rate <= 0.0) {
renatofilho@608
  1416
    GST_DEBUG_OBJECT (nuv, "Can only seek with positive rate");
renatofilho@608
  1417
    return FALSE;
renatofilho@608
  1418
  }
renatofilho@608
  1419
  
renatofilho@608
  1420
  if (cur_type == GST_SEEK_TYPE_SET) {
renatofilho@608
  1421
    GST_OBJECT_LOCK (nuv);
renatofilho@608
  1422
    if (gst_nuv_demux_do_seek_index (nuv, cur, -1, format) == NULL) {
renatofilho@608
  1423
      GST_DEBUG_OBJECT (nuv, "No matching seek entry in index");
renatofilho@608
  1424
      GST_OBJECT_UNLOCK (nuv);
renatofilho@608
  1425
      return FALSE;
renatofilho@608
  1426
    }
renatofilho@608
  1427
    GST_OBJECT_UNLOCK (nuv);
renatofilho@608
  1428
  }
renatofilho@608
  1429
renatofilho@608
  1430
  flush = !!(flags & GST_SEEK_FLAG_FLUSH);
renatofilho@608
  1431
  
renatofilho@608
  1432
  if (flush) {
renatofilho@608
  1433
    gst_pad_push_event (nuv->priv->sinkpad, gst_event_new_flush_start ());
renatofilho@608
  1434
    if (nuv->priv->src_video_pad != NULL) {
renatofilho@608
  1435
      gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_flush_start ());
renatofilho@608
  1436
    }
renatofilho@608
  1437
renatofilho@608
  1438
    if (nuv->priv->src_audio_pad != NULL) {
renatofilho@608
  1439
      gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_flush_start ());
renatofilho@608
  1440
    }
renatofilho@608
  1441
  }
renatofilho@608
  1442
  else {
renatofilho@608
  1443
    gst_pad_pause_task (nuv->priv->sinkpad);
renatofilho@608
  1444
  }
renatofilho@608
  1445
renatofilho@608
  1446
  GST_PAD_STREAM_LOCK (nuv->priv->sinkpad);
renatofilho@608
  1447
  GST_OBJECT_LOCK (nuv);
renatofilho@608
  1448
renatofilho@608
  1449
renatofilho@608
  1450
  if (cur == GST_CLOCK_TIME_NONE)
renatofilho@608
  1451
    cur = 0;
renatofilho@608
  1452
  if (stop == GST_CLOCK_TIME_NONE)
renatofilho@608
  1453
    stop = nuv->priv->duration_time;
renatofilho@608
  1454
renatofilho@608
  1455
  if (cur_type == GST_SEEK_TYPE_SET)
renatofilho@608
  1456
    segment_start = cur;
renatofilho@608
  1457
  else if (cur_type == GST_SEEK_TYPE_CUR)
renatofilho@608
  1458
    segment_start = nuv->priv->segment_start + cur;
renatofilho@608
  1459
  else
renatofilho@608
  1460
    segment_start = nuv->priv->segment_start;
renatofilho@608
  1461
renatofilho@608
  1462
  if (stop_type == GST_SEEK_TYPE_SET)
renatofilho@608
  1463
    segment_stop = stop;
renatofilho@608
  1464
  else if (stop_type == GST_SEEK_TYPE_CUR)
renatofilho@608
  1465
    segment_stop = nuv->priv->segment_stop + stop;
renatofilho@608
  1466
  else
renatofilho@608
  1467
    segment_stop = nuv->priv->segment_stop;
renatofilho@608
  1468
renatofilho@608
  1469
  segment_start = CLAMP (segment_start, 0, nuv->priv->duration_time);
renatofilho@608
  1470
  segment_stop = CLAMP (segment_stop, 0, nuv->priv->duration_time);
renatofilho@608
  1471
renatofilho@608
  1472
  entry = gst_nuv_demux_do_seek_index (nuv, segment_start,
renatofilho@608
  1473
      segment_stop, format);
renatofilho@608
  1474
renatofilho@608
  1475
  if (entry == NULL) {
renatofilho@608
  1476
    GST_DEBUG_OBJECT (nuv, "No matching seek entry in index");
renatofilho@608
  1477
    goto seek_error;
renatofilho@608
  1478
  }
renatofilho@608
  1479
renatofilho@608
  1480
  segment_start = entry->timecode;
renatofilho@608
  1481
renatofilho@608
  1482
  nuv->priv->segment_start = segment_start;
renatofilho@608
  1483
  nuv->priv->segment_stop = segment_stop;
renatofilho@608
  1484
renatofilho@608
  1485
  GST_OBJECT_UNLOCK (nuv);
renatofilho@608
  1486
renatofilho@608
  1487
  if (!nuv->priv->eos) {
renatofilho@608
  1488
    GstMessage *msg;
renatofilho@608
  1489
    msg = gst_message_new_segment_start (GST_OBJECT (nuv), GST_FORMAT_TIME,
renatofilho@608
  1490
      nuv->priv->segment_start);
renatofilho@608
  1491
  
renatofilho@608
  1492
    gst_element_post_message (GST_ELEMENT (nuv), msg);
renatofilho@608
  1493
  }
renatofilho@608
  1494
renatofilho@608
  1495
  GST_DEBUG_OBJECT (nuv, "NEW SEGMENT START %" G_GUINT64_FORMAT ", STOP %" G_GUINT64_FORMAT, 
renatofilho@608
  1496
    segment_start, segment_stop);
renatofilho@608
  1497
  newsegment_event = gst_event_new_new_segment (FALSE, rate,
renatofilho@608
  1498
    GST_FORMAT_TIME, segment_start, segment_stop, segment_start);
renatofilho@608
  1499
renatofilho@608
  1500
renatofilho@608
  1501
  if (flush) {
renatofilho@608
  1502
    if (nuv->priv->src_video_pad != NULL) {
renatofilho@608
  1503
      gst_pad_push_event (nuv->priv->src_video_pad, gst_event_new_flush_stop ());
renatofilho@608
  1504
    }
renatofilho@608
  1505
renatofilho@608
  1506
    if (nuv->priv->src_audio_pad != NULL) {
renatofilho@608
  1507
      gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_new_flush_stop ());
renatofilho@608
  1508
    }
renatofilho@608
  1509
renatofilho@608
  1510
    gst_pad_push_event (nuv->priv->sinkpad, gst_event_new_flush_stop ());
renatofilho@608
  1511
  }
renatofilho@608
  1512
renatofilho@608
  1513
  
renatofilho@608
  1514
  if (nuv->priv->src_video_pad != NULL) {
renatofilho@608
  1515
    gst_pad_push_event (nuv->priv->src_video_pad, gst_event_ref (newsegment_event));
renatofilho@608
  1516
  }
renatofilho@608
  1517
  if (nuv->priv->src_audio_pad != NULL) {
renatofilho@608
  1518
    gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_ref (newsegment_event));
renatofilho@608
  1519
  } 
renatofilho@608
  1520
renatofilho@608
  1521
  gst_event_unref (newsegment_event);
renatofilho@608
  1522
renatofilho@608
  1523
  nuv->priv->state = GST_NUV_DEMUX_FRAME_HEADER;
renatofilho@608
  1524
  nuv->priv->offset = entry->offset;
renatofilho@608
  1525
renatofilho@608
  1526
  gst_pad_start_task (nuv->priv->sinkpad, (GstTaskFunction) gst_nuv_demux_loop,
renatofilho@608
  1527
      nuv->priv->sinkpad);
renatofilho@608
  1528
renatofilho@608
  1529
  GST_PAD_STREAM_UNLOCK (nuv->priv->sinkpad);
renatofilho@608
  1530
  return TRUE;
renatofilho@608
  1531
renatofilho@608
  1532
seek_error:
renatofilho@608
  1533
  GST_DEBUG_OBJECT (nuv, "Got a seek error");
renatofilho@608
  1534
  GST_OBJECT_UNLOCK (nuv);
renatofilho@608
  1535
  GST_PAD_STREAM_UNLOCK (nuv->priv->sinkpad);
renatofilho@608
  1536
  return FALSE;
renatofilho@608
  1537
renatofilho@608
  1538
}
renatofilho@608
  1539
renatofilho@608
  1540
static gboolean
renatofilho@608
  1541
gst_nuv_demux_srcpad_event (GstPad * pad, GstEvent * event)
renatofilho@608
  1542
{
renatofilho@608
  1543
  gboolean res = FALSE;
renatofilho@608
  1544
  GstNuvDemux *nuv;
renatofilho@608
  1545
renatofilho@608
  1546
  nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@608
  1547
  
renatofilho@608
  1548
  switch (GST_EVENT_TYPE (event)) {
renatofilho@608
  1549
    case GST_EVENT_SEEK:
renatofilho@608
  1550
      res = gst_nuv_demux_do_seek (nuv, event);
renatofilho@608
  1551
      break;
renatofilho@608
  1552
    default:
renatofilho@608
  1553
      res = FALSE;
renatofilho@608
  1554
      break;
renatofilho@608
  1555
  }
renatofilho@608
  1556
  
renatofilho@608
  1557
  gst_object_unref (nuv);
renatofilho@608
  1558
  return res;
renatofilho@608
  1559
}
renatofilho@608
  1560
renatofilho@714
  1561
static gboolean
renatofilho@714
  1562
gst_nuv_demux_sink_event (GstPad * pad, GstEvent * event)
renatofilho@714
  1563
{
renatofilho@714
  1564
	gboolean res = FALSE;
renatofilho@714
  1565
	GstNuvDemux *nuv;
renatofilho@714
  1566
renatofilho@714
  1567
	nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@714
  1568
	
renatofilho@714
  1569
	switch  (GST_EVENT_TYPE (event)) {
renatofilho@714
  1570
		case GST_EVENT_NEWSEGMENT:
renatofilho@714
  1571
		{
renatofilho@714
  1572
			gboolean update;
renatofilho@714
  1573
			gdouble rate;
renatofilho@714
  1574
			GstFormat format;
renatofilho@714
  1575
			gint64 start;
renatofilho@714
  1576
			gint64 stop;
renatofilho@714
  1577
			gint64 position;
renatofilho@714
  1578
renatofilho@714
  1579
			gst_event_parse_new_segment (event, &update, &rate, &format, &start, &stop, &position);				
renatofilho@714
  1580
			if ((format == GST_FORMAT_BYTES) && (start == 0)) {
renatofilho@714
  1581
				g_debug ("NEW SEGMENT 0");					
renatofilho@714
  1582
				if (nuv->priv->segment > 0) {
renatofilho@714
  1583
					nuv->priv->new_file = TRUE;					
renatofilho@714
  1584
					nuv->priv->state = GST_NUV_DEMUX_START;
renatofilho@714
  1585
					nuv->priv->offset = 0;
renatofilho@714
  1586
				}
renatofilho@714
  1587
				nuv->priv->segment++;					
renatofilho@714
  1588
renatofilho@714
  1589
				/*
renatofilho@714
  1590
				newsegment_event = gst_event_new_new_segment (FALSE, rate,
renatofilho@714
  1591
				  GST_FORMAT_TIME, 0, GST_CLOCK_TIME_NONE, GST_CLOCK_TIME_NONE);
renatofilho@714
  1592
renatofilho@714
  1593
    			gst_pad_push_event (nuv->priv->src_audio_pad, gst_event_ref (newsegment_event));
renatofilho@714
  1594
    			gst_pad_push_event (nuv->priv->src_video_pad, gst_event_ref (newsegment_event));
renatofilho@714
  1595
  				gst_event_unref (newsegment_event);
renatofilho@714
  1596
				*/
renatofilho@714
  1597
				res = gst_pad_event_default(pad, event);
renatofilho@714
  1598
			}
renatofilho@714
  1599
			break;
renatofilho@714
  1600
		}
renatofilho@714
  1601
		default:
renatofilho@714
  1602
			res = gst_pad_event_default (pad, event);
renatofilho@714
  1603
			break;
renatofilho@714
  1604
	}	
renatofilho@714
  1605
renatofilho@714
  1606
	return res;
renatofilho@714
  1607
}
renatofilho@714
  1608
renatofilho@608
  1609
static GstFlowReturn
renatofilho@608
  1610
gst_nuv_demux_chain (GstPad * pad, GstBuffer * buf)
renatofilho@608
  1611
{
renatofilho@608
  1612
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
  1613
  GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (pad));
renatofilho@608
  1614
  
renatofilho@608
  1615
  if (nuv->priv->mode != NUV_PUSH_MODE)
renatofilho@608
  1616
    return ret;
renatofilho@608
  1617
renatofilho@608
  1618
  gst_adapter_push (nuv->priv->adapter, buf);  
renatofilho@608
  1619
  
renatofilho@608
  1620
  while ((ret == GST_FLOW_OK) && (nuv->priv->more_data == FALSE)) {
renatofilho@608
  1621
      ret = gst_nuv_demux_play (pad);
renatofilho@608
  1622
  }
renatofilho@608
  1623
renatofilho@608
  1624
  nuv->priv->more_data = FALSE;
renatofilho@608
  1625
  gst_object_unref (nuv);
renatofilho@608
  1626
renatofilho@608
  1627
  return ret;
renatofilho@608
  1628
}
renatofilho@608
  1629
renatofilho@608
  1630
static void
renatofilho@608
  1631
gst_nuv_demux_loop (GstPad * pad)
renatofilho@608
  1632
{
renatofilho@608
  1633
  gst_nuv_demux_play (pad);
renatofilho@608
  1634
}
renatofilho@608
  1635
renatofilho@608
  1636
static void
renatofilho@608
  1637
gst_nuv_demux_index_free (gpointer data, gpointer user_data)
renatofilho@608
  1638
{
renatofilho@608
  1639
  g_free (data);
renatofilho@608
  1640
}
renatofilho@608
  1641
renatofilho@608
  1642
static void
renatofilho@608
  1643
gst_nuv_demux_reset (GstNuvDemux * nuv)
renatofilho@608
  1644
{
renatofilho@608
  1645
  nuv->priv->eos = FALSE;
renatofilho@608
  1646
  nuv->priv->more_data = FALSE;
renatofilho@608
  1647
  nuv->priv->state = GST_NUV_DEMUX_START;
renatofilho@608
  1648
  nuv->priv->mode = NUV_PUSH_MODE;
renatofilho@608
  1649
  nuv->priv->offset = 0;
renatofilho@608
  1650
  nuv->priv->time_start = 0;
renatofilho@608
  1651
  nuv->priv->time_qos = GST_CLOCK_TIME_NONE;
renatofilho@608
  1652
  nuv->priv->duration_bytes = GST_CLOCK_TIME_NONE;
renatofilho@608
  1653
  nuv->priv->duration_time = GST_CLOCK_TIME_NONE;
renatofilho@608
  1654
  nuv->priv->last_video_return = GST_FLOW_OK;
renatofilho@608
  1655
  nuv->priv->last_audio_return = GST_FLOW_OK;
renatofilho@608
  1656
  nuv->priv->header_lengh = 0;
renatofilho@608
  1657
  nuv->priv->segment_stop = GST_CLOCK_TIME_NONE;
renatofilho@608
  1658
  nuv->priv->segment_start = GST_CLOCK_TIME_NONE;
renatofilho@714
  1659
  nuv->priv->new_file = FALSE;
renatofilho@608
  1660
renatofilho@608
  1661
  //clear index list
renatofilho@608
  1662
  g_slist_foreach (nuv->priv->index, gst_nuv_demux_index_free, NULL);
renatofilho@608
  1663
  g_slist_free (nuv->priv->index);
renatofilho@608
  1664
  nuv->priv->index = NULL;
renatofilho@608
  1665
renatofilho@608
  1666
  gst_adapter_clear (nuv->priv->adapter);
renatofilho@608
  1667
renatofilho@608
  1668
  if (nuv->priv->mpeg_buffer != NULL) {
renatofilho@608
  1669
    gst_buffer_unref (nuv->priv->mpeg_buffer);
renatofilho@608
  1670
    nuv->priv->mpeg_buffer = NULL;
renatofilho@608
  1671
  }
renatofilho@608
  1672
}
renatofilho@608
  1673
renatofilho@608
  1674
static void
renatofilho@608
  1675
gst_nuv_demux_destoy_src_pad (GstNuvDemux * nuv)
renatofilho@608
  1676
{
renatofilho@608
  1677
  if (nuv->priv->src_video_pad) {
renatofilho@608
  1678
    gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_video_pad);
renatofilho@608
  1679
    nuv->priv->src_video_pad = NULL;
renatofilho@608
  1680
  }
renatofilho@608
  1681
renatofilho@608
  1682
  if (nuv->priv->src_audio_pad) {
renatofilho@608
  1683
    gst_element_remove_pad (GST_ELEMENT (nuv), nuv->priv->src_audio_pad);
renatofilho@608
  1684
    nuv->priv->src_audio_pad = NULL;
renatofilho@608
  1685
  }
renatofilho@608
  1686
}
renatofilho@608
  1687
renatofilho@608
  1688
static GstStateChangeReturn
renatofilho@608
  1689
gst_nuv_demux_change_state (GstElement * element, GstStateChange transition)
renatofilho@608
  1690
{
renatofilho@608
  1691
  GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
renatofilho@608
  1692
renatofilho@692
  1693
  g_debug ("Nuvdemux state_change");
renatofilho@608
  1694
  switch (transition) {
renatofilho@608
  1695
    case GST_STATE_CHANGE_NULL_TO_READY:
renatofilho@608
  1696
      gst_nuv_demux_reset (GST_NUV_DEMUX (element));
renatofilho@608
  1697
      gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
renatofilho@608
  1698
      break;
renatofilho@608
  1699
    default:
renatofilho@608
  1700
      break;
renatofilho@608
  1701
  }
renatofilho@608
  1702
renatofilho@692
  1703
  g_debug ("Nuvdemux state_change: 1");
renatofilho@692
  1704
renatofilho@608
  1705
  ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
renatofilho@608
  1706
  if (ret == GST_STATE_CHANGE_FAILURE) {
renatofilho@608
  1707
    goto done;
renatofilho@608
  1708
  }
renatofilho@608
  1709
renatofilho@692
  1710
renatofilho@692
  1711
  g_debug ("Nuvdemux state_change: 2");
renatofilho@692
  1712
renatofilho@608
  1713
  switch (transition) {
renatofilho@608
  1714
    case GST_STATE_CHANGE_READY_TO_NULL:
renatofilho@608
  1715
      gst_nuv_demux_reset (GST_NUV_DEMUX (element));
renatofilho@608
  1716
      gst_nuv_demux_destoy_src_pad (GST_NUV_DEMUX (element));
renatofilho@608
  1717
      break;
renatofilho@608
  1718
    default:
renatofilho@608
  1719
      break;
renatofilho@608
  1720
  }
renatofilho@608
  1721
renatofilho@692
  1722
renatofilho@692
  1723
  g_debug ("Nuvdemux state_change: DONE");
renatofilho@692
  1724
renatofilho@608
  1725
done:
renatofilho@608
  1726
  return ret;
renatofilho@608
  1727
}
renatofilho@608
  1728
renatofilho@608
  1729
#if (GST_VERSION_MINOR == 10) && (GST_VERSION_MICRO < 6) 
renatofilho@608
  1730
GstBuffer *
renatofilho@608
  1731
gst_adapter_take_buffer (GstAdapter * adapter, guint nbytes)
renatofilho@608
  1732
{
renatofilho@608
  1733
  GstBuffer *buffer;
renatofilho@608
  1734
  GstBuffer *cur;
renatofilho@608
  1735
  guint8 *data;
renatofilho@608
  1736
renatofilho@608
  1737
  g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
renatofilho@608
  1738
  g_return_val_if_fail (nbytes > 0, NULL);
renatofilho@608
  1739
renatofilho@608
  1740
  GST_LOG_OBJECT (adapter, "taking buffer of %u bytes", nbytes);
renatofilho@608
  1741
renatofilho@608
  1742
  /* we don't have enough data, return NULL. This is unlikely
renatofilho@608
  1743
   * as one usually does an _available() first instead of peeking a
renatofilho@608
  1744
   * random size. */
renatofilho@608
  1745
  if (G_UNLIKELY (nbytes > adapter->size))
renatofilho@608
  1746
    return NULL;
renatofilho@608
  1747
renatofilho@608
  1748
  /* our head buffer has enough data left, return it */
renatofilho@608
  1749
  cur = adapter->buflist->data;
renatofilho@608
  1750
  if (GST_BUFFER_SIZE (cur) >= nbytes + adapter->skip) {
renatofilho@608
  1751
    GST_LOG_OBJECT (adapter, "providing buffer of %d bytes via sub-buffer",
renatofilho@608
  1752
        nbytes);
renatofilho@608
  1753
    buffer = gst_buffer_create_sub (cur, adapter->skip, nbytes);
renatofilho@608
  1754
renatofilho@608
  1755
    gst_adapter_flush (adapter, nbytes);
renatofilho@608
  1756
renatofilho@608
  1757
    return buffer;
renatofilho@608
  1758
  }
renatofilho@608
  1759
renatofilho@608
  1760
  data = gst_adapter_take (adapter, nbytes);
renatofilho@608
  1761
  if (data == NULL)
renatofilho@608
  1762
    return NULL;
renatofilho@608
  1763
renatofilho@608
  1764
  buffer = gst_buffer_new ();
renatofilho@608
  1765
  GST_BUFFER_DATA (buffer) = data;
renatofilho@608
  1766
  GST_BUFFER_MALLOCDATA (buffer) = data;
renatofilho@608
  1767
  GST_BUFFER_SIZE (buffer) = nbytes;
renatofilho@608
  1768
renatofilho@608
  1769
  return buffer;
renatofilho@608
  1770
}
renatofilho@608
  1771
#endif
renatofilho@608
  1772
renatofilho@608
  1773
static void
renatofilho@608
  1774
gst_nuv_typefind (GstTypeFind * tf, gpointer unused)
renatofilho@608
  1775
{
renatofilho@608
  1776
  guint8 *data = gst_type_find_peek (tf, 0, 11);
renatofilho@608
  1777
renatofilho@608
  1778
  if (data) {
renatofilho@608
  1779
    if (memcmp (data, "MythTVVideo", 11) == 0
renatofilho@608
  1780
        || memcmp (data, "NuppelVideo", 11) == 0) {
renatofilho@608
  1781
      gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, 
renatofilho@608
  1782
          gst_caps_new_simple ("video/x-nuv", NULL));
renatofilho@608
  1783
    }
renatofilho@608
  1784
  }
renatofilho@608
  1785
}
renatofilho@608
  1786
renatofilho@608
  1787
static gboolean
renatofilho@608
  1788
plugin_init (GstPlugin * plugin)
renatofilho@608
  1789
{
renatofilho@608
  1790
  static gchar *exts[] = { "nuv", NULL };    
renatofilho@608
  1791
#ifdef ENABLE_NLS
renatofilho@608
  1792
  setlocale (LC_ALL, "");
renatofilho@608
  1793
  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
renatofilho@608
  1794
#endif /* ENABLE_NLS */
renatofilho@608
  1795
renatofilho@608
  1796
  if (!gst_element_register (plugin, "nuvdemux", GST_RANK_SECONDARY,
renatofilho@608
  1797
          GST_TYPE_NUV_DEMUX)) {
renatofilho@608
  1798
    return FALSE;
renatofilho@608
  1799
  }
renatofilho@608
  1800
renatofilho@608
  1801
  if (!gst_type_find_register (plugin, "video/x-nuv", GST_RANK_SECONDARY,
renatofilho@608
  1802
              gst_nuv_typefind, 
renatofilho@608
  1803
              exts,
renatofilho@608
  1804
              gst_caps_new_simple ("video/x-nuv", NULL), NULL, NULL)) {
renatofilho@608
  1805
    GST_WARNING ("can't register typefind");
renatofilho@608
  1806
    return FALSE;
renatofilho@608
  1807
  }
renatofilho@608
  1808
renatofilho@608
  1809
  return TRUE;
renatofilho@608
  1810
}
renatofilho@608
  1811
renatofilho@608
  1812
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
renatofilho@608
  1813
    GST_VERSION_MINOR,
renatofilho@608
  1814
    "nuvdemux",
renatofilho@714
  1815
    			"Demuxes and muxes audio and video",
renatofilho@611
  1816
     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
renatofilho@608
  1817