gst-plugins-nuvdemux/nuvdemux/gstnuvdemux.h
author renatofilho
Tue Nov 14 13:34:22 2006 +0000 (2006-11-14)
branchtrunk
changeset 84 8b867c828e89
parent 80 fe9a9dca8f18
child 85 7f6ea4639cb9
permissions -rw-r--r--
[svn r85] timestamp bug fix
     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     gint32 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 
   160   /* pads */
   161   GstPad        *sinkpad;
   162   GstPad        *src_video_pad;  
   163   GstPad        *src_audio_pad;
   164 
   165   /* NUV decoding state */
   166   GstNuvDemuxState  state;
   167   guint64           offset;
   168   guint             time_offset;
   169   gboolean          new_audio_segment;
   170   gboolean          new_video_segment;
   171 
   172 
   173   /* Mpeg ExtraData */
   174   guint64       mpeg_data_size;
   175   GstBuffer     *mpeg_buffer;
   176   
   177   nuv_header *h;
   178   nuv_extended_header *eh;
   179   nuv_frame_header *fh;
   180   
   181   /* FIXME: change these fields to private struct */
   182   /* first data buffer received, should sent new_segment */
   183 } GstNuvDemux;
   184 
   185 typedef struct _GstNuvDemuxClass {
   186   GstElementClass parent_class;
   187 } GstNuvDemuxClass;
   188 
   189 GType           gst_nuv_demux_get_type          (void);
   190 
   191 G_END_DECLS
   192 
   193 #endif /* __GST_NUV_DEMUX_H__ */