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