2 * Copyright (C) <2006> Renato Araujo Oliveira Filho <renato.filho@indt.org.br>
3 * Rosfran Borges <rosfran.borges@indt.org.br>
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.
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.
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.
21 #ifndef __GST_NUV_DEMUX_H__
22 #define __GST_NUV_DEMUX_H__
26 #include <gst/base/gstadapter.h>
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))
41 #define DEMUX_INDEX_SIZE_MAX (100000)
43 /* Indexes (timecodes/offsets) conversion structures */
49 } nuv_demux_index_entry;
56 nuv_demux_index_entry idx[DEMUX_INDEX_SIZE_MAX];
62 gchar id[12]; /* "NuppelVideo\0" or "MythTVVideo\0" */
63 gchar version[5]; /* "x.xx\0" */
68 gint i_height_desired;
70 gchar i_mode; /* P progressive, I interlaced */
72 gdouble d_aspect; /* 1.0 squared pixel */
78 gint i_video_blocks; /* 0 no video, -1 unknown */
82 gint i_keyframe_distance;
88 gchar i_type; /* A: audio, V: video, S: sync; T: test
89 R: Seekpoint (string:RTjjjjjjjj)
90 D: Extra data for codec */
91 gchar i_compression; /* V: 0 uncompressed
96 A: 0 uncompressed (44100 1-bits, 2ch)
102 N null frame loudless
104 S: B audio and vdeo sync point
105 A audio sync info (timecode == effective
107 V next video sync (timecode == next video
109 S audio,video,text correlation */
110 gchar i_keyframe; /* 0 keyframe, else no no key frame */
111 guint8 i_filters; /* 0x01: gauss 5 pixel (8,2,2,2,2)/16
112 0x02: gauss 5 pixel (8,1,1,1,1)/12
113 0x04: cartoon filter */
115 gint32 i_timecode; /* ms */
117 gint i_length; /* V,A,T: length of following data
118 S: length of packet correl */
121 /* FIXME Not sure of this one */
128 gint i_audio_sample_rate;
129 gint i_audio_bits_per_sample;
130 gint i_audio_channels;
131 gint i_audio_compression_ratio;
132 gint i_audio_quality;
133 gint i_rtjpeg_quality;
134 gint i_rtjpeg_luma_filter;
135 gint i_rtjpeg_chroma_filter;
139 gint i_lavc_maxqdiff;
140 gint64 i_seekable_offset;
141 gint64 i_keyframe_adjust_offset;
143 } nuv_extended_header;
147 GST_NUV_DEMUX_HEADER_DATA,
148 GST_NUV_DEMUX_EXTRA_DATA,
149 GST_NUV_DEMUX_MPEG_DATA,
150 GST_NUV_DEMUX_EXTEND_HEADER,
151 GST_NUV_DEMUX_EXTEND_HEADER_DATA,
152 GST_NUV_DEMUX_FRAME_HEADER,
154 GST_NUV_DEMUX_INVALID_DATA
157 typedef struct _GstNuvDemux {
165 GstPad *src_video_pad;
166 GstPad *src_audio_pad;
168 GstFlowReturn last_video_return;
169 GstFlowReturn last_audio_return;
171 /* NUV decoding state */
172 GstNuvDemuxState state;
176 guint64 last_frame_time;
177 gboolean new_audio_segment;
178 gboolean new_video_segment;
181 guint64 mpeg_data_size;
182 GstBuffer *mpeg_buffer;
185 nuv_extended_header *eh;
186 nuv_frame_header *fh;
188 /* FIXME: change these fields to private struct */
189 /* first data buffer received, should sent new_segment */
192 typedef struct _GstNuvDemuxClass {
193 GstElementClass parent_class;
196 GType gst_nuv_demux_get_type (void);
200 #endif /* __GST_NUV_DEMUX_H__ */