gst-plugins-nuvdemux/src/gstnuvdemux.h
author renatofilho
Fri Oct 27 19:10:56 2006 +0100 (2006-10-27)
branchtrunk
changeset 60 98fa2109e716
parent 57 c83c59b22fe1
child 66 63854066607a
permissions -rw-r--r--
[svn r61] - bug fixes;
     1 /* GStreamer
     2  * Copyright (C) <2006> Renato Araujo Oliveira Filho <renato.filho@indt.org.br>
     3  *                      Rosfran Borges <rosfran.borges@indt.org.br>
     4  *
     5  * This library is free software; you can redistribute it and/or
     6  * modify it under the terms of the GNU Library General Public
     7  * License as published by the Free Software Foundation; either
     8  * version 2 of the License, or (at your option) any later version.
     9  *
    10  * This library is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    13  * Library General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU Library General Public
    16  * License along with this library; if not, write to the
    17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    18  * Boston, MA 02111-1307, USA.
    19  */
    20 
    21 #ifndef __GST_NUV_DEMUX_H__
    22 #define __GST_NUV_DEMUX_H__
    23 
    24 #include <gst/gst.h>
    25 
    26 #include <gst/base/gstadapter.h>
    27 
    28 G_BEGIN_DECLS
    29 
    30 #define GST_TYPE_NUV_DEMUX \
    31   (gst_nuv_demux_get_type ())
    32 #define GST_NUV_DEMUX(obj) \
    33   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NUV_DEMUX, GstNuvDemux))
    34 #define GST_NUV_DEMUX_CLASS(klass) \
    35   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_NUV_DEMUX, GstNuvDemuxClass))
    36 #define GST_IS_NUV_DEMUX(obj) \
    37   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NUV_DEMUX))
    38 #define GST_IS_NUV_DEMUX_CLASS(klass) \
    39   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_NUV_DEMUX))
    40 
    41 #define DEMUX_INDEX_SIZE_MAX (100000)
    42 
    43 /* Indexes (timecodes/offsets) conversion structures */
    44 typedef struct
    45 {
    46     gint64 i_time;
    47     gint64 i_offset;
    48 
    49 } nuv_demux_index_entry;
    50 
    51 typedef struct
    52 {
    53     gint i_idx;
    54     gint i_idx_max;
    55 
    56     nuv_demux_index_entry idx[DEMUX_INDEX_SIZE_MAX];
    57 } nuv_demux_index;
    58 
    59 /* */
    60 typedef struct
    61 {
    62     gchar id[12];       /* "NuppelVideo\0" or "MythTVVideo\0" */
    63     gchar version[5];    /* "x.xx\0" */
    64 
    65     gint  i_width;
    66     gint  i_height;
    67     gint  i_width_desired;
    68     gint  i_height_desired;
    69 
    70     gchar i_mode;            /* P progressive, I interlaced */
    71 
    72     gdouble  d_aspect;       /* 1.0 squared pixel */
    73     gdouble  d_fps;
    74 
    75     gint     i_video_blocks; /* 0 no video, -1 unknown */
    76     gint     i_audio_blocks;
    77     gint     i_text_blocks;
    78 
    79     gint     i_keyframe_distance;
    80 
    81 } nuv_header;
    82 
    83 typedef struct
    84 {
    85     gchar i_type;        /* A: audio, V: video, S: sync; T: test
    86                            R: Seekpoint (string:RTjjjjjjjj)
    87                            D: Extra data for codec */
    88     gchar i_compression; /* V: 0 uncompressed
    89                               1 RTJpeg
    90                               2 RTJpeg+lzo
    91                               N black frame
    92                               L copy last
    93                            A: 0 uncompressed (44100 1-bits, 2ch)
    94                               1 lzo
    95                               2 layer 2
    96                               3 layer 3
    97                               F flac
    98                               S shorten
    99                               N null frame loudless
   100                               L copy last
   101                             S: B audio and vdeo sync point
   102                                A audio sync info (timecode == effective
   103                                     dsp frequency*100)
   104                                V next video sync (timecode == next video
   105                                     frame num)
   106                                S audio,video,text correlation */
   107     gchar i_keyframe;    /* 0 keyframe, else no no key frame */
   108     guint8 i_filters;  /* 0x01: gauss 5 pixel (8,2,2,2,2)/16
   109                            0x02: gauss 5 pixel (8,1,1,1,1)/12
   110                            0x04: cartoon filter */
   111 
   112     gint i_timecode;     /* ms */
   113 
   114     gint i_length;       /* V,A,T: length of following data
   115                            S: length of packet correl */
   116 } nuv_frame_header;
   117 
   118 /* FIXME Not sure of this one */
   119 typedef struct
   120 {
   121     gint             i_version;
   122     guint32		     i_video_fcc;
   123 
   124     guint32		     i_audio_fcc;
   125     gint             i_audio_sample_rate;
   126     gint             i_audio_bits_per_sample;
   127     gint             i_audio_channels;
   128     gint             i_audio_compression_ratio;
   129     gint             i_audio_quality;
   130     gint             i_rtjpeg_quality;
   131     gint             i_rtjpeg_luma_filter;
   132     gint             i_rtjpeg_chroma_filter;
   133     gint             i_lavc_bitrate;
   134     gint             i_lavc_qmin;
   135     gint             i_lavc_qmax;
   136     gint             i_lavc_maxqdiff;
   137     gint64         	 i_seekable_offset;
   138     gint64           i_keyframe_adjust_offset;
   139 
   140 } nuv_extended_header;
   141 
   142 typedef enum {
   143   GST_NUV_DEMUX_START,
   144   GST_NUV_DEMUX_HEADER_DATA,
   145   GST_NUV_DEMUX_EXTRA_DATA,
   146   GST_NUV_DEMUX_MPEG_DATA,
   147   GST_NUV_DEMUX_EXTEND_HEADER,
   148   GST_NUV_DEMUX_EXTEND_HEADER_DATA,
   149   GST_NUV_DEMUX_FRAME_HEADER,
   150   GST_NUV_DEMUX_MOVI,
   151   GST_NUV_DEMUX_INVALID_DATA
   152 } GstNuvDemuxState;
   153 
   154 typedef struct _GstNuvDemux {
   155   GstElement     parent;
   156 
   157   guint         mode;
   158   GstAdapter    *adapter; 
   159   guint64       video_offset;
   160   guint64       audio_offset;
   161 
   162   /* pads */
   163   
   164   GstPad        *sinkpad;
   165   GstPad        *src_video_pad;  
   166   GstPad        *src_audio_pad;
   167   gboolean      first_video;
   168   gboolean      first_audio;
   169 
   170   /* NUV decoding state */
   171   GstNuvDemuxState state;
   172   guint64        offset;
   173 
   174   /* Mpeg ExtraData */
   175   guint64       mpeg_data_size;
   176   GstBuffer     *mpeg_buffer;
   177   
   178   nuv_header *h;
   179   nuv_extended_header *eh;
   180   nuv_frame_header *fh;
   181   
   182   /* index */
   183   nuv_demux_index *index_entries;
   184   guint          index_size;
   185   guint64        index_offset;
   186   guint          current_entry;
   187 
   188 } GstNuvDemux;
   189 
   190 typedef struct _GstNuvDemuxClass {
   191   GstElementClass parent_class;
   192 } GstNuvDemuxClass;
   193 
   194 GType           gst_nuv_demux_get_type          (void);
   195 
   196 G_END_DECLS
   197 
   198 #endif /* __GST_NUV_DEMUX_H__ */