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