avidemux: small cleanups
[platform/upstream/gst-plugins-good.git] / gst / avi / gstavidemux.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@temple-baptist.com>
3  * Copyright (C) <2006> Nokia Corporation (contact <stefan.kost@nokia.com>)
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 /* Element-Checklist-Version: 5 */
21
22 /**
23  * SECTION:element-avidemux
24  *
25  * Demuxes an .avi file into raw or compressed audio and/or video streams.
26  *
27  * This element supports both push and pull-based scheduling, depending on the
28  * capabilities of the upstream elements.
29  *
30  * <refsect2>
31  * <title>Example launch line</title>
32  * |[
33  * gst-launch filesrc location=test.avi ! avidemux name=demux  demux.audio_00 ! decodebin ! audioconvert ! audioresample ! autoaudiosink   demux.video_00 ! queue ! decodebin ! ffmpegcolorspace ! videoscale ! autovideosink
34  * ]| Play (parse and decode) an .avi file and try to output it to
35  * an automatically detected soundcard and videosink. If the AVI file contains
36  * compressed audio or video data, this will only work if you have the
37  * right decoder elements/plugins installed.
38  * </refsect2>
39  *
40  * Last reviewed on 2006-12-29 (0.10.6)
41  */
42
43 #ifdef HAVE_CONFIG_H
44 #include "config.h"
45 #endif
46
47 #include <string.h>
48
49 #include "gst/riff/riff-media.h"
50 #include "gstavidemux.h"
51 #include "avi-ids.h"
52 #include <gst/gst-i18n-plugin.h>
53 #include <gst/base/gstadapter.h>
54
55
56 #define DIV_ROUND_UP(s,v) ((s) + ((v)-1) / (v))
57
58 GST_DEBUG_CATEGORY_STATIC (avidemux_debug);
59 #define GST_CAT_DEFAULT avidemux_debug
60 GST_DEBUG_CATEGORY_STATIC (GST_CAT_PERFORMANCE);
61
62 GST_DEBUG_CATEGORY_EXTERN (GST_CAT_EVENT);
63
64 static GstStaticPadTemplate sink_templ = GST_STATIC_PAD_TEMPLATE ("sink",
65     GST_PAD_SINK,
66     GST_PAD_ALWAYS,
67     GST_STATIC_CAPS ("video/x-msvideo")
68     );
69
70 static void gst_avi_demux_base_init (GstAviDemuxClass * klass);
71 static void gst_avi_demux_class_init (GstAviDemuxClass * klass);
72 static void gst_avi_demux_init (GstAviDemux * avi);
73 static void gst_avi_demux_finalize (GObject * object);
74
75 static void gst_avi_demux_reset (GstAviDemux * avi);
76
77 #if 0
78 static const GstEventMask *gst_avi_demux_get_event_mask (GstPad * pad);
79 #endif
80 static gboolean gst_avi_demux_handle_src_event (GstPad * pad, GstEvent * event);
81 static gboolean gst_avi_demux_handle_sink_event (GstPad * pad,
82     GstEvent * event);
83 static gboolean gst_avi_demux_push_event (GstAviDemux * avi, GstEvent * event);
84
85 #if 0
86 static const GstFormat *gst_avi_demux_get_src_formats (GstPad * pad);
87 #endif
88 static const GstQueryType *gst_avi_demux_get_src_query_types (GstPad * pad);
89 static gboolean gst_avi_demux_handle_src_query (GstPad * pad, GstQuery * query);
90 static gboolean gst_avi_demux_src_convert (GstPad * pad, GstFormat src_format,
91     gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
92
93 static gboolean gst_avi_demux_do_seek (GstAviDemux * avi, GstSegment * segment);
94 static gboolean gst_avi_demux_handle_seek (GstAviDemux * avi, GstPad * pad,
95     GstEvent * event);
96 static void gst_avi_demux_loop (GstPad * pad);
97 static gboolean gst_avi_demux_sink_activate (GstPad * sinkpad);
98 static gboolean gst_avi_demux_sink_activate_pull (GstPad * sinkpad,
99     gboolean active);
100 static gboolean gst_avi_demux_activate_push (GstPad * pad, gboolean active);
101 static GstFlowReturn gst_avi_demux_chain (GstPad * pad, GstBuffer * buf);
102
103 static GstStateChangeReturn gst_avi_demux_change_state (GstElement * element,
104     GstStateChange transition);
105
106 static GstElementClass *parent_class = NULL;
107
108 /* GObject methods */
109
110 GType
111 gst_avi_demux_get_type (void)
112 {
113   static GType avi_demux_type = 0;
114
115   if (!avi_demux_type) {
116     static const GTypeInfo avi_demux_info = {
117       sizeof (GstAviDemuxClass),
118       (GBaseInitFunc) gst_avi_demux_base_init,
119       NULL,
120       (GClassInitFunc) gst_avi_demux_class_init,
121       NULL,
122       NULL,
123       sizeof (GstAviDemux),
124       0,
125       (GInstanceInitFunc) gst_avi_demux_init,
126     };
127
128     avi_demux_type =
129         g_type_register_static (GST_TYPE_ELEMENT,
130         "GstAviDemux", &avi_demux_info, 0);
131   }
132
133   return avi_demux_type;
134 }
135
136 static void
137 gst_avi_demux_base_init (GstAviDemuxClass * klass)
138 {
139   static const GstElementDetails gst_avi_demux_details =
140       GST_ELEMENT_DETAILS ("Avi demuxer",
141       "Codec/Demuxer",
142       "Demultiplex an avi file into audio and video",
143       "Erik Walthinsen <omega@cse.ogi.edu>\n"
144       "Wim Taymans <wim.taymans@chello.be>\n"
145       "Thijs Vermeir <thijsvermeir@gmail.com>");
146   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
147   GstPadTemplate *videosrctempl, *audiosrctempl, *subsrctempl;
148   GstCaps *audcaps, *vidcaps, *subcaps;
149
150   audcaps = gst_riff_create_audio_template_caps ();
151   gst_caps_append (audcaps, gst_caps_new_simple ("audio/x-avi-unknown", NULL));
152   audiosrctempl = gst_pad_template_new ("audio_%02d",
153       GST_PAD_SRC, GST_PAD_SOMETIMES, audcaps);
154
155   vidcaps = gst_riff_create_video_template_caps ();
156   gst_caps_append (vidcaps, gst_riff_create_iavs_template_caps ());
157   gst_caps_append (vidcaps, gst_caps_new_simple ("video/x-avi-unknown", NULL));
158   videosrctempl = gst_pad_template_new ("video_%02d",
159       GST_PAD_SRC, GST_PAD_SOMETIMES, vidcaps);
160
161   subcaps = gst_caps_new_simple ("application/x-subtitle-avi", NULL);
162   subsrctempl = gst_pad_template_new ("subtitle_%02d",
163       GST_PAD_SRC, GST_PAD_SOMETIMES, subcaps);
164   gst_element_class_add_pad_template (element_class, audiosrctempl);
165   gst_element_class_add_pad_template (element_class, videosrctempl);
166   gst_element_class_add_pad_template (element_class, subsrctempl);
167   gst_element_class_add_pad_template (element_class,
168       gst_static_pad_template_get (&sink_templ));
169   gst_element_class_set_details (element_class, &gst_avi_demux_details);
170 }
171
172 static void
173 gst_avi_demux_class_init (GstAviDemuxClass * klass)
174 {
175   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
176   GObjectClass *gobject_class = (GObjectClass *) klass;
177
178   GST_DEBUG_CATEGORY_INIT (avidemux_debug, "avidemux",
179       0, "Demuxer for AVI streams");
180   GST_DEBUG_CATEGORY_GET (GST_CAT_PERFORMANCE, "GST_PERFORMANCE");
181
182   parent_class = g_type_class_peek_parent (klass);
183
184   gobject_class->finalize = gst_avi_demux_finalize;
185   gstelement_class->change_state =
186       GST_DEBUG_FUNCPTR (gst_avi_demux_change_state);
187 }
188
189 static void
190 gst_avi_demux_init (GstAviDemux * avi)
191 {
192   avi->sinkpad = gst_pad_new_from_static_template (&sink_templ, "sink");
193   gst_pad_set_activate_function (avi->sinkpad,
194       GST_DEBUG_FUNCPTR (gst_avi_demux_sink_activate));
195   gst_pad_set_activatepull_function (avi->sinkpad,
196       GST_DEBUG_FUNCPTR (gst_avi_demux_sink_activate_pull));
197   gst_pad_set_activatepush_function (avi->sinkpad,
198       GST_DEBUG_FUNCPTR (gst_avi_demux_activate_push));
199   gst_pad_set_chain_function (avi->sinkpad,
200       GST_DEBUG_FUNCPTR (gst_avi_demux_chain));
201   gst_pad_set_event_function (avi->sinkpad,
202       GST_DEBUG_FUNCPTR (gst_avi_demux_handle_sink_event));
203   gst_element_add_pad (GST_ELEMENT (avi), avi->sinkpad);
204
205   avi->adapter = gst_adapter_new ();
206
207   gst_avi_demux_reset (avi);
208 }
209
210 static void
211 gst_avi_demux_finalize (GObject * object)
212 {
213   GstAviDemux *avi = GST_AVI_DEMUX (object);
214
215   GST_DEBUG ("AVI: finalize");
216
217   g_object_unref (avi->adapter);
218
219   G_OBJECT_CLASS (parent_class)->finalize (object);
220 }
221
222 static void
223 gst_avi_demux_reset (GstAviDemux * avi)
224 {
225   gint i;
226
227   GST_DEBUG ("AVI: reset");
228
229   for (i = 0; i < avi->num_streams; i++) {
230     g_free (avi->stream[i].strh);
231     g_free (avi->stream[i].strf.data);
232     if (avi->stream[i].name)
233       g_free (avi->stream[i].name);
234     if (avi->stream[i].initdata)
235       gst_buffer_unref (avi->stream[i].initdata);
236     if (avi->stream[i].extradata)
237       gst_buffer_unref (avi->stream[i].extradata);
238     if (avi->stream[i].pad) {
239       gst_pad_set_active (avi->stream[i].pad, FALSE);
240       gst_element_remove_pad (GST_ELEMENT (avi), avi->stream[i].pad);
241     }
242     if (avi->stream[i].taglist) {
243       gst_tag_list_free (avi->stream[i].taglist);
244       avi->stream[i].taglist = NULL;
245     }
246   }
247   memset (&avi->stream, 0, sizeof (avi->stream));
248
249   avi->header_state = GST_AVI_DEMUX_HEADER_TAG_LIST;
250   avi->num_streams = 0;
251   avi->num_v_streams = 0;
252   avi->num_a_streams = 0;
253   avi->num_t_streams = 0;
254
255   avi->state = GST_AVI_DEMUX_START;
256   avi->offset = 0;
257
258   //g_free (avi->index_entries);
259   //avi->index_entries = NULL;
260   //avi->index_size = 0;
261   avi->index_offset = 0;
262   g_free (avi->avih);
263   avi->avih = NULL;
264
265   if (avi->seek_event) {
266     gst_event_unref (avi->seek_event);
267     avi->seek_event = NULL;
268   }
269
270   if (avi->globaltags)
271     gst_tag_list_free (avi->globaltags);
272   avi->globaltags = NULL;
273
274   avi->got_tags = TRUE;         /* we always want to push global tags */
275   avi->have_eos = FALSE;
276
277   gst_adapter_clear (avi->adapter);
278
279   gst_segment_init (&avi->segment, GST_FORMAT_TIME);
280 }
281
282
283 /* GstElement methods */
284
285 #if 0
286 static const GstFormat *
287 gst_avi_demux_get_src_formats (GstPad * pad)
288 {
289   GstAviStream *stream = gst_pad_get_element_private (pad);
290
291   static const GstFormat src_a_formats[] = {
292     GST_FORMAT_TIME,
293     GST_FORMAT_BYTES,
294     GST_FORMAT_DEFAULT,
295     0
296   };
297   static const GstFormat src_v_formats[] = {
298     GST_FORMAT_TIME,
299     GST_FORMAT_DEFAULT,
300     0
301   };
302
303   return (stream->strh->type == GST_RIFF_FCC_auds ?
304       src_a_formats : src_v_formats);
305 }
306 #endif
307
308 /* assumes stream->strf.auds->av_bps != 0 */
309 static inline GstClockTime
310 avi_stream_convert_bytes_to_time_unchecked (GstAviStream * stream,
311     guint64 bytes)
312 {
313   return gst_util_uint64_scale (bytes, GST_SECOND, stream->strf.auds->av_bps);
314 }
315
316 static inline guint64
317 avi_stream_convert_time_to_bytes_unchecked (GstAviStream * stream,
318     GstClockTime time)
319 {
320   return gst_util_uint64_scale (time, stream->strf.auds->av_bps, GST_SECOND);
321 }
322
323 /* assumes stream->strh->rate != 0 */
324 static inline GstClockTime
325 avi_stream_convert_frames_to_time_unchecked (GstAviStream * stream,
326     guint64 frames)
327 {
328   return gst_util_uint64_scale (frames, stream->strh->scale * GST_SECOND,
329       stream->strh->rate);
330 }
331
332 static inline guint64
333 avi_stream_convert_time_to_frames_unchecked (GstAviStream * stream,
334     GstClockTime time)
335 {
336   return gst_util_uint64_scale (time, stream->strh->rate,
337       stream->strh->scale * GST_SECOND);
338 }
339
340 static gboolean
341 gst_avi_demux_src_convert (GstPad * pad,
342     GstFormat src_format,
343     gint64 src_value, GstFormat * dest_format, gint64 * dest_value)
344 {
345   GstAviStream *stream = gst_pad_get_element_private (pad);
346   gboolean res = TRUE;
347
348   GST_LOG_OBJECT (pad,
349       "Received  src_format:%s, src_value:%" G_GUINT64_FORMAT
350       ", dest_format:%s", gst_format_get_name (src_format), src_value,
351       gst_format_get_name (*dest_format));
352
353   if (G_UNLIKELY (src_format == *dest_format)) {
354     *dest_value = src_value;
355     goto done;
356   }
357   if (G_UNLIKELY (!stream->strh || !stream->strf.data)) {
358     res = FALSE;
359     goto done;
360   }
361   if (G_UNLIKELY (stream->strh->type == GST_RIFF_FCC_vids &&
362           (src_format == GST_FORMAT_BYTES
363               || *dest_format == GST_FORMAT_BYTES))) {
364     res = FALSE;
365     goto done;
366   }
367
368   switch (src_format) {
369     case GST_FORMAT_TIME:
370       switch (*dest_format) {
371         case GST_FORMAT_BYTES:
372           *dest_value = gst_util_uint64_scale (src_value,
373               (guint64) stream->strf.auds->av_bps, GST_SECOND);
374           break;
375         case GST_FORMAT_DEFAULT:
376           *dest_value =
377               gst_util_uint64_scale_round (src_value, stream->strh->rate,
378               stream->strh->scale * GST_SECOND);
379           break;
380         default:
381           res = FALSE;
382           break;
383       }
384       break;
385     case GST_FORMAT_BYTES:
386       switch (*dest_format) {
387         case GST_FORMAT_TIME:
388           if (stream->strf.auds->av_bps != 0) {
389             *dest_value = avi_stream_convert_bytes_to_time_unchecked (stream,
390                 src_value);
391           } else
392             res = FALSE;
393           break;
394         default:
395           res = FALSE;
396           break;
397       }
398       break;
399     case GST_FORMAT_DEFAULT:
400       switch (*dest_format) {
401         case GST_FORMAT_TIME:
402           *dest_value =
403               avi_stream_convert_frames_to_time_unchecked (stream, src_value);
404           break;
405         default:
406           res = FALSE;
407           break;
408       }
409       break;
410     default:
411       res = FALSE;
412   }
413
414 done:
415   GST_LOG_OBJECT (pad,
416       "Returning res:%d dest_format:%s dest_value:%" G_GUINT64_FORMAT, res,
417       gst_format_get_name (*dest_format), *dest_value);
418   return res;
419 }
420
421 static const GstQueryType *
422 gst_avi_demux_get_src_query_types (GstPad * pad)
423 {
424   static const GstQueryType src_types[] = {
425     GST_QUERY_POSITION,
426     GST_QUERY_DURATION,
427     GST_QUERY_SEEKING,
428     GST_QUERY_CONVERT,
429     0
430   };
431
432   return src_types;
433 }
434
435 static gboolean
436 gst_avi_demux_handle_src_query (GstPad * pad, GstQuery * query)
437 {
438   gboolean res = TRUE;
439   GstAviDemux *avi = GST_AVI_DEMUX (gst_pad_get_parent (pad));
440
441   GstAviStream *stream = gst_pad_get_element_private (pad);
442
443   if (!stream->strh || !stream->strf.data)
444     return gst_pad_query_default (pad, query);
445
446   switch (GST_QUERY_TYPE (query)) {
447     case GST_QUERY_POSITION:{
448       gint64 pos = 0;
449
450       GST_DEBUG ("pos query for stream %d: frames %d, bytes %" G_GUINT64_FORMAT,
451           stream->num, stream->current_frame, stream->current_byte);
452
453       if (stream->strh->type == GST_RIFF_FCC_auds) {
454         if (stream->is_vbr) {
455           /* VBR */
456           pos = gst_util_uint64_scale ((gint64) stream->current_frame *
457               stream->strh->scale, GST_SECOND, (guint64) stream->strh->rate);
458           GST_DEBUG_OBJECT (avi, "VBR convert frame %u, time %"
459               GST_TIME_FORMAT, stream->current_frame, GST_TIME_ARGS (pos));
460         } else if (stream->strf.auds->av_bps != 0) {
461           /* CBR */
462           pos = gst_util_uint64_scale (stream->current_byte, GST_SECOND,
463               (guint64) stream->strf.auds->av_bps);
464           GST_DEBUG_OBJECT (avi,
465               "CBR convert bytes %" G_GUINT64_FORMAT ", time %" GST_TIME_FORMAT,
466               stream->current_byte, GST_TIME_ARGS (pos));
467         } else if (stream->idx_n != 0 && stream->total_bytes != 0) {
468           /* calculate timestamps based on percentage of length */
469           guint64 xlen = avi->avih->us_frame *
470               avi->avih->tot_frames * GST_USECOND;
471
472           if (stream->is_vbr) {
473             pos = gst_util_uint64_scale (xlen, stream->current_frame,
474                 stream->idx_n);
475             GST_DEBUG_OBJECT (avi, "VBR perc convert frame %u, time %"
476                 GST_TIME_FORMAT, stream->current_frame, GST_TIME_ARGS (pos));
477           } else {
478             pos = gst_util_uint64_scale (xlen, stream->current_byte,
479                 stream->total_bytes);
480             GST_DEBUG_OBJECT (avi, "CBR perc convert bytes %" G_GUINT64_FORMAT
481                 ", time %" GST_TIME_FORMAT, stream->current_byte,
482                 GST_TIME_ARGS (pos));
483           }
484         } else {
485           /* we don't know */
486           res = FALSE;
487         }
488       } else {
489         if (stream->strh->rate != 0) {
490           pos = gst_util_uint64_scale ((guint64) stream->current_frame *
491               stream->strh->scale, GST_SECOND, (guint64) stream->strh->rate);
492         } else {
493           pos = stream->current_frame * avi->avih->us_frame * GST_USECOND;
494         }
495       }
496       if (res) {
497         GST_DEBUG ("pos query : %" GST_TIME_FORMAT, GST_TIME_ARGS (pos));
498         gst_query_set_position (query, GST_FORMAT_TIME, pos);
499       } else
500         GST_WARNING ("pos query failed");
501       break;
502     }
503     case GST_QUERY_DURATION:
504     {
505       GstFormat fmt;
506
507       if (stream->strh->type != GST_RIFF_FCC_auds &&
508           stream->strh->type != GST_RIFF_FCC_vids) {
509         res = FALSE;
510         break;
511       }
512
513       gst_query_parse_duration (query, &fmt, NULL);
514
515       switch (fmt) {
516         case GST_FORMAT_TIME:
517           gst_query_set_duration (query, fmt, stream->duration);
518           break;
519         case GST_FORMAT_DEFAULT:
520         {
521           gint64 dur;
522           GST_DEBUG_OBJECT (query, "total frames is %" G_GUINT32_FORMAT,
523               stream->idx_n);
524
525           if (stream->idx_n >= 0)
526             gst_query_set_duration (query, fmt, stream->idx_n);
527           else if (gst_pad_query_convert (pad, GST_FORMAT_TIME,
528                   stream->duration, &fmt, &dur))
529             gst_query_set_duration (query, fmt, dur);
530           break;
531         }
532         default:
533           res = FALSE;
534           break;
535       }
536       break;
537     }
538     case GST_QUERY_SEEKING:{
539       GstFormat fmt;
540
541       gst_query_parse_seeking (query, &fmt, NULL, NULL, NULL);
542       if (fmt == GST_FORMAT_TIME) {
543         gboolean seekable = TRUE;
544
545         if (avi->streaming) {
546           seekable = FALSE;
547         }
548
549         gst_query_set_seeking (query, GST_FORMAT_TIME, seekable,
550             0, stream->duration);
551         res = TRUE;
552       }
553       break;
554     }
555     case GST_QUERY_CONVERT:{
556       GstFormat src_fmt, dest_fmt;
557       gint64 src_val, dest_val;
558
559       gst_query_parse_convert (query, &src_fmt, &src_val, &dest_fmt, &dest_val);
560       if ((res = gst_avi_demux_src_convert (pad, src_fmt, src_val, &dest_fmt,
561                   &dest_val)))
562         gst_query_set_convert (query, src_fmt, src_val, dest_fmt, dest_val);
563       else
564         res = gst_pad_query_default (pad, query);
565       break;
566     }
567     default:
568       res = gst_pad_query_default (pad, query);
569       break;
570   }
571
572   gst_object_unref (avi);
573   return res;
574 }
575
576 #if 0
577 static const GstEventMask *
578 gst_avi_demux_get_event_mask (GstPad * pad)
579 {
580   static const GstEventMask masks[] = {
581     {GST_EVENT_SEEK, GST_SEEK_METHOD_SET | GST_SEEK_FLAG_KEY_UNIT},
582     {0,}
583   };
584
585   return masks;
586 }
587 #endif
588
589 static gboolean
590 gst_avi_demux_handle_sink_event (GstPad * pad, GstEvent * event)
591 {
592   gboolean res = TRUE;
593   GstAviDemux *avi = GST_AVI_DEMUX (gst_pad_get_parent (pad));
594
595   GST_DEBUG_OBJECT (avi,
596       "have event type %s: %p on sink pad", GST_EVENT_TYPE_NAME (event), event);
597
598   switch (GST_EVENT_TYPE (event)) {
599     case GST_EVENT_NEWSEGMENT:
600       /* Drop NEWSEGMENT events, new ones are generated later */
601       gst_event_unref (event);
602       break;
603     case GST_EVENT_EOS:
604     {
605       if (avi->state != GST_AVI_DEMUX_MOVI) {
606         gst_event_unref (event);
607         GST_ELEMENT_ERROR (avi, STREAM, DEMUX,
608             (NULL), ("got eos and didn't receive a complete header object"));
609       } else if (!gst_avi_demux_push_event (avi, event)) {
610         GST_ELEMENT_ERROR (avi, STREAM, DEMUX,
611             (NULL), ("got eos but no streams (yet)"));
612       }
613       break;
614     }
615     default:
616       res = gst_pad_event_default (pad, event);
617       break;
618   }
619
620   gst_object_unref (avi);
621
622   return res;
623 }
624
625 static gboolean
626 gst_avi_demux_handle_src_event (GstPad * pad, GstEvent * event)
627 {
628   gboolean res = TRUE;
629   GstAviDemux *avi = GST_AVI_DEMUX (gst_pad_get_parent (pad));
630
631   GST_DEBUG_OBJECT (avi,
632       "have event type %s: %p on src pad", GST_EVENT_TYPE_NAME (event), event);
633
634   switch (GST_EVENT_TYPE (event)) {
635     case GST_EVENT_SEEK:
636       /* handle seeking only in pull mode */
637       if (!avi->streaming) {
638         res = gst_avi_demux_handle_seek (avi, pad, event);
639         gst_event_unref (event);
640       } else {
641         res = gst_pad_event_default (pad, event);
642       }
643       break;
644     case GST_EVENT_QOS:
645     case GST_EVENT_NAVIGATION:
646       res = FALSE;
647       gst_event_unref (event);
648       break;
649     default:
650       res = gst_pad_event_default (pad, event);
651       break;
652   }
653
654   gst_object_unref (avi);
655
656   return res;
657 }
658
659 /* streaming helper (push) */
660
661 /*
662  * gst_avi_demux_peek_chunk_info:
663  * @avi: Avi object
664  * @tag: holder for tag
665  * @size: holder for tag size
666  *
667  * Peek next chunk info (tag and size)
668  *
669  * Returns: TRUE when one chunk info has been got
670  */
671 static gboolean
672 gst_avi_demux_peek_chunk_info (GstAviDemux * avi, guint32 * tag, guint32 * size)
673 {
674   const guint8 *data = NULL;
675
676   if (gst_adapter_available (avi->adapter) < 8)
677     return FALSE;
678
679   data = gst_adapter_peek (avi->adapter, 8);
680   *tag = GST_READ_UINT32_LE (data);
681   *size = GST_READ_UINT32_LE (data + 4);
682
683   return TRUE;
684 }
685
686 /*
687  * gst_avi_demux_peek_chunk:
688  * @avi: Avi object
689  * @tag: holder for tag
690  * @size: holder for tag size
691  *
692  * Peek enough data for one full chunk
693  *
694  * Returns: %TRUE when one chunk has been got
695  */
696 static gboolean
697 gst_avi_demux_peek_chunk (GstAviDemux * avi, guint32 * tag, guint32 * size)
698 {
699   guint32 peek_size = 0;
700   gint available;
701
702   if (!gst_avi_demux_peek_chunk_info (avi, tag, size))
703     goto peek_failed;
704
705   /* size 0 -> empty data buffer would surprise most callers,
706    * large size -> do not bother trying to squeeze that into adapter,
707    * so we throw poor man's exception, which can be caught if caller really
708    * wants to handle 0 size chunk */
709   if (!(*size) || (*size) >= (1 << 30))
710     goto strange_size;
711
712   peek_size = (*size + 1) & ~1;
713   available = gst_adapter_available (avi->adapter);
714
715   GST_DEBUG_OBJECT (avi,
716       "Need to peek chunk of %d bytes to read chunk %" GST_FOURCC_FORMAT
717       ", %d bytes available", *size, GST_FOURCC_ARGS (*tag), available);
718
719   if (available < (8 + peek_size))
720     goto need_more;
721
722   return TRUE;
723
724   /* ERRORS */
725 peek_failed:
726   {
727     GST_INFO_OBJECT (avi, "Failed to peek");
728     return FALSE;
729   }
730 strange_size:
731   {
732     GST_INFO_OBJECT (avi,
733         "Invalid/unexpected chunk size %d for tag %" GST_FOURCC_FORMAT, *size,
734         GST_FOURCC_ARGS (*tag));
735     /* chain should give up */
736     avi->abort_buffering = TRUE;
737     return FALSE;
738   }
739 need_more:
740   {
741     GST_INFO_OBJECT (avi, "need more %d < %" G_GUINT32_FORMAT,
742         available, 8 + peek_size);
743     return FALSE;
744   }
745 }
746
747 /* AVI init */
748
749 /*
750  * gst_avi_demux_parse_file_header:
751  * @element: caller element (used for errors/debug).
752  * @buf: input data to be used for parsing.
753  *
754  * "Open" a RIFF/AVI file. The buffer should be at least 12
755  * bytes long. Takes ownership of @buf.
756  *
757  * Returns: TRUE if the file is a RIFF/AVI file, FALSE otherwise.
758  *          Throws an error, caller should error out (fatal).
759  */
760 static gboolean
761 gst_avi_demux_parse_file_header (GstElement * element, GstBuffer * buf)
762 {
763   guint32 doctype;
764   GstClockTime stamp;
765
766   stamp = gst_util_get_timestamp ();
767
768   /* riff_parse posts an error */
769   if (!gst_riff_parse_file_header (element, buf, &doctype))
770     return FALSE;
771
772   if (doctype != GST_RIFF_RIFF_AVI)
773     goto not_avi;
774
775   stamp = gst_util_get_timestamp () - stamp;
776   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "parsing header %" GST_TIME_FORMAT,
777       GST_TIME_ARGS (stamp));
778
779   return TRUE;
780
781   /* ERRORS */
782 not_avi:
783   {
784     GST_ELEMENT_ERROR (element, STREAM, WRONG_TYPE, (NULL),
785         ("File is not an AVI file: %" GST_FOURCC_FORMAT,
786             GST_FOURCC_ARGS (doctype)));
787     return FALSE;
788   }
789 }
790
791 /*
792  * Read AVI file tag when streaming
793  */
794 static GstFlowReturn
795 gst_avi_demux_stream_init_push (GstAviDemux * avi)
796 {
797   if (gst_adapter_available (avi->adapter) >= 12) {
798     GstBuffer *tmp;
799
800     tmp = gst_adapter_take_buffer (avi->adapter, 12);
801
802     GST_DEBUG ("Parsing avi header");
803     if (!gst_avi_demux_parse_file_header (GST_ELEMENT (avi), tmp)) {
804       return GST_FLOW_ERROR;
805     }
806     GST_DEBUG ("header ok");
807     avi->offset += 12;
808
809     avi->state = GST_AVI_DEMUX_HEADER;
810   }
811   return GST_FLOW_OK;
812 }
813
814 /*
815  * Read AVI file tag
816  */
817 static GstFlowReturn
818 gst_avi_demux_stream_init_pull (GstAviDemux * avi)
819 {
820   GstFlowReturn res;
821   GstBuffer *buf = NULL;
822
823   res = gst_pad_pull_range (avi->sinkpad, avi->offset, 12, &buf);
824   if (res != GST_FLOW_OK)
825     return res;
826   else if (!gst_avi_demux_parse_file_header (GST_ELEMENT_CAST (avi), buf))
827     goto wrong_header;
828
829   avi->offset += 12;
830
831   return GST_FLOW_OK;
832
833   /* ERRORS */
834 wrong_header:
835   {
836     GST_DEBUG_OBJECT (avi, "error parsing file header");
837     return GST_FLOW_ERROR;
838   }
839 }
840
841 /* AVI header handling */
842
843 /*
844  * gst_avi_demux_parse_avih:
845  * @element: caller element (used for errors/debug).
846  * @buf: input data to be used for parsing.
847  * @avih: pointer to structure (filled in by function) containing
848  *        stream information (such as flags, number of streams, etc.).
849  *
850  * Read 'avih' header. Discards buffer after use.
851  *
852  * Returns: TRUE on success, FALSE otherwise. Throws an error if
853  *          the header is invalid. The caller should error out
854  *          (fatal).
855  */
856 static gboolean
857 gst_avi_demux_parse_avih (GstElement * element,
858     GstBuffer * buf, gst_riff_avih ** _avih)
859 {
860   gst_riff_avih *avih;
861
862   if (buf == NULL)
863     goto no_buffer;
864
865   if (GST_BUFFER_SIZE (buf) < sizeof (gst_riff_avih))
866     goto avih_too_small;
867
868   avih = g_memdup (GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
869
870 #if (G_BYTE_ORDER == G_BIG_ENDIAN)
871   avih->us_frame = GUINT32_FROM_LE (avih->us_frame);
872   avih->max_bps = GUINT32_FROM_LE (avih->max_bps);
873   avih->pad_gran = GUINT32_FROM_LE (avih->pad_gran);
874   avih->flags = GUINT32_FROM_LE (avih->flags);
875   avih->tot_frames = GUINT32_FROM_LE (avih->tot_frames);
876   avih->init_frames = GUINT32_FROM_LE (avih->init_frames);
877   avih->streams = GUINT32_FROM_LE (avih->streams);
878   avih->bufsize = GUINT32_FROM_LE (avih->bufsize);
879   avih->width = GUINT32_FROM_LE (avih->width);
880   avih->height = GUINT32_FROM_LE (avih->height);
881   avih->scale = GUINT32_FROM_LE (avih->scale);
882   avih->rate = GUINT32_FROM_LE (avih->rate);
883   avih->start = GUINT32_FROM_LE (avih->start);
884   avih->length = GUINT32_FROM_LE (avih->length);
885 #endif
886
887   /* debug stuff */
888   GST_INFO_OBJECT (element, "avih tag found:");
889   GST_INFO_OBJECT (element, " us_frame    %u", avih->us_frame);
890   GST_INFO_OBJECT (element, " max_bps     %u", avih->max_bps);
891   GST_INFO_OBJECT (element, " pad_gran    %u", avih->pad_gran);
892   GST_INFO_OBJECT (element, " flags       0x%08x", avih->flags);
893   GST_INFO_OBJECT (element, " tot_frames  %u", avih->tot_frames);
894   GST_INFO_OBJECT (element, " init_frames %u", avih->init_frames);
895   GST_INFO_OBJECT (element, " streams     %u", avih->streams);
896   GST_INFO_OBJECT (element, " bufsize     %u", avih->bufsize);
897   GST_INFO_OBJECT (element, " width       %u", avih->width);
898   GST_INFO_OBJECT (element, " height      %u", avih->height);
899   GST_INFO_OBJECT (element, " scale       %u", avih->scale);
900   GST_INFO_OBJECT (element, " rate        %u", avih->rate);
901   GST_INFO_OBJECT (element, " start       %u", avih->start);
902   GST_INFO_OBJECT (element, " length      %u", avih->length);
903
904   *_avih = avih;
905   gst_buffer_unref (buf);
906
907   return TRUE;
908
909   /* ERRORS */
910 no_buffer:
911   {
912     GST_ELEMENT_ERROR (element, STREAM, DEMUX, (NULL), ("No buffer"));
913     return FALSE;
914   }
915 avih_too_small:
916   {
917     GST_ELEMENT_ERROR (element, STREAM, DEMUX, (NULL),
918         ("Too small avih (%d available, %d needed)",
919             GST_BUFFER_SIZE (buf), (int) sizeof (gst_riff_avih)));
920     gst_buffer_unref (buf);
921     return FALSE;
922   }
923 }
924
925 /*
926  * gst_avi_demux_parse_superindex:
927  * @avi: caller element (used for debugging/errors).
928  * @buf: input data to use for parsing.
929  * @locations: locations in the file (byte-offsets) that contain
930  *             the actual indexes (see get_avi_demux_parse_subindex()).
931  *             The array ends with GST_BUFFER_OFFSET_NONE.
932  *
933  * Reads superindex (openDML-2 spec stuff) from the provided data.
934  *
935  * Returns: TRUE on success, FALSE otherwise. Indexes should be skipped
936  *          on error, but they are not fatal.
937  */
938 static gboolean
939 gst_avi_demux_parse_superindex (GstAviDemux * avi,
940     GstBuffer * buf, guint64 ** _indexes)
941 {
942   guint8 *data;
943   guint16 bpe = 16;
944   guint32 num, i;
945   guint64 *indexes;
946   guint size;
947
948   *_indexes = NULL;
949
950   size = buf ? GST_BUFFER_SIZE (buf) : 0;
951   if (size < 24)
952     goto too_small;
953
954   data = GST_BUFFER_DATA (buf);
955
956   /* check type of index. The opendml2 specs state that
957    * there should be 4 dwords per array entry. Type can be
958    * either frame or field (and we don't care). */
959   if (GST_READ_UINT16_LE (data) != 4 ||
960       (data[2] & 0xfe) != 0x0 || data[3] != 0x0) {
961     GST_WARNING_OBJECT (avi,
962         "Superindex for stream has unexpected "
963         "size_entry %d (bytes) or flags 0x%02x/0x%02x",
964         GST_READ_UINT16_LE (data), data[2], data[3]);
965     bpe = GST_READ_UINT16_LE (data) * 4;
966   }
967   num = GST_READ_UINT32_LE (&data[4]);
968
969   indexes = g_new (guint64, num + 1);
970   for (i = 0; i < num; i++) {
971     if (size < 24 + bpe * (i + 1))
972       break;
973     indexes[i] = GST_READ_UINT64_LE (&data[24 + bpe * i]);
974   }
975   indexes[i] = GST_BUFFER_OFFSET_NONE;
976   *_indexes = indexes;
977
978   gst_buffer_unref (buf);
979
980   return TRUE;
981
982   /* ERRORS */
983 too_small:
984   {
985     GST_ERROR_OBJECT (avi,
986         "Not enough data to parse superindex (%d available, 24 needed)", size);
987     if (buf)
988       gst_buffer_unref (buf);
989     return FALSE;
990   }
991 }
992
993 #if 0
994 /*
995  * gst_avi_demux_parse_subindex:
996  * @avi: Avi object
997  * @buf: input data to use for parsing.
998  * @stream: stream context.
999  * @entries_list: a list (returned by the function) containing all the
1000  *           indexes parsed in this specific subindex. The first
1001  *           entry is also a pointer to allocated memory that needs
1002  *           to be free´ed. May be NULL if no supported indexes were
1003  *           found.
1004  *
1005  * Reads superindex (openDML-2 spec stuff) from the provided data.
1006  * The buffer will be discarded after use.
1007  * The buffer should contain a GST_RIFF_TAG_ix?? chunk.
1008  *
1009  * Returns: TRUE on success, FALSE otherwise. Errors are fatal, we
1010  *          throw an error, caller should bail out asap.
1011  */
1012 static gboolean
1013 gst_avi_demux_parse_subindex (GstAviDemux * avi,
1014     GstBuffer * buf, GstAviStream * stream, GList ** _entries_list)
1015 {
1016   guint8 *data = GST_BUFFER_DATA (buf);
1017   guint16 bpe;
1018   guint32 num, i;
1019   guint64 baseoff;
1020   gst_avi_index_entry *entries, *entry;
1021   GList *entries_list = NULL;
1022   guint size;
1023
1024 #ifndef GST_DISABLE_GST_DEBUG
1025   gulong _nr_keyframes = 0;
1026 #endif
1027
1028   *_entries_list = NULL;
1029
1030   size = buf ? GST_BUFFER_SIZE (buf) : 0;
1031
1032   /* check size */
1033   if (size < 24)
1034     goto too_small;
1035
1036   /* We don't support index-data yet */
1037   if (data[3] & 0x80)
1038     goto not_implemented;
1039
1040   /* check type of index. The opendml2 specs state that
1041    * there should be 4 dwords per array entry. Type can be
1042    * either frame or field (and we don't care). */
1043   bpe = (data[2] & 0x01) ? 12 : 8;
1044   if (GST_READ_UINT16_LE (data) != bpe / 4 ||
1045       (data[2] & 0xfe) != 0x0 || data[3] != 0x1) {
1046     GST_WARNING_OBJECT (avi,
1047         "Superindex for stream %d has unexpected "
1048         "size_entry %d (bytes) or flags 0x%02x/0x%02x",
1049         stream->num, GST_READ_UINT16_LE (data), data[2], data[3]);
1050     bpe = GST_READ_UINT16_LE (data) * 4;
1051   }
1052   num = GST_READ_UINT32_LE (&data[4]);
1053   baseoff = GST_READ_UINT64_LE (&data[12]);
1054
1055   /* If there's nothing, just return ! */
1056   if (num == 0)
1057     return TRUE;
1058
1059   if (!(entries = g_try_new (gst_avi_index_entry, num)))
1060     goto out_of_mem;
1061
1062   GST_INFO_OBJECT (avi, "Parsing subindex, nr_entries = %6d", num);
1063
1064   for (i = 0; i < num; i++) {
1065     gint64 next_ts;
1066
1067     entry = &entries[i];
1068
1069     if (size < 24 + bpe * (i + 1))
1070       break;
1071
1072     /* fill in */
1073     entry->offset = baseoff + GST_READ_UINT32_LE (&data[24 + bpe * i]);
1074     entry->size = GST_READ_UINT32_LE (&data[24 + bpe * i + 4]);
1075     entry->flags =
1076         (entry->size & 0x80000000) ? 0 : GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME;
1077     entry->size &= ~0x80000000;
1078     entry->index_nr = i;
1079     entry->stream_nr = stream->num;
1080
1081     if (stream->strh->type == GST_RIFF_FCC_auds) {
1082       /* all audio frames are keyframes */
1083       entry->flags |= GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME;
1084     }
1085 #ifndef GST_DISABLE_GST_DEBUG
1086     if (entry->flags & GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME)
1087       _nr_keyframes++;
1088 #endif
1089
1090     /* stream duration unknown, now we can calculate it */
1091     if (stream->idx_duration == -1)
1092       stream->idx_duration = 0;
1093
1094     /* timestamps */
1095     entry->ts = stream->idx_duration;
1096     if (stream->is_vbr) {
1097       /* VBR stream next timestamp */
1098       if (stream->strh->type == GST_RIFF_FCC_auds) {
1099         next_ts = avi_stream_convert_frames_to_time_unchecked (stream,
1100             stream->total_blocks + 1);
1101       } else {
1102         next_ts = avi_stream_convert_frames_to_time_unchecked (stream,
1103             stream->idx_n + 1);
1104       }
1105     } else {
1106       /* CBR get next timestamp */
1107       next_ts = avi_stream_convert_bytes_to_time_unchecked (stream,
1108           stream->total_bytes + entry->size);
1109     }
1110     /* duration is next - current */
1111     entry->dur = next_ts - entry->ts;
1112
1113     /* stream position */
1114     entry->bytes_before = stream->total_bytes;
1115     entry->frames_before = stream->idx_n;
1116
1117     stream->total_bytes += entry->size;
1118     stream->idx_n++;
1119     if (stream->strh->type == GST_RIFF_FCC_auds) {
1120       if (stream->strf.auds->blockalign > 0)
1121         stream->total_blocks +=
1122             (entry->size + stream->strf.auds->blockalign -
1123             1) / stream->strf.auds->blockalign;
1124       else
1125         stream->total_blocks++;
1126     }
1127     stream->idx_duration = next_ts;
1128
1129     entries_list = g_list_prepend (entries_list, entry);
1130   }
1131
1132   GST_INFO_OBJECT (avi, "Parsed index, %6u/%6u entries, %5lu keyframes, "
1133       "entry size = %2u, total size = %10d", i, num, _nr_keyframes,
1134       (gint) sizeof (gst_avi_index_entry),
1135       (gint) (i * sizeof (gst_avi_index_entry)));
1136
1137   gst_buffer_unref (buf);
1138
1139   if (i > 0) {
1140     *_entries_list = g_list_reverse (entries_list);
1141   } else {
1142     g_free (entries);
1143   }
1144
1145   return TRUE;
1146
1147   /* ERRORS */
1148 too_small:
1149   {
1150     GST_ERROR_OBJECT (avi,
1151         "Not enough data to parse subindex (%d available, 24 needed)", size);
1152     if (buf)
1153       gst_buffer_unref (buf);
1154     return TRUE;                /* continue */
1155   }
1156 not_implemented:
1157   {
1158     GST_ELEMENT_ERROR (avi, STREAM, NOT_IMPLEMENTED, (NULL),
1159         ("Subindex-is-data is not implemented"));
1160     gst_buffer_unref (buf);
1161     return FALSE;
1162   }
1163 out_of_mem:
1164   {
1165     GST_ELEMENT_ERROR (avi, RESOURCE, NO_SPACE_LEFT, (NULL),
1166         ("Cannot allocate memory for %u*%u=%u bytes",
1167             (guint) sizeof (gst_avi_index_entry), num,
1168             (guint) sizeof (gst_avi_index_entry) * num));
1169     gst_buffer_unref (buf);
1170     return FALSE;
1171   }
1172 }
1173 #endif
1174
1175 #if 0
1176 /*
1177  * Read AVI index when streaming
1178  */
1179 static void
1180 gst_avi_demux_read_subindexes_push (GstAviDemux * avi,
1181     GList ** index, GList ** alloc_list)
1182 {
1183   GList *list = NULL;
1184   guint32 tag = 0, size;
1185   GstBuffer *buf = NULL;
1186   gint i, n;
1187
1188   GST_DEBUG_OBJECT (avi, "gst_avi_demux_read_subindexes_push for %d streams",
1189       avi->num_streams);
1190
1191   for (n = 0; n < avi->num_streams; n++) {
1192     GstAviStream *stream = &avi->stream[n];
1193
1194     for (i = 0; stream->indexes[i] != GST_BUFFER_OFFSET_NONE; i++) {
1195       if (!gst_avi_demux_peek_chunk (avi, &tag, &size))
1196         continue;
1197       else if ((tag != GST_MAKE_FOURCC ('i', 'x', '0' + stream->num / 10,
1198                   '0' + stream->num % 10)) &&
1199           (tag != GST_MAKE_FOURCC ('0' + stream->num / 10,
1200                   '0' + stream->num % 10, 'i', 'x'))) {
1201         GST_WARNING_OBJECT (avi, "Not an ix## chunk (%" GST_FOURCC_FORMAT ")",
1202             GST_FOURCC_ARGS (tag));
1203         continue;
1204       }
1205
1206       avi->offset += 8 + GST_ROUND_UP_2 (size);
1207
1208       buf = gst_buffer_new ();
1209       GST_BUFFER_DATA (buf) = gst_adapter_take (avi->adapter, size);
1210       GST_BUFFER_SIZE (buf) = size;
1211
1212       if (!gst_avi_demux_parse_subindex (avi, buf, stream, &list))
1213         continue;
1214       if (list) {
1215         GST_DEBUG_OBJECT (avi, "  adding %d entries", g_list_length (list));
1216         *alloc_list = g_list_append (*alloc_list, list->data);
1217         *index = g_list_concat (*index, list);
1218       }
1219     }
1220
1221     g_free (stream->indexes);
1222     stream->indexes = NULL;
1223   }
1224   GST_DEBUG_OBJECT (avi, "index %s", ((*index) ? "!= 0" : "== 0"));
1225 }
1226 #endif
1227
1228 #if 0
1229 /*
1230  * Read AVI index
1231  */
1232 static void
1233 gst_avi_demux_read_subindexes_pull (GstAviDemux * avi,
1234     GList ** index, GList ** alloc_list)
1235 {
1236   GList *list = NULL;
1237   guint32 tag;
1238   GstBuffer *buf;
1239   gint i, n;
1240
1241   GST_DEBUG_OBJECT (avi, "gst_avi_demux_read_subindexes_pull for %d streams",
1242       avi->num_streams);
1243
1244   for (n = 0; n < avi->num_streams; n++) {
1245     GstAviStream *stream = &avi->stream[n];
1246
1247     for (i = 0; stream->indexes[i] != GST_BUFFER_OFFSET_NONE; i++) {
1248       if (gst_riff_read_chunk (GST_ELEMENT (avi), avi->sinkpad,
1249               &stream->indexes[i], &tag, &buf) != GST_FLOW_OK)
1250         continue;
1251       else if ((tag != GST_MAKE_FOURCC ('i', 'x', '0' + stream->num / 10,
1252                   '0' + stream->num % 10)) &&
1253           (tag != GST_MAKE_FOURCC ('0' + stream->num / 10,
1254                   '0' + stream->num % 10, 'i', 'x'))) {
1255         /* Some ODML files (created by god knows what muxer) have a ##ix format
1256          * instead of the 'official' ix##. They are still valid though. */
1257         GST_WARNING_OBJECT (avi, "Not an ix## chunk (%" GST_FOURCC_FORMAT ")",
1258             GST_FOURCC_ARGS (tag));
1259         gst_buffer_unref (buf);
1260         continue;
1261       }
1262
1263       if (!gst_avi_demux_parse_subindex (avi, buf, stream, &list))
1264         continue;
1265       if (list) {
1266         GST_DEBUG_OBJECT (avi, "  adding %5d entries, total %2d %5d",
1267             g_list_length (list), g_list_length (*alloc_list),
1268             g_list_length (*index));
1269         *alloc_list = g_list_append (*alloc_list, list->data);
1270         *index = g_list_concat (*index, list);
1271       }
1272     }
1273
1274     g_free (stream->indexes);
1275     stream->indexes = NULL;
1276   }
1277   GST_DEBUG_OBJECT (avi, "index %s", ((*index) ? "!= 0" : "== 0"));
1278 }
1279 #endif
1280
1281 /*
1282  * gst_avi_demux_riff_parse_vprp:
1283  * @element: caller element (used for debugging/error).
1284  * @buf: input data to be used for parsing, stripped from header.
1285  * @vprp: a pointer (returned by this function) to a filled-in vprp
1286  *        structure. Caller should free it.
1287  *
1288  * Parses a video stream´s vprp. This function takes ownership of @buf.
1289  *
1290  * Returns: TRUE if parsing succeeded, otherwise FALSE. The stream
1291  *          should be skipped on error, but it is not fatal.
1292  */
1293 static gboolean
1294 gst_avi_demux_riff_parse_vprp (GstElement * element,
1295     GstBuffer * buf, gst_riff_vprp ** _vprp)
1296 {
1297   gst_riff_vprp *vprp;
1298   gint k;
1299
1300   g_return_val_if_fail (buf != NULL, FALSE);
1301   g_return_val_if_fail (_vprp != NULL, FALSE);
1302
1303   if (GST_BUFFER_SIZE (buf) < G_STRUCT_OFFSET (gst_riff_vprp, field_info))
1304     goto too_small;
1305
1306   vprp = g_memdup (GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
1307
1308 #if (G_BYTE_ORDER == G_BIG_ENDIAN)
1309   vprp->format_token = GUINT32_FROM_LE (vprp->format_token);
1310   vprp->standard = GUINT32_FROM_LE (vprp->standard);
1311   vprp->vert_rate = GUINT32_FROM_LE (vprp->vert_rate);
1312   vprp->hor_t_total = GUINT32_FROM_LE (vprp->hor_t_total);
1313   vprp->vert_lines = GUINT32_FROM_LE (vprp->vert_lines);
1314   vprp->aspect = GUINT32_FROM_LE (vprp->aspect);
1315   vprp->width = GUINT32_FROM_LE (vprp->width);
1316   vprp->height = GUINT32_FROM_LE (vprp->height);
1317   vprp->fields = GUINT32_FROM_LE (vprp->fields);
1318 #endif
1319
1320   /* size checking */
1321   /* calculate fields based on size */
1322   k = (GST_BUFFER_SIZE (buf) - G_STRUCT_OFFSET (gst_riff_vprp, field_info)) /
1323       vprp->fields;
1324   if (vprp->fields > k) {
1325     GST_WARNING_OBJECT (element,
1326         "vprp header indicated %d fields, only %d available", vprp->fields, k);
1327     vprp->fields = k;
1328   }
1329   if (vprp->fields > GST_RIFF_VPRP_VIDEO_FIELDS) {
1330     GST_WARNING_OBJECT (element,
1331         "vprp header indicated %d fields, at most %d supported", vprp->fields,
1332         GST_RIFF_VPRP_VIDEO_FIELDS);
1333     vprp->fields = GST_RIFF_VPRP_VIDEO_FIELDS;
1334   }
1335 #if (G_BYTE_ORDER == G_BIG_ENDIAN)
1336   for (k = 0; k < vprp->fields; k++) {
1337     gst_riff_vprp_video_field_desc *fd;
1338
1339     fd = &vprp->field_info[k];
1340     fd->compressed_bm_height = GUINT32_FROM_LE (fd->compressed_bm_height);
1341     fd->compressed_bm_width = GUINT32_FROM_LE (fd->compressed_bm_width);
1342     fd->valid_bm_height = GUINT32_FROM_LE (fd->valid_bm_height);
1343     fd->valid_bm_width = GUINT16_FROM_LE (fd->valid_bm_width);
1344     fd->valid_bm_x_offset = GUINT16_FROM_LE (fd->valid_bm_x_offset);
1345     fd->valid_bm_y_offset = GUINT32_FROM_LE (fd->valid_bm_y_offset);
1346     fd->video_x_t_offset = GUINT32_FROM_LE (fd->video_x_t_offset);
1347     fd->video_y_start = GUINT32_FROM_LE (fd->video_y_start);
1348   }
1349 #endif
1350
1351   /* debug */
1352   GST_INFO_OBJECT (element, "vprp tag found in context vids:");
1353   GST_INFO_OBJECT (element, " format_token  %d", vprp->format_token);
1354   GST_INFO_OBJECT (element, " standard      %d", vprp->standard);
1355   GST_INFO_OBJECT (element, " vert_rate     %d", vprp->vert_rate);
1356   GST_INFO_OBJECT (element, " hor_t_total   %d", vprp->hor_t_total);
1357   GST_INFO_OBJECT (element, " vert_lines    %d", vprp->vert_lines);
1358   GST_INFO_OBJECT (element, " aspect        %d:%d", vprp->aspect >> 16,
1359       vprp->aspect & 0xffff);
1360   GST_INFO_OBJECT (element, " width         %d", vprp->width);
1361   GST_INFO_OBJECT (element, " height        %d", vprp->height);
1362   GST_INFO_OBJECT (element, " fields        %d", vprp->fields);
1363   for (k = 0; k < vprp->fields; k++) {
1364     gst_riff_vprp_video_field_desc *fd;
1365
1366     fd = &(vprp->field_info[k]);
1367     GST_INFO_OBJECT (element, " field %u description:", k);
1368     GST_INFO_OBJECT (element, "  compressed_bm_height  %d",
1369         fd->compressed_bm_height);
1370     GST_INFO_OBJECT (element, "  compressed_bm_width  %d",
1371         fd->compressed_bm_width);
1372     GST_INFO_OBJECT (element, "  valid_bm_height       %d",
1373         fd->valid_bm_height);
1374     GST_INFO_OBJECT (element, "  valid_bm_width        %d", fd->valid_bm_width);
1375     GST_INFO_OBJECT (element, "  valid_bm_x_offset     %d",
1376         fd->valid_bm_x_offset);
1377     GST_INFO_OBJECT (element, "  valid_bm_y_offset     %d",
1378         fd->valid_bm_y_offset);
1379     GST_INFO_OBJECT (element, "  video_x_t_offset      %d",
1380         fd->video_x_t_offset);
1381     GST_INFO_OBJECT (element, "  video_y_start         %d", fd->video_y_start);
1382   }
1383
1384   gst_buffer_unref (buf);
1385
1386   *_vprp = vprp;
1387
1388   return TRUE;
1389
1390   /* ERRORS */
1391 too_small:
1392   {
1393     GST_ERROR_OBJECT (element,
1394         "Too small vprp (%d available, at least %d needed)",
1395         GST_BUFFER_SIZE (buf),
1396         (int) G_STRUCT_OFFSET (gst_riff_vprp, field_info));
1397     gst_buffer_unref (buf);
1398     return FALSE;
1399   }
1400 }
1401
1402 /*
1403  * gst_avi_demux_parse_stream:
1404  * @avi: calling element (used for debugging/errors).
1405  * @buf: input buffer used to parse the stream.
1406  *
1407  * Parses all subchunks in a strl chunk (which defines a single
1408  * stream). Discards the buffer after use. This function will
1409  * increment the stream counter internally.
1410  *
1411  * Returns: whether the stream was identified successfully.
1412  *          Errors are not fatal. It does indicate the stream
1413  *          was skipped.
1414  */
1415 static gboolean
1416 gst_avi_demux_parse_stream (GstAviDemux * avi, GstBuffer * buf)
1417 {
1418   GstAviStream *stream;
1419   GstElementClass *klass;
1420   GstPadTemplate *templ;
1421   GstBuffer *sub = NULL;
1422   guint offset = 4;
1423   guint32 tag = 0;
1424   gchar *codec_name = NULL, *padname = NULL;
1425   const gchar *tag_name;
1426   GstCaps *caps = NULL;
1427   GstPad *pad;
1428   GstElement *element;
1429   gboolean got_strh = FALSE, got_strf = FALSE, got_vprp = FALSE;
1430   gst_riff_vprp *vprp = NULL;
1431
1432   element = GST_ELEMENT_CAST (avi);
1433
1434   GST_DEBUG_OBJECT (avi, "Parsing stream");
1435
1436   if (avi->num_streams >= GST_AVI_DEMUX_MAX_STREAMS) {
1437     GST_WARNING_OBJECT (avi,
1438         "maximum no of streams (%d) exceeded, ignoring stream",
1439         GST_AVI_DEMUX_MAX_STREAMS);
1440     gst_buffer_unref (buf);
1441     /* not a fatal error, let's say */
1442     return TRUE;
1443   }
1444
1445   stream = &avi->stream[avi->num_streams];
1446
1447   /* initial settings */
1448   stream->idx_duration = GST_CLOCK_TIME_NONE;
1449   stream->hdr_duration = GST_CLOCK_TIME_NONE;
1450   stream->duration = GST_CLOCK_TIME_NONE;
1451
1452   while (gst_riff_parse_chunk (element, buf, &offset, &tag, &sub)) {
1453     /* sub can be NULL if the chunk is empty */
1454     if (sub == NULL) {
1455       GST_DEBUG_OBJECT (avi, "ignoring empty chunk %" GST_FOURCC_FORMAT,
1456           GST_FOURCC_ARGS (tag));
1457       continue;
1458     }
1459     switch (tag) {
1460       case GST_RIFF_TAG_strh:
1461       {
1462         gst_riff_strh *strh;
1463
1464         if (got_strh) {
1465           GST_WARNING_OBJECT (avi, "Ignoring additional strh chunk");
1466           break;
1467         }
1468         if (!gst_riff_parse_strh (element, sub, &stream->strh)) {
1469           /* ownership given away */
1470           sub = NULL;
1471           GST_WARNING_OBJECT (avi, "Failed to parse strh chunk");
1472           goto fail;
1473         }
1474         sub = NULL;
1475         strh = stream->strh;
1476         /* sanity check; stream header frame rate matches global header
1477          * frame duration */
1478         if (stream->strh->type == GST_RIFF_FCC_vids) {
1479           GstClockTime s_dur;
1480           GstClockTime h_dur = avi->avih->us_frame * GST_USECOND;
1481
1482           s_dur = gst_util_uint64_scale (GST_SECOND, strh->scale, strh->rate);
1483           GST_DEBUG_OBJECT (avi, "verifying stream framerate %d/%d, "
1484               "frame duration = %d ms", strh->rate, strh->scale,
1485               (gint) (s_dur / GST_MSECOND));
1486           if (h_dur > (10 * GST_MSECOND) && (s_dur > 10 * h_dur)) {
1487             strh->rate = GST_SECOND / GST_USECOND;
1488             strh->scale = h_dur / GST_USECOND;
1489             GST_DEBUG_OBJECT (avi, "correcting stream framerate to %d/%d",
1490                 strh->rate, strh->scale);
1491           }
1492         }
1493         /* determine duration as indicated by header */
1494         stream->hdr_duration = gst_util_uint64_scale ((guint64) strh->length *
1495             strh->scale, GST_SECOND, (guint64) strh->rate);
1496         GST_INFO ("Stream duration according to header: %" GST_TIME_FORMAT,
1497             GST_TIME_ARGS (stream->hdr_duration));
1498         if (stream->hdr_duration == 0)
1499           stream->hdr_duration = GST_CLOCK_TIME_NONE;
1500
1501         got_strh = TRUE;
1502         break;
1503       }
1504       case GST_RIFF_TAG_strf:
1505       {
1506         gboolean res = FALSE;
1507
1508         if (got_strf) {
1509           GST_WARNING_OBJECT (avi, "Ignoring additional strf chunk");
1510           break;
1511         }
1512         if (!got_strh) {
1513           GST_ERROR_OBJECT (avi, "Found strf chunk before strh chunk");
1514           goto fail;
1515         }
1516         switch (stream->strh->type) {
1517           case GST_RIFF_FCC_vids:
1518             stream->is_vbr = TRUE;
1519             res = gst_riff_parse_strf_vids (element, sub,
1520                 &stream->strf.vids, &stream->extradata);
1521             sub = NULL;
1522             GST_DEBUG_OBJECT (element, "marking video as VBR, res %d", res);
1523             break;
1524           case GST_RIFF_FCC_auds:
1525             stream->is_vbr = (stream->strh->samplesize == 0)
1526                 && stream->strh->scale > 1;
1527             res =
1528                 gst_riff_parse_strf_auds (element, sub, &stream->strf.auds,
1529                 &stream->extradata);
1530             sub = NULL;
1531             GST_DEBUG_OBJECT (element, "marking audio as VBR:%d, res %d",
1532                 stream->is_vbr, res);
1533             break;
1534           case GST_RIFF_FCC_iavs:
1535             stream->is_vbr = TRUE;
1536             res = gst_riff_parse_strf_iavs (element, sub,
1537                 &stream->strf.iavs, &stream->extradata);
1538             sub = NULL;
1539             GST_DEBUG_OBJECT (element, "marking iavs as VBR, res %d", res);
1540             break;
1541           case GST_RIFF_FCC_txts:
1542             /* nothing to parse here */
1543             stream->is_vbr = (stream->strh->samplesize == 0)
1544                 && (stream->strh->scale > 1);
1545             res = TRUE;
1546             break;
1547           default:
1548             GST_ERROR_OBJECT (avi,
1549                 "Don´t know how to handle stream type %" GST_FOURCC_FORMAT,
1550                 GST_FOURCC_ARGS (stream->strh->type));
1551             break;
1552         }
1553         if (sub) {
1554           gst_buffer_unref (sub);
1555           sub = NULL;
1556         }
1557         if (!res)
1558           goto fail;
1559         got_strf = TRUE;
1560         break;
1561       }
1562       case GST_RIFF_TAG_vprp:
1563       {
1564         if (got_vprp) {
1565           GST_WARNING_OBJECT (avi, "Ignoring additional vprp chunk");
1566           break;
1567         }
1568         if (!got_strh) {
1569           GST_ERROR_OBJECT (avi, "Found vprp chunk before strh chunk");
1570           goto fail;
1571         }
1572         if (!got_strf) {
1573           GST_ERROR_OBJECT (avi, "Found vprp chunk before strf chunk");
1574           goto fail;
1575         }
1576
1577         if (!gst_avi_demux_riff_parse_vprp (element, sub, &vprp)) {
1578           GST_WARNING_OBJECT (avi, "Failed to parse vprp chunk");
1579           /* not considered fatal */
1580           g_free (vprp);
1581           vprp = NULL;
1582         } else
1583           got_vprp = TRUE;
1584         sub = NULL;
1585         break;
1586       }
1587       case GST_RIFF_TAG_strd:
1588         if (stream->initdata)
1589           gst_buffer_unref (stream->initdata);
1590         stream->initdata = sub;
1591         sub = NULL;
1592         break;
1593       case GST_RIFF_TAG_strn:
1594         g_free (stream->name);
1595         if (sub != NULL) {
1596           stream->name =
1597               g_strndup ((gchar *) GST_BUFFER_DATA (sub),
1598               (gsize) GST_BUFFER_SIZE (sub));
1599           gst_buffer_unref (sub);
1600           sub = NULL;
1601         } else {
1602           stream->name = g_strdup ("");
1603         }
1604         GST_DEBUG_OBJECT (avi, "stream name: %s", stream->name);
1605         break;
1606       default:
1607         if (tag == GST_MAKE_FOURCC ('i', 'n', 'd', 'x') ||
1608             tag == GST_MAKE_FOURCC ('i', 'x', '0' + avi->num_streams / 10,
1609                 '0' + avi->num_streams % 10)) {
1610           g_free (stream->indexes);
1611           gst_avi_demux_parse_superindex (avi, sub, &stream->indexes);
1612           stream->superindex = TRUE;
1613           sub = NULL;
1614           break;
1615         }
1616         GST_WARNING_OBJECT (avi,
1617             "Unknown stream header tag %" GST_FOURCC_FORMAT ", ignoring",
1618             GST_FOURCC_ARGS (tag));
1619         /* fall-through */
1620       case GST_RIFF_TAG_JUNK:
1621         break;
1622     }
1623     if (sub != NULL) {
1624       gst_buffer_unref (sub);
1625       sub = NULL;
1626     }
1627   }
1628
1629   if (!got_strh) {
1630     GST_WARNING_OBJECT (avi, "Failed to find strh chunk");
1631     goto fail;
1632   }
1633
1634   if (!got_strf) {
1635     GST_WARNING_OBJECT (avi, "Failed to find strf chunk");
1636     goto fail;
1637   }
1638
1639   /* get class to figure out the template */
1640   klass = GST_ELEMENT_GET_CLASS (avi);
1641
1642   /* we now have all info, let´s set up a pad and a caps and be done */
1643   /* create stream name + pad */
1644   switch (stream->strh->type) {
1645     case GST_RIFF_FCC_vids:{
1646       guint32 fourcc;
1647
1648       fourcc = (stream->strf.vids->compression) ?
1649           stream->strf.vids->compression : stream->strh->fcc_handler;
1650       padname = g_strdup_printf ("video_%02d", avi->num_v_streams);
1651       templ = gst_element_class_get_pad_template (klass, "video_%02d");
1652       caps = gst_riff_create_video_caps (fourcc, stream->strh,
1653           stream->strf.vids, stream->extradata, stream->initdata, &codec_name);
1654       if (!caps) {
1655         caps = gst_caps_new_simple ("video/x-avi-unknown", "fourcc",
1656             GST_TYPE_FOURCC, fourcc, NULL);
1657       } else if (got_vprp && vprp) {
1658         guint32 aspect_n, aspect_d;
1659         gint n, d;
1660
1661         aspect_n = vprp->aspect >> 16;
1662         aspect_d = vprp->aspect & 0xffff;
1663         /* calculate the pixel aspect ratio using w/h and aspect ratio */
1664         n = aspect_n * stream->strf.vids->height;
1665         d = aspect_d * stream->strf.vids->width;
1666         if (n && d)
1667           gst_caps_set_simple (caps, "pixel-aspect-ratio", GST_TYPE_FRACTION,
1668               n, d, NULL);
1669         /* very local, not needed elsewhere */
1670         g_free (vprp);
1671         vprp = NULL;
1672       }
1673       tag_name = GST_TAG_VIDEO_CODEC;
1674       avi->num_v_streams++;
1675       break;
1676     }
1677     case GST_RIFF_FCC_auds:{
1678       padname = g_strdup_printf ("audio_%02d", avi->num_a_streams);
1679       templ = gst_element_class_get_pad_template (klass, "audio_%02d");
1680       caps = gst_riff_create_audio_caps (stream->strf.auds->format,
1681           stream->strh, stream->strf.auds, stream->extradata,
1682           stream->initdata, &codec_name);
1683       if (!caps) {
1684         caps = gst_caps_new_simple ("audio/x-avi-unknown", "codec_id",
1685             G_TYPE_INT, stream->strf.auds->format, NULL);
1686       }
1687       tag_name = GST_TAG_AUDIO_CODEC;
1688       avi->num_a_streams++;
1689       break;
1690     }
1691     case GST_RIFF_FCC_iavs:{
1692       guint32 fourcc = stream->strh->fcc_handler;
1693
1694       padname = g_strdup_printf ("video_%02d", avi->num_v_streams);
1695       templ = gst_element_class_get_pad_template (klass, "video_%02d");
1696       caps = gst_riff_create_iavs_caps (fourcc, stream->strh,
1697           stream->strf.iavs, stream->extradata, stream->initdata, &codec_name);
1698       if (!caps) {
1699         caps = gst_caps_new_simple ("video/x-avi-unknown", "fourcc",
1700             GST_TYPE_FOURCC, fourcc, NULL);
1701       }
1702       tag_name = GST_TAG_VIDEO_CODEC;
1703       avi->num_v_streams++;
1704       break;
1705     }
1706     case GST_RIFF_FCC_txts:{
1707       padname = g_strdup_printf ("subtitle_%02d", avi->num_t_streams);
1708       templ = gst_element_class_get_pad_template (klass, "subtitle_%02d");
1709       caps = gst_caps_new_simple ("application/x-subtitle-avi", NULL);
1710       tag_name = NULL;
1711       avi->num_t_streams++;
1712       break;
1713     }
1714     default:
1715       g_assert_not_reached ();
1716   }
1717
1718   /* no caps means no stream */
1719   if (!caps) {
1720     GST_ERROR_OBJECT (element, "Did not find caps for stream %s", padname);
1721     goto fail;
1722   }
1723
1724   GST_DEBUG_OBJECT (element, "codec-name=%s",
1725       (codec_name ? codec_name : "NULL"));
1726   GST_DEBUG_OBJECT (element, "caps=%" GST_PTR_FORMAT, caps);
1727
1728   /* set proper settings and add it */
1729   if (stream->pad)
1730     gst_object_unref (stream->pad);
1731   pad = stream->pad = gst_pad_new_from_template (templ, padname);
1732   stream->last_flow = GST_FLOW_OK;
1733   stream->discont = TRUE;
1734   g_free (padname);
1735
1736   gst_pad_use_fixed_caps (pad);
1737 #if 0
1738   gst_pad_set_formats_function (pad,
1739       GST_DEBUG_FUNCPTR (gst_avi_demux_get_src_formats));
1740   gst_pad_set_event_mask_function (pad,
1741       GST_DEBUG_FUNCPTR (gst_avi_demux_get_event_mask));
1742 #endif
1743   gst_pad_set_event_function (pad,
1744       GST_DEBUG_FUNCPTR (gst_avi_demux_handle_src_event));
1745   gst_pad_set_query_type_function (pad,
1746       GST_DEBUG_FUNCPTR (gst_avi_demux_get_src_query_types));
1747   gst_pad_set_query_function (pad,
1748       GST_DEBUG_FUNCPTR (gst_avi_demux_handle_src_query));
1749 #if 0
1750   gst_pad_set_convert_function (pad,
1751       GST_DEBUG_FUNCPTR (gst_avi_demux_src_convert));
1752 #endif
1753
1754   stream->num = avi->num_streams;
1755   stream->total_bytes = 0;
1756   stream->idx_n = 0;
1757   stream->total_blocks = 0;
1758   stream->current_frame = 0;
1759   stream->current_byte = 0;
1760   gst_pad_set_element_private (pad, stream);
1761   avi->num_streams++;
1762   gst_pad_set_caps (pad, caps);
1763   gst_pad_set_active (pad, TRUE);
1764   gst_element_add_pad (GST_ELEMENT (avi), pad);
1765   GST_LOG_OBJECT (element, "Added pad %s with caps %" GST_PTR_FORMAT,
1766       GST_PAD_NAME (pad), caps);
1767   gst_caps_unref (caps);
1768
1769   /* make tags */
1770   if (codec_name) {
1771     if (!stream->taglist)
1772       stream->taglist = gst_tag_list_new ();
1773
1774     avi->got_tags = TRUE;
1775
1776     gst_tag_list_add (stream->taglist, GST_TAG_MERGE_APPEND, tag_name,
1777         codec_name, NULL);
1778     g_free (codec_name);
1779   }
1780
1781   gst_buffer_unref (buf);
1782
1783   return TRUE;
1784
1785   /* ERRORS */
1786 fail:
1787   {
1788     /* unref any mem that may be in use */
1789     if (buf)
1790       gst_buffer_unref (buf);
1791     if (sub)
1792       gst_buffer_unref (sub);
1793     g_free (vprp);
1794     g_free (codec_name);
1795     g_free (stream->strh);
1796     g_free (stream->strf.data);
1797     g_free (stream->name);
1798     g_free (stream->indexes);
1799     if (stream->initdata)
1800       gst_buffer_unref (stream->initdata);
1801     if (stream->extradata)
1802       gst_buffer_unref (stream->extradata);
1803     memset (stream, 0, sizeof (GstAviStream));
1804     avi->num_streams++;
1805     return FALSE;
1806   }
1807 }
1808
1809 /*
1810  * gst_avi_demux_parse_odml:
1811  * @avi: calling element (used for debug/error).
1812  * @buf: input buffer to be used for parsing.
1813  *
1814  * Read an openDML-2.0 extension header. Fills in the frame number
1815  * in the avi demuxer object when reading succeeds.
1816  */
1817 static void
1818 gst_avi_demux_parse_odml (GstAviDemux * avi, GstBuffer * buf)
1819 {
1820   guint32 tag = 0;
1821   guint offset = 4;
1822   GstBuffer *sub = NULL;
1823
1824   while (gst_riff_parse_chunk (GST_ELEMENT_CAST (avi), buf, &offset, &tag,
1825           &sub)) {
1826     switch (tag) {
1827       case GST_RIFF_TAG_dmlh:{
1828         gst_riff_dmlh dmlh, *_dmlh;
1829         guint size;
1830
1831         /* sub == NULL is possible and means an empty buffer */
1832         size = sub ? GST_BUFFER_SIZE (sub) : 0;
1833
1834         /* check size */
1835         if (size < sizeof (gst_riff_dmlh)) {
1836           GST_ERROR_OBJECT (avi,
1837               "DMLH entry is too small (%d bytes, %d needed)",
1838               size, (int) sizeof (gst_riff_dmlh));
1839           goto next;
1840         }
1841         _dmlh = (gst_riff_dmlh *) GST_BUFFER_DATA (sub);
1842         dmlh.totalframes = GST_READ_UINT32_LE (&_dmlh->totalframes);
1843
1844         GST_INFO_OBJECT (avi, "dmlh tag found: totalframes: %u",
1845             dmlh.totalframes);
1846
1847         avi->avih->tot_frames = dmlh.totalframes;
1848         goto next;
1849       }
1850
1851       default:
1852         GST_WARNING_OBJECT (avi,
1853             "Unknown tag %" GST_FOURCC_FORMAT " in ODML header",
1854             GST_FOURCC_ARGS (tag));
1855         /* fall-through */
1856       case GST_RIFF_TAG_JUNK:
1857       next:
1858         /* skip and move to next chunk */
1859         if (sub) {
1860           gst_buffer_unref (sub);
1861           sub = NULL;
1862         }
1863         break;
1864     }
1865   }
1866   if (buf)
1867     gst_buffer_unref (buf);
1868 }
1869
1870 /* Index helper */
1871 static guint
1872 gst_avi_demux_index_last (GstAviDemux * avi, GstAviStream * stream)
1873 {
1874   return stream->idx_n - 1;
1875 }
1876
1877 /* find a previous entry in the index with the given flags */
1878 static guint
1879 gst_avi_demux_index_prev (GstAviDemux * avi, GstAviStream * stream,
1880     guint last, gboolean keyframe)
1881 {
1882   GstAviIndexEntry *entry;
1883   guint i;
1884
1885   for (i = last; i > 0; i--) {
1886     entry = &stream->index[i - 1];
1887     if (!keyframe || ENTRY_IS_KEYFRAME (entry)) {
1888       return i;
1889     }
1890   }
1891   return 0;
1892 }
1893
1894 static guint
1895 gst_avi_demux_index_next (GstAviDemux * avi, GstAviStream * stream,
1896     guint last, gboolean keyframe)
1897 {
1898   GstAviIndexEntry *entry;
1899   gint i;
1900
1901   for (i = last + 1; i < stream->idx_n; i++) {
1902     entry = &stream->index[i];
1903     if (!keyframe || ENTRY_IS_KEYFRAME (entry)) {
1904       return i;
1905     }
1906   }
1907   return stream->idx_n - 1;
1908 }
1909
1910 static guint
1911 gst_avi_demux_index_entry_search (GstAviIndexEntry * entry, guint64 * total)
1912 {
1913   if (entry->total < *total)
1914     return -1;
1915   else if (entry->total > *total)
1916     return 1;
1917   return 0;
1918 }
1919
1920 /*
1921  * gst_avi_index_entry:
1922  * @avi: Avi object
1923  * @stream: the stream
1924  * @time: seek time position
1925  *
1926  * Finds the index entry which time is less or equal than the requested time.
1927  *
1928  * Returns: the found position in the index.
1929  */
1930 static guint
1931 gst_avi_demux_index_for_time (GstAviDemux * avi,
1932     GstAviStream * stream, guint64 time)
1933 {
1934   guint index = -1;
1935   guint64 total;
1936
1937   GST_LOG_OBJECT (avi, "search time:%" GST_TIME_FORMAT, GST_TIME_ARGS (time));
1938
1939   /* easy (and common) cases */
1940   if (time == 0 || stream->idx_n == 0)
1941     return 0;
1942   if (time >= stream->idx_duration)
1943     return stream->idx_n - 1;
1944
1945   /* figure out where we need to go. For that we convert the time to an
1946    * index entry or we convert it to a total and then do a binary search. */
1947   if (stream->is_vbr) {
1948     /* VBR stream next timestamp */
1949     if (stream->strh->type == GST_RIFF_FCC_auds) {
1950       total = avi_stream_convert_time_to_frames_unchecked (stream, time);
1951     } else {
1952       index = avi_stream_convert_time_to_frames_unchecked (stream, time);
1953     }
1954   } else {
1955     /* constant rate stream */
1956     total = avi_stream_convert_time_to_bytes_unchecked (stream, time);
1957   }
1958
1959   if (index == -1) {
1960     GstAviIndexEntry *entry;
1961
1962     /* no index, find index with binary search on total */
1963     GST_LOG_OBJECT (avi, "binary search for entry with total %"
1964         G_GUINT64_FORMAT, total);
1965
1966     entry = gst_util_array_binary_search (stream->index,
1967         stream->idx_n, sizeof (GstAviIndexEntry),
1968         (GCompareDataFunc) gst_avi_demux_index_entry_search,
1969         GST_SEARCH_MODE_BEFORE, &total, NULL);
1970
1971     if (entry == NULL) {
1972       GST_LOG_OBJECT (avi, "not found, assume index 0");
1973       index = 0;
1974     } else {
1975       index = entry - stream->index;
1976       GST_LOG_OBJECT (avi, "found at %u", index);
1977     }
1978   }
1979
1980   return index;
1981 }
1982
1983 static void
1984 gst_avi_demux_get_entry_info (GstAviDemux * avi, GstAviStream * stream,
1985     guint entry_n, GstClockTime * timestamp, GstClockTime * duration,
1986     guint64 * offset, guint64 * size, gboolean * keyframe)
1987 {
1988   GstAviIndexEntry *entry;
1989   GstClockTime next_ts = 0, ts = 0;
1990
1991   entry = &stream->index[entry_n];
1992
1993   if (stream->is_vbr) {
1994     /* VBR stream next timestamp */
1995     if (stream->strh->type == GST_RIFF_FCC_auds) {
1996       if (timestamp || duration)
1997         ts = avi_stream_convert_frames_to_time_unchecked (stream, entry->total);
1998       if (duration)
1999         next_ts = avi_stream_convert_frames_to_time_unchecked (stream,
2000             entry->total + entry->size);
2001     } else {
2002       if (timestamp || duration)
2003         ts = avi_stream_convert_frames_to_time_unchecked (stream, entry_n);
2004       if (duration)
2005         next_ts = avi_stream_convert_frames_to_time_unchecked (stream,
2006             entry_n + 1);
2007     }
2008   } else {
2009     /* constant rate stream */
2010     if (timestamp || duration)
2011       ts = avi_stream_convert_bytes_to_time_unchecked (stream, entry->total);
2012     if (duration)
2013       next_ts = avi_stream_convert_bytes_to_time_unchecked (stream,
2014           entry->total + entry->size);
2015   }
2016   if (timestamp)
2017     *timestamp = ts;
2018   if (duration)
2019     *duration = next_ts - ts;
2020
2021   if (offset)
2022     *offset = entry->offset;
2023   if (size)
2024     *size = entry->size;
2025   if (keyframe)
2026     *keyframe = ENTRY_IS_KEYFRAME (entry);
2027 }
2028
2029
2030 /*
2031  * gst_avi_demux_parse_index:
2032  * @avi: calling element (used for debugging/errors).
2033  * @buf: buffer containing the full index.
2034  *
2035  * Read index entries from the provided buffer.
2036  * The buffer should contain a GST_RIFF_TAG_idx1 chunk.
2037  */
2038 static void
2039 gst_avi_demux_parse_index (GstAviDemux * avi, GstBuffer * buf)
2040 {
2041   guint64 pos_before;
2042   guint8 *data;
2043   guint size;
2044   guint i, num, n;
2045   gst_riff_index_entry *index;
2046   GstClockTime stamp;
2047   GstAviStream *stream;
2048 #ifndef GST_DISABLE_GST_DEBUG
2049   guint total_idx = 0, total_max = 0;
2050 #endif
2051
2052   if (!buf)
2053     goto empty_list;
2054
2055   data = GST_BUFFER_DATA (buf);
2056   size = GST_BUFFER_SIZE (buf);
2057
2058   stamp = gst_util_get_timestamp ();
2059
2060   num = size / sizeof (gst_riff_index_entry);
2061   if (num == 0)
2062     goto empty_list;
2063
2064   index = (gst_riff_index_entry *) data;
2065
2066   pos_before = avi->offset;
2067   GST_INFO_OBJECT (avi, "Parsing index, nr_entries = %6d", num);
2068
2069   for (i = 0, n = 0; i < num; i++) {
2070     GstAviIndexEntry entry;
2071     guint32 id;
2072     guint stream_nr;
2073
2074     id = GST_READ_UINT32_LE (&index[i].id);
2075     entry.offset = GST_READ_UINT32_LE (&index[i].offset);
2076
2077     /* some sanity checks */
2078     if (G_UNLIKELY (id == GST_RIFF_rec || id == 0 ||
2079             (entry.offset == 0 && n > 0)))
2080       continue;
2081
2082     /* figure out if the index is 0 based or relative to the MOVI start */
2083     if (G_UNLIKELY (n == 0)) {
2084       if (entry.offset < pos_before)
2085         avi->index_offset = pos_before + 8;
2086       else
2087         avi->index_offset = 0;
2088       GST_DEBUG ("index_offset = %" G_GUINT64_FORMAT, avi->index_offset);
2089     }
2090
2091     /* get the stream for this entry */
2092     stream_nr = CHUNKID_TO_STREAMNR (id);
2093     if (G_UNLIKELY (stream_nr >= avi->num_streams)) {
2094       GST_WARNING_OBJECT (avi,
2095           "Index entry %d has invalid stream nr %d", i, stream_nr);
2096       continue;
2097     }
2098     stream = &avi->stream[stream_nr];
2099     if (G_UNLIKELY (!stream->strh)) {
2100       GST_WARNING_OBJECT (avi, "Unhandled stream %d, skipping", stream_nr);
2101       continue;
2102     }
2103
2104     /* handle flags */
2105     if (stream->strh->type == GST_RIFF_FCC_auds) {
2106       /* all audio frames are keyframes */
2107       ENTRY_SET_KEYFRAME (&entry);
2108       stream->n_keyframes++;
2109     } else {
2110       guint32 flags;
2111       /* else read flags */
2112       flags = GST_READ_UINT32_LE (&index[i].flags);
2113       if (flags & GST_RIFF_IF_KEYFRAME) {
2114         ENTRY_SET_KEYFRAME (&entry);
2115         stream->n_keyframes++;
2116       } else {
2117         ENTRY_UNSET_KEYFRAME (&entry);
2118       }
2119     }
2120
2121     /* handle size */
2122     entry.size = GST_READ_UINT32_LE (&index[i].size);
2123
2124     /* update stats */
2125     entry.total = stream->total_bytes;
2126     stream->total_bytes += entry.size;
2127     if (stream->strh->type == GST_RIFF_FCC_auds) {
2128       gint blockalign = stream->strf.auds->blockalign;
2129       if (blockalign > 0)
2130         stream->total_blocks += DIV_ROUND_UP (entry.size, blockalign);
2131       else
2132         stream->total_blocks++;
2133     }
2134
2135     /* add to the index */
2136     if (G_UNLIKELY (stream->idx_n >= stream->idx_max)) {
2137       /* we need to make some more room */
2138       if (stream->idx_max == 0) {
2139         /* initial size guess, assume each stream has an equal amount of entries,
2140          * overshoot with at least 8K */
2141         stream->idx_max =
2142             (num / avi->num_streams) + (8192 / sizeof (GstAviIndexEntry));
2143       } else {
2144         stream->idx_max += 8192 / sizeof (GstAviIndexEntry);
2145         GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "expanded index to %u",
2146             stream->idx_max);
2147       }
2148       stream->index = g_try_renew (GstAviIndexEntry, stream->index,
2149           stream->idx_max);
2150       if (G_UNLIKELY (!stream->index))
2151         goto out_of_mem;
2152     }
2153
2154     GST_LOG_OBJECT (avi,
2155         "Adding stream %d, index entry %d, kf %d, size %u "
2156         ", offset %" G_GUINT64_FORMAT ", total %" G_GUINT64_FORMAT, stream_nr,
2157         stream->idx_n, ENTRY_IS_KEYFRAME (&entry), entry.size, entry.offset,
2158         entry.total);
2159
2160     /* and copy */
2161     stream->index[stream->idx_n++] = entry;
2162
2163     n++;
2164   }
2165   /* get stream stats now */
2166   for (i = 0; i < avi->num_streams; i++) {
2167     GstAviIndexEntry *entry;
2168     guint64 total;
2169
2170     if (G_UNLIKELY (!(stream = &avi->stream[i])))
2171       continue;
2172     if (G_UNLIKELY (!stream->strh))
2173       continue;
2174     if (G_UNLIKELY (!stream->index || stream->idx_n == 0))
2175       continue;
2176
2177     entry = &stream->index[stream->idx_n - 1];
2178     total = entry->total + entry->size;
2179
2180     /* calculate duration */
2181     if (stream->is_vbr) {
2182       /* VBR stream next timestamp */
2183       if (stream->strh->type == GST_RIFF_FCC_auds) {
2184         stream->idx_duration =
2185             avi_stream_convert_frames_to_time_unchecked (stream, total);
2186       } else {
2187         stream->idx_duration =
2188             avi_stream_convert_frames_to_time_unchecked (stream, stream->idx_n);
2189       }
2190     } else {
2191       /* constant rate stream */
2192       stream->idx_duration = avi_stream_convert_bytes_to_time_unchecked (stream,
2193           total);
2194     }
2195 #ifndef GST_DISABLE_GST_DEBUG
2196     total_idx += stream->idx_n;
2197     total_max += stream->idx_max;
2198 #endif
2199     GST_INFO_OBJECT (avi, "Stream %d, dur %" GST_TIME_FORMAT ", %6u entries, "
2200         "%5lu keyframes, entry size = %2u, total size = %10u, allocated %10u",
2201         i, GST_TIME_ARGS (stream->idx_duration), stream->idx_n,
2202         stream->n_keyframes, (guint) sizeof (GstAviIndexEntry),
2203         (guint) (stream->idx_n * sizeof (GstAviIndexEntry)),
2204         (guint) (stream->idx_max * sizeof (GstAviIndexEntry)));
2205   }
2206 #ifndef GST_DISABLE_GST_DEBUG
2207   total_idx *= sizeof (GstAviIndexEntry);
2208   total_max *= sizeof (GstAviIndexEntry);
2209 #endif
2210   GST_INFO_OBJECT (avi, "%u bytes for index vs %u ideally, %u wasted",
2211       total_max, total_idx, total_max - total_idx);
2212
2213   stamp = gst_util_get_timestamp () - stamp;
2214   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "parsing index %" GST_TIME_FORMAT,
2215       GST_TIME_ARGS (stamp));
2216
2217   return;
2218
2219   /* ERRORS */
2220 empty_list:
2221   {
2222     GST_DEBUG_OBJECT (avi, "empty index");
2223     return;
2224   }
2225 out_of_mem:
2226   {
2227     GST_ELEMENT_ERROR (avi, RESOURCE, NO_SPACE_LEFT, (NULL),
2228         ("Cannot allocate memory for %u*%u=%u bytes",
2229             (guint) sizeof (GstAviIndexEntry), num,
2230             (guint) sizeof (GstAviIndexEntry) * num));
2231     return;
2232   }
2233 }
2234
2235 #if 0
2236 /*
2237  * gst_avi_demux_parse_index:
2238  * @avi: calling element (used for debugging/errors).
2239  * @buf: buffer containing the full index.
2240  * @entries_list: list (returned by this function) containing the index
2241  *                entries parsed from the buffer. The first in the list
2242  *                is also a pointer to the allocated data and should be
2243  *                free'ed at some point.
2244  *
2245  * Read index entries from the provided buffer. Takes ownership of @buf.
2246  * The buffer should contain a GST_RIFF_TAG_idx1 chunk.
2247  */
2248 static void
2249 gst_avi_demux_parse_index (GstAviDemux * avi,
2250     GstBuffer * buf, GList ** _entries_list)
2251 {
2252   guint64 pos_before = avi->offset;
2253   gst_avi_index_entry *entries = NULL;
2254   guint8 *data;
2255   GList *entries_list = NULL;
2256   guint i, num, n;
2257 #ifndef GST_DISABLE_GST_DEBUG
2258   gulong _nr_keyframes = 0;
2259 #endif
2260   GstClockTime stamp;
2261
2262   if (!buf || !GST_BUFFER_SIZE (buf)) {
2263     *_entries_list = NULL;
2264     GST_DEBUG ("empty index");
2265     if (buf)
2266       gst_buffer_unref (buf);
2267     return;
2268   }
2269
2270   stamp = gst_util_get_timestamp ();
2271
2272   data = GST_BUFFER_DATA (buf);
2273   num = GST_BUFFER_SIZE (buf) / sizeof (gst_riff_index_entry);
2274   if (!(entries = g_try_new (gst_avi_index_entry, num)))
2275     goto out_of_mem;
2276
2277   GST_INFO_OBJECT (avi, "Parsing index, nr_entries = %6d", num);
2278
2279   for (i = 0, n = 0; i < num; i++) {
2280     gint64 next_ts;
2281     gst_riff_index_entry entry, *_entry;
2282     GstAviStream *stream;
2283     guint stream_nr;
2284     gst_avi_index_entry *target;
2285
2286     _entry = &((gst_riff_index_entry *) data)[i];
2287     entry.id = GST_READ_UINT32_LE (&_entry->id);
2288     entry.offset = GST_READ_UINT32_LE (&_entry->offset);
2289     entry.flags = GST_READ_UINT32_LE (&_entry->flags);
2290     entry.size = GST_READ_UINT32_LE (&_entry->size);
2291     target = &entries[n];
2292
2293     if (entry.id == GST_RIFF_rec || entry.id == 0 ||
2294         (entry.offset == 0 && n > 0))
2295       continue;
2296
2297     stream_nr = CHUNKID_TO_STREAMNR (entry.id);
2298     if (stream_nr >= avi->num_streams) {
2299       GST_WARNING_OBJECT (avi,
2300           "Index entry %d has invalid stream nr %d", i, stream_nr);
2301       continue;
2302     }
2303     target->stream_nr = stream_nr;
2304     stream = &avi->stream[stream_nr];
2305
2306     if (!stream->strh) {
2307       GST_WARNING_OBJECT (avi, "Unhandled stream %d, skipping", stream_nr);
2308       continue;
2309     }
2310
2311     target->index_nr = i;
2312     target->flags =
2313         (entry.flags & GST_RIFF_IF_KEYFRAME) ? GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME
2314         : 0;
2315     target->size = entry.size;
2316     target->offset = entry.offset + 8;
2317
2318     /* figure out if the index is 0 based or relative to the MOVI start */
2319     if (n == 0) {
2320       if (target->offset < pos_before)
2321         avi->index_offset = pos_before + 8;
2322       else
2323         avi->index_offset = 0;
2324       GST_DEBUG ("index_offset = %" G_GUINT64_FORMAT, avi->index_offset);
2325     }
2326
2327     if (stream->strh->type == GST_RIFF_FCC_auds) {
2328       /* all audio frames are keyframes */
2329       target->flags |= GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME;
2330     }
2331 #ifndef GST_DISABLE_GST_DEBUG
2332     if (target->flags & GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME)
2333       _nr_keyframes++;
2334 #endif
2335
2336     /* stream duration unknown, now we can calculate it */
2337     if (stream->idx_duration == -1)
2338       stream->idx_duration = 0;
2339
2340     /* timestamps */
2341     target->ts = stream->idx_duration;
2342     if (stream->is_vbr) {
2343       /* VBR stream next timestamp */
2344       if (stream->strh->type == GST_RIFF_FCC_auds) {
2345         next_ts = avi_stream_convert_frames_to_time_unchecked (stream,
2346             stream->total_blocks + 1);
2347       } else {
2348         next_ts = avi_stream_convert_frames_to_time_unchecked (stream,
2349             stream->idx_n + 1);
2350       }
2351     } else {
2352       /* constant rate stream */
2353       next_ts = avi_stream_convert_bytes_to_time_unchecked (stream,
2354           stream->total_bytes + target->size);
2355     }
2356     /* duration is next - current */
2357     target->dur = next_ts - target->ts;
2358
2359     /* stream position */
2360     target->bytes_before = stream->total_bytes;
2361     target->frames_before = stream->idx_n;
2362
2363     stream->total_bytes += target->size;
2364     stream->idx_n++;
2365     if (stream->strh->type == GST_RIFF_FCC_auds) {
2366       if (stream->strf.auds->blockalign > 0)
2367         stream->total_blocks +=
2368             (target->size + stream->strf.auds->blockalign -
2369             1) / stream->strf.auds->blockalign;
2370       else
2371         stream->total_blocks++;
2372     }
2373     stream->idx_duration = next_ts;
2374
2375     GST_LOG_OBJECT (avi,
2376         "Adding index entry %d (%6u), flags %02x, stream %d, size %u "
2377         ", offset %" G_GUINT64_FORMAT ", time %" GST_TIME_FORMAT ", dur %"
2378         GST_TIME_FORMAT,
2379         target->index_nr, stream->idx_n - 1, target->flags,
2380         target->stream_nr, target->size, target->offset,
2381         GST_TIME_ARGS (target->ts), GST_TIME_ARGS (target->dur));
2382     entries_list = g_list_prepend (entries_list, target);
2383
2384     n++;
2385   }
2386
2387   GST_INFO_OBJECT (avi, "Parsed index, %6u/%6u entries, %5lu keyframes, "
2388       "entry size = %2u, total size = %10u", n, num, _nr_keyframes,
2389       (guint) sizeof (gst_avi_index_entry),
2390       (guint) (n * sizeof (gst_avi_index_entry)));
2391
2392   gst_buffer_unref (buf);
2393
2394   if (n > 0) {
2395     *_entries_list = g_list_reverse (entries_list);
2396   } else {
2397     g_free (entries);
2398   }
2399
2400   stamp = gst_util_get_timestamp () - stamp;
2401   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "parsing index %" GST_TIME_FORMAT,
2402       GST_TIME_ARGS (stamp));
2403
2404   return;
2405
2406   /* ERRORS */
2407 out_of_mem:
2408   {
2409     GST_ELEMENT_ERROR (avi, RESOURCE, NO_SPACE_LEFT, (NULL),
2410         ("Cannot allocate memory for %u*%u=%u bytes",
2411             (guint) sizeof (gst_avi_index_entry), num,
2412             (guint) sizeof (gst_avi_index_entry) * num));
2413     gst_buffer_unref (buf);
2414   }
2415 }
2416 #endif
2417
2418 /*
2419  * gst_avi_demux_stream_index:
2420  * @avi: avi demuxer object.
2421  *
2422  * Seeks to index and reads it.
2423  */
2424 static void
2425 gst_avi_demux_stream_index (GstAviDemux * avi)
2426 {
2427   GstFlowReturn res;
2428   guint64 offset = avi->offset;
2429   GstBuffer *buf;
2430   guint32 tag;
2431   guint32 size;
2432
2433   GST_DEBUG ("demux stream index at offset %" G_GUINT64_FORMAT, offset);
2434
2435   /* get chunk information */
2436   res = gst_pad_pull_range (avi->sinkpad, offset, 8, &buf);
2437   if (res != GST_FLOW_OK)
2438     goto pull_failed;
2439   else if (GST_BUFFER_SIZE (buf) < 8)
2440     goto too_small;
2441
2442   /* check tag first before blindy trying to read 'size' bytes */
2443   tag = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf));
2444   size = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf) + 4);
2445   if (tag == GST_RIFF_TAG_LIST) {
2446     /* this is the movi tag */
2447     GST_DEBUG_OBJECT (avi, "skip LIST chunk, size %" G_GUINT32_FORMAT,
2448         (8 + GST_ROUND_UP_2 (size)));
2449     offset += 8 + GST_ROUND_UP_2 (size);
2450     gst_buffer_unref (buf);
2451     res = gst_pad_pull_range (avi->sinkpad, offset, 8, &buf);
2452     if (res != GST_FLOW_OK)
2453       goto pull_failed;
2454     else if (GST_BUFFER_SIZE (buf) < 8)
2455       goto too_small;
2456     tag = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf));
2457     size = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf) + 4);
2458   }
2459
2460   if (tag != GST_RIFF_TAG_idx1)
2461     goto no_index;
2462   if (!size)
2463     goto zero_index;
2464
2465   gst_buffer_unref (buf);
2466
2467   GST_DEBUG ("index found at offset %" G_GUINT64_FORMAT, offset);
2468
2469   /* read chunk, advance offset */
2470   if (gst_riff_read_chunk (GST_ELEMENT_CAST (avi),
2471           avi->sinkpad, &offset, &tag, &buf) != GST_FLOW_OK)
2472     return;
2473
2474   GST_DEBUG ("will parse index chunk size %u for tag %"
2475       GST_FOURCC_FORMAT, GST_BUFFER_SIZE (buf), GST_FOURCC_ARGS (tag));
2476
2477   gst_avi_demux_parse_index (avi, buf);
2478   gst_buffer_unref (buf);
2479
2480 #ifndef GST_DISABLE_GST_DEBUG
2481   /* debug our indexes */
2482   {
2483     gint i;
2484     GstAviStream *stream;
2485
2486     for (i = 0; i < avi->num_streams; i++) {
2487       stream = &avi->stream[i];
2488       GST_DEBUG_OBJECT (avi, "stream %u: %u frames, %" G_GINT64_FORMAT " bytes",
2489           i, stream->idx_n, stream->total_bytes);
2490     }
2491   }
2492 #endif
2493   return;
2494
2495   /* ERRORS */
2496 pull_failed:
2497   {
2498     GST_DEBUG_OBJECT (avi,
2499         "pull range failed: pos=%" G_GUINT64_FORMAT " size=8", offset);
2500     return;
2501   }
2502 too_small:
2503   {
2504     GST_DEBUG_OBJECT (avi, "Buffer is too small");
2505     gst_buffer_unref (buf);
2506     return;
2507   }
2508 no_index:
2509   {
2510     GST_WARNING_OBJECT (avi,
2511         "No index data (idx1) after movi chunk, but %" GST_FOURCC_FORMAT,
2512         GST_FOURCC_ARGS (tag));
2513     gst_buffer_unref (buf);
2514     return;
2515   }
2516 zero_index:
2517   {
2518     GST_WARNING_OBJECT (avi, "Empty index data (idx1) after movi chunk");
2519     gst_buffer_unref (buf);
2520     return;
2521   }
2522 }
2523
2524 #if 0
2525 /*
2526  * Sync to next data chunk.
2527  */
2528 static gboolean
2529 gst_avi_demux_skip (GstAviDemux * avi, gboolean prevent_eos)
2530 {
2531   GstRiffRead *riff = GST_RIFF_READ (avi);
2532
2533   if (prevent_eos) {
2534     guint64 pos, length;
2535     guint size;
2536     guint8 *data;
2537
2538     pos = gst_bytestream_tell (riff->bs);
2539     length = gst_bytestream_length (riff->bs);
2540
2541     if (pos + 8 > length)
2542       return FALSE;
2543
2544     if (gst_bytestream_peek_bytes (riff->bs, &data, 8) != 8)
2545       return FALSE;
2546
2547     size = GST_READ_UINT32_LE (&data[4]);
2548     if (size & 1)
2549       size++;
2550
2551     /* Note, we're going to skip which might involve seeks. Therefore,
2552      * we need 1 byte more! */
2553     if (pos + 8 + size >= length)
2554       return FALSE;
2555   }
2556
2557   return gst_riff_read_skip (riff);
2558 }
2559
2560 static gboolean
2561 gst_avi_demux_sync (GstAviDemux * avi, guint32 * ret_tag, gboolean prevent_eos)
2562 {
2563   GstRiffRead *riff = GST_RIFF_READ (avi);
2564   guint32 tag;
2565   guint64 length = gst_bytestream_length (riff->bs);
2566
2567   if (prevent_eos && gst_bytestream_tell (riff->bs) + 12 >= length)
2568     return FALSE;
2569
2570   /* peek first (for the end of this 'list/movi' section) */
2571   if (!(tag = gst_riff_peek_tag (riff, &avi->level_up)))
2572     return FALSE;
2573
2574   /* if we're at top-level, we didn't read the 'movi'
2575    * list tag yet. This can also be 'AVIX' in case of
2576    * openDML-2.0 AVI files. Lastly, it might be idx1,
2577    * in which case we skip it so we come at EOS. */
2578   while (1) {
2579     if (prevent_eos && gst_bytestream_tell (riff->bs) + 12 >= length)
2580       return FALSE;
2581
2582     if (!(tag = gst_riff_peek_tag (riff, NULL)))
2583       return FALSE;
2584
2585     switch (tag) {
2586       case GST_RIFF_TAG_LIST:
2587         if (!(tag = gst_riff_peek_list (riff)))
2588           return FALSE;
2589
2590         switch (tag) {
2591           case GST_RIFF_LIST_AVIX:
2592             if (!gst_riff_read_list (riff, &tag))
2593               return FALSE;
2594             break;
2595
2596           case GST_RIFF_LIST_movi:
2597             if (!gst_riff_read_list (riff, &tag))
2598               return FALSE;
2599             /* fall-through */
2600
2601           case GST_RIFF_rec:
2602             goto done;
2603
2604           default:
2605             GST_WARNING ("Unknown list %" GST_FOURCC_FORMAT " before AVI data",
2606                 GST_FOURCC_ARGS (tag));
2607             /* fall-through */
2608
2609           case GST_RIFF_TAG_JUNK:
2610             if (!gst_avi_demux_skip (avi, prevent_eos))
2611               return FALSE;
2612             break;
2613         }
2614         break;
2615
2616       default:
2617         if ((tag & 0xff) >= '0' && (tag & 0xff) <= '9' &&
2618             ((tag >> 8) & 0xff) >= '0' && ((tag >> 8) & 0xff) <= '9') {
2619           goto done;
2620         }
2621         /* pass-through */
2622
2623       case GST_RIFF_TAG_idx1:
2624       case GST_RIFF_TAG_JUNK:
2625         if (!gst_avi_demux_skip (avi, prevent_eos)) {
2626           return FALSE;
2627         }
2628         break;
2629     }
2630   }
2631 done:
2632   /* And then, we get the data */
2633   if (prevent_eos && gst_bytestream_tell (riff->bs) + 12 >= length)
2634     return FALSE;
2635
2636   if (!(tag = gst_riff_peek_tag (riff, NULL)))
2637     return FALSE;
2638
2639   /* Support for rec-list files */
2640   switch (tag) {
2641     case GST_RIFF_TAG_LIST:
2642       if (!(tag = gst_riff_peek_list (riff)))
2643         return FALSE;
2644       if (tag == GST_RIFF_rec) {
2645         /* Simply skip the list */
2646         if (!gst_riff_read_list (riff, &tag))
2647           return FALSE;
2648         if (!(tag = gst_riff_peek_tag (riff, NULL)))
2649           return FALSE;
2650       }
2651       break;
2652
2653     case GST_RIFF_TAG_JUNK:
2654       gst_avi_demux_skip (avi, prevent_eos);
2655       return FALSE;
2656   }
2657
2658   if (ret_tag)
2659     *ret_tag = tag;
2660
2661   return TRUE;
2662 }
2663 #endif
2664
2665 #if 0
2666 /*
2667  * gst_avi_demux_peek_tag:
2668  *
2669  * Returns the tag and size of the next chunk
2670  */
2671 static GstFlowReturn
2672 gst_avi_demux_peek_tag (GstAviDemux * avi, guint64 offset, guint32 * tag,
2673     guint * size)
2674 {
2675   GstFlowReturn res = GST_FLOW_OK;
2676   GstBuffer *buf = NULL;
2677   guint bufsize;
2678
2679   res = gst_pad_pull_range (avi->sinkpad, offset, 8, &buf);
2680   if (res != GST_FLOW_OK)
2681     goto pull_failed;
2682
2683   bufsize = GST_BUFFER_SIZE (buf);
2684   if (bufsize != 8)
2685     goto wrong_size;
2686
2687   *tag = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf));
2688   *size = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf) + 4);
2689
2690   GST_LOG_OBJECT (avi, "Tag[%" GST_FOURCC_FORMAT "] (size:%d) %"
2691       G_GINT64_FORMAT " -- %" G_GINT64_FORMAT, GST_FOURCC_ARGS (*tag),
2692       *size, offset + 8, offset + 8 + (gint64) * size);
2693 done:
2694   gst_buffer_unref (buf);
2695
2696   return res;
2697
2698   /* ERRORS */
2699 pull_failed:
2700   {
2701     GST_DEBUG_OBJECT (avi, "pull_ranged returned %s", gst_flow_get_name (res));
2702     return res;
2703   }
2704 wrong_size:
2705   {
2706     GST_DEBUG_OBJECT (avi, "got %d bytes which is <> 8 bytes", bufsize);
2707     res = GST_FLOW_ERROR;
2708     goto done;
2709   }
2710 }
2711 #endif
2712
2713 #if 0
2714 /*
2715  * gst_avi_demux_next_data_buffer:
2716  *
2717  * Returns the offset and size of the next buffer
2718  * Position is the position of the buffer (after tag and size)
2719  */
2720 static GstFlowReturn
2721 gst_avi_demux_next_data_buffer (GstAviDemux * avi, guint64 * offset,
2722     guint32 * tag, guint * size)
2723 {
2724   guint64 off = *offset;
2725   guint _size = 0;
2726   GstFlowReturn res;
2727
2728   do {
2729     res = gst_avi_demux_peek_tag (avi, off, tag, &_size);
2730     if (res != GST_FLOW_OK)
2731       break;
2732     if (*tag == GST_RIFF_TAG_LIST || *tag == GST_RIFF_TAG_RIFF)
2733       off += 8 + 4;             /* skip tag + size + subtag */
2734     else {
2735       *offset = off + 8;
2736       *size = _size;
2737       break;
2738     }
2739   } while (TRUE);
2740
2741   return res;
2742 }
2743 #endif
2744
2745 #if 0
2746 /*
2747  * gst_avi_demux_stream_scan:
2748  * @avi: calling element (used for debugging/errors).
2749  * @index: list of index entries, returned by this function.
2750  * @alloc_list: list of allocated data, returned by this function.
2751  *
2752  * Scan the file for all chunks to "create" a new index.
2753  * Return value indicates if we can continue reading the stream. It
2754  * does not say anything about whether we created an index.
2755  *
2756  * pull-range based
2757  */
2758 static gboolean
2759 gst_avi_demux_stream_scan (GstAviDemux * avi,
2760     GList ** index, GList ** alloc_list)
2761 {
2762   GstFlowReturn res;
2763   gst_avi_index_entry *entry, *entries = NULL;
2764   GstAviStream *stream;
2765   GstFormat format;
2766   guint64 pos = avi->offset;
2767   guint64 length;
2768   gint64 tmplength;
2769   guint32 tag = 0;
2770   GList *list = NULL;
2771   guint index_size = 0;
2772
2773   /* FIXME:
2774    * - implement non-seekable source support.
2775    */
2776   GST_DEBUG_OBJECT (avi,
2777       "Creating index %s existing index, starting at offset %" G_GUINT64_FORMAT,
2778       ((*index) ? "with" : "without"), pos);
2779
2780   format = GST_FORMAT_BYTES;
2781   if (!gst_pad_query_peer_duration (avi->sinkpad, &format, &tmplength))
2782     return FALSE;
2783
2784   length = tmplength;
2785
2786   if (*index) {
2787     entry = g_list_last (*index)->data;
2788     pos = entry->offset + avi->index_offset + entry->size;
2789     if (entry->size & 1)
2790       pos++;
2791
2792     if (pos >= length) {
2793       GST_LOG_OBJECT (avi, "Complete index, we're done");
2794       return TRUE;
2795     }
2796
2797     GST_LOG_OBJECT (avi, "Incomplete index, seeking to last valid entry @ %"
2798         G_GUINT64_FORMAT " of %" G_GUINT64_FORMAT " (%"
2799         G_GUINT64_FORMAT "+%u)", pos, length, entry->offset, entry->size);
2800   }
2801
2802   while (TRUE) {
2803     guint stream_nr;
2804     guint size = 0;
2805
2806     res = gst_avi_demux_next_data_buffer (avi, &pos, &tag, &size);
2807     if (G_UNLIKELY (res != GST_FLOW_OK))
2808       break;
2809
2810     /* check valid stream */
2811     stream_nr = CHUNKID_TO_STREAMNR (tag);
2812     if (G_UNLIKELY (stream_nr >= avi->num_streams)) {
2813       GST_WARNING_OBJECT (avi,
2814           "Index entry has invalid stream nr %d", stream_nr);
2815       goto next;
2816     }
2817
2818     stream = &avi->stream[stream_nr];
2819     if (G_UNLIKELY (stream->pad == NULL)) {
2820       GST_WARNING_OBJECT (avi,
2821           "Stream %d does not have an output pad, can't create new index",
2822           stream_nr);
2823       goto next;
2824     }
2825
2826     /* pre-allocate */
2827     if (G_UNLIKELY (index_size % 1024 == 0)) {
2828       entries = g_new (gst_avi_index_entry, 1024);
2829       *alloc_list = g_list_prepend (*alloc_list, entries);
2830     }
2831     entry = &entries[index_size % 1024];
2832
2833     entry->index_nr = index_size++;
2834     entry->stream_nr = stream_nr;
2835     entry->flags = GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME;
2836     entry->offset = pos - avi->index_offset;
2837     entry->size = size;
2838
2839     /* timestamps, get timestamps of two consecutive frames to calculate
2840      * timestamp and duration. */
2841     format = GST_FORMAT_TIME;
2842     if (stream->is_vbr) {
2843       /* VBR stream */
2844       entry->ts = avi_stream_convert_frames_to_time_unchecked (stream,
2845           stream->idx_n);
2846       entry->dur = avi_stream_convert_frames_to_time_unchecked (stream,
2847           stream->idx_n + 1);
2848     } else {
2849       /* constant rate stream */
2850       entry->ts = avi_stream_convert_bytes_to_time_unchecked (stream,
2851           stream->total_bytes);
2852       entry->dur = avi_stream_convert_bytes_to_time_unchecked (stream,
2853           stream->total_bytes + entry->size);
2854     }
2855     entry->dur -= entry->ts;
2856
2857     /* stream position */
2858     entry->bytes_before = stream->total_bytes;
2859     stream->total_bytes += entry->size;
2860     entry->frames_before = stream->idx_n;
2861     stream->idx_n++;
2862     stream->idx_duration = entry->ts + entry->dur;
2863
2864     list = g_list_prepend (list, entry);
2865     GST_DEBUG_OBJECT (avi, "Added index entry %d (in stream: %d), offset %"
2866         G_GUINT64_FORMAT ", time %" GST_TIME_FORMAT " for stream %d",
2867         index_size - 1, entry->frames_before, entry->offset,
2868         GST_TIME_ARGS (entry->ts), entry->stream_nr);
2869
2870   next:
2871     /* update position */
2872     pos += GST_ROUND_UP_2 (size);
2873     if (G_UNLIKELY (pos > length)) {
2874       GST_WARNING_OBJECT (avi,
2875           "Stopping index lookup since we are further than EOF");
2876       break;
2877     }
2878   }
2879
2880   /* FIXME: why is this disabled */
2881 #if 0
2882   while (gst_avi_demux_sync (avi, &tag, TRUE)) {
2883     guint stream_nr = CHUNKID_TO_STREAMNR (tag);
2884     guint8 *data;
2885     GstFormat format = GST_FORMAT_TIME;
2886
2887     if (stream_nr >= avi->num_streams)
2888       goto next;
2889     stream = &avi->stream[stream_nr];
2890
2891     /* get chunk size */
2892     if (gst_bytestream_peek_bytes (riff->bs, &data, 8) != 8)
2893       goto next;
2894
2895     /* fill in */
2896     entry->index_nr = index_size++;
2897     entry->stream_nr = stream_nr;
2898     entry->flags = GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME;
2899     entry->offset = gst_bytestream_tell (riff->bs) + 8 - avi->index_offset;
2900     entry->size = GST_READ_UINT32_LE (&data[4]);
2901
2902     /* timestamps */
2903     if (stream->is_vbr) {
2904       /* VBR stream */
2905       entry->ts = avi_stream_convert_frames_to_time_unchecked (stream,
2906           stream->idx_n);
2907       entry->dur = avi_stream_convert_frames_to_time_unchecked (stream,
2908           stream->idx_n + 1);
2909     } else {
2910       /* constant rate stream */
2911       entry->ts = avi_stream_convert_bytes_to_time_unchecked (stream,
2912           stream->total_bytes);
2913       entry->dur = avi_stream_convert_bytes_to_time_unchecked (stream,
2914           stream->total_bytes + entry->size);
2915     }
2916     entry->dur -= entry->ts;
2917
2918     /* stream position */
2919     entry->bytes_before = stream->total_bytes;
2920     stream->total_bytes += entry->size;
2921     entry->frames_before = stream->idx_n;
2922     stream->idx_n++;
2923
2924     list = g_list_prepend (list, entry);
2925     GST_DEBUG_OBJECT (avi, "Added index entry %d (in stream: %d), offset %"
2926         G_GUINT64_FORMAT ", time %" GST_TIME_FORMAT " for stream %d",
2927         index_size - 1, entry->frames_before, entry->offset,
2928         GST_TIME_ARGS (entry->ts), entry->stream_nr);
2929
2930   next:
2931     if (!gst_avi_demux_skip (avi, TRUE))
2932       break;
2933   }
2934   /* seek back */
2935   if (!(event = gst_riff_read_seek (riff, pos))) {
2936     g_list_free (list);
2937     return FALSE;
2938   }
2939   gst_event_unref (event);
2940
2941 #endif
2942
2943   GST_DEBUG_OBJECT (avi, "index created, %d items", index_size);
2944
2945   *index = g_list_concat (*index, g_list_reverse (list));
2946
2947   return TRUE;
2948 }
2949 #endif
2950
2951 #if 0
2952 /*
2953  * gst_avi_demux_massage_index:
2954  * @avi: calling element (used for debugging/errors).
2955  *
2956  * We're going to go over each entry in the index and finetune
2957  * some things we don't like about AVI. For example, a single
2958  * chunk might be too long. Also, individual streams might be
2959  * out-of-sync. In the first case, we cut the chunk in several
2960  * smaller pieces. In the second case, we re-order chunk reading
2961  * order. The end result should be a smoother playing AVI.
2962  */
2963 static gboolean
2964 gst_avi_demux_massage_index (GstAviDemux * avi,
2965     GList * list, GList * alloc_list)
2966 {
2967   gst_avi_index_entry *entry;
2968   GstAviStream *stream;
2969   guint i;
2970   GList *node;
2971   gint64 delay = G_GINT64_CONSTANT (0);
2972   GstClockTime stamp;
2973
2974   stamp = gst_util_get_timestamp ();
2975
2976   GST_LOG_OBJECT (avi, "Starting index massage, nr_entries = %d",
2977       list ? g_list_length (list) : 0);
2978
2979   if (list) {
2980 #ifndef GST_DISABLE_GST_DEBUG
2981     guint num_added_total = 0;
2982     guint num_per_stream[GST_AVI_DEMUX_MAX_STREAMS] = { 0, };
2983 #endif
2984     GST_LOG_OBJECT (avi,
2985         "I'm now going to cut large chunks into smaller pieces");
2986
2987     /* cut chunks in small (seekable) pieces
2988      * FIXME: this should be a property where a value of
2989      * GST_CLOCK_TIME_NONE would disable the chunking
2990      */
2991 #define MAX_DURATION (GST_SECOND / 2)
2992     for (i = 0; i < avi->num_streams; i++) {
2993       /* only chop streams that have exactly *one* chunk */
2994       if (avi->stream[i].idx_n != 1)
2995         continue;
2996
2997       for (node = list; node != NULL; node = node->next) {
2998         entry = node->data;
2999
3000         if (entry->stream_nr != i)
3001           continue;
3002
3003         /* check for max duration of a single buffer. I suppose that
3004          * the allocation of index entries could be improved. */
3005         stream = &avi->stream[entry->stream_nr];
3006         if (entry->dur > MAX_DURATION
3007             && stream->strh->type == GST_RIFF_FCC_auds) {
3008           guint32 ideal_size;
3009           gst_avi_index_entry *entries;
3010           guint old_size, num_added;
3011           GList *node2;
3012
3013           /* cut in 1/10th of a second */
3014           ideal_size = stream->strf.auds->av_bps / 10;
3015
3016           /* ensure chunk size is multiple of blockalign */
3017           if (stream->strf.auds->blockalign > 1)
3018             ideal_size -= ideal_size % stream->strf.auds->blockalign;
3019
3020           /* copy index */
3021           old_size = entry->size;
3022           num_added = (entry->size - 1) / ideal_size;
3023           avi->index_size += num_added;
3024           entries = g_malloc (sizeof (gst_avi_index_entry) * num_added);
3025           alloc_list = g_list_prepend (alloc_list, entries);
3026           for (node2 = node->next; node2 != NULL; node2 = node2->next) {
3027             gst_avi_index_entry *entry2 = node2->data;
3028
3029             entry2->index_nr += num_added;
3030             if (entry2->stream_nr == entry->stream_nr)
3031               entry2->frames_before += num_added;
3032           }
3033
3034           /* new sized index chunks */
3035           for (i = 0; i < num_added + 1; i++) {
3036             gst_avi_index_entry *entry2;
3037
3038             if (i == 0) {
3039               entry2 = entry;
3040             } else {
3041               entry2 = &entries[i - 1];
3042               list = g_list_insert_before (list, node->next, entry2);
3043               entry = node->data;
3044               node = node->next;
3045               memcpy (entry2, entry, sizeof (gst_avi_index_entry));
3046             }
3047
3048             if (old_size >= ideal_size) {
3049               entry2->size = ideal_size;
3050               old_size -= ideal_size;
3051             } else {
3052               entry2->size = old_size;
3053             }
3054
3055             entry2->dur = GST_SECOND * entry2->size / stream->strf.auds->av_bps;
3056             if (i != 0) {
3057               entry2->index_nr++;
3058               entry2->ts += entry->dur;
3059               entry2->offset += entry->size;
3060               entry2->bytes_before += entry->size;
3061               entry2->frames_before++;
3062             }
3063           }
3064 #ifndef GST_DISABLE_GST_DEBUG
3065           num_added_total += num_added;
3066 #endif
3067         }
3068       }
3069     }
3070 #ifndef GST_DISABLE_GST_DEBUG
3071     if (num_added_total)
3072       GST_LOG ("added %u new index entries", num_added_total);
3073 #endif
3074
3075     GST_LOG_OBJECT (avi, "I'm now going to reorder the index entries for time");
3076
3077     /* re-order for time */
3078     list = g_list_sort (list, (GCompareFunc) sort);
3079
3080     /* make a continous array out of the list */
3081     avi->index_size = g_list_length (list);
3082     avi->index_entries = g_try_new (gst_avi_index_entry, avi->index_size);
3083     if (!avi->index_entries)
3084       goto out_of_mem;
3085
3086     entry = (gst_avi_index_entry *) (list->data);
3087     delay = entry->ts;
3088
3089     GST_LOG_OBJECT (avi,
3090         "Building index array, nr_entries = %d (time offset = %"
3091         GST_TIME_FORMAT, avi->index_size, GST_TIME_ARGS (delay));
3092
3093     for (i = 0, node = list; node != NULL; node = node->next, i++) {
3094       entry = node->data;
3095       entry->index_nr = i;
3096       entry->ts -= delay;
3097       memcpy (&avi->index_entries[i], entry, sizeof (gst_avi_index_entry));
3098 #ifndef GST_DISABLE_GST_DEBUG
3099       num_per_stream[entry->stream_nr]++;
3100 #endif
3101
3102       GST_LOG_OBJECT (avi, "Sorted index entry %3d for stream %d of size %6u"
3103           " at offset %7" G_GUINT64_FORMAT ", time %" GST_TIME_FORMAT
3104           " dur %" GST_TIME_FORMAT,
3105           avi->index_entries[i].index_nr, entry->stream_nr, entry->size,
3106           entry->offset, GST_TIME_ARGS (entry->ts), GST_TIME_ARGS (entry->dur));
3107     }
3108     if (delay) {
3109       for (i = 0; i < avi->num_streams; i++) {
3110         stream = &avi->stream[i];
3111         stream->idx_duration -= delay;
3112       }
3113     }
3114 #ifndef GST_DISABLE_GST_DEBUG
3115     {
3116       gchar str[GST_AVI_DEMUX_MAX_STREAMS * (1 + 6 + 2)];
3117       gchar *pad_name;
3118
3119       for (i = 0; i < avi->num_streams; i++) {
3120         if (!avi->stream[i].pad)
3121           continue;
3122         pad_name = GST_OBJECT_NAME (avi->stream[i].pad);
3123         sprintf (&str[i * (1 + 6 + 2)], " %6u %c", num_per_stream[i],
3124             pad_name[0]);
3125       }
3126       GST_LOG_OBJECT (avi, "indizies per stream:%20s", str);
3127     }
3128 #endif
3129
3130     GST_LOG_OBJECT (avi, "Freeing original index list");
3131     /* all the node->data in list point to alloc_list chunks */
3132
3133     g_list_free (list);
3134   }
3135   if (alloc_list) {
3136     g_list_foreach (alloc_list, (GFunc) g_free, NULL);
3137     g_list_free (alloc_list);
3138   }
3139 #ifndef GST_DISABLE_GST_DEBUG
3140   for (i = 0; i < avi->num_streams; i++) {
3141     GST_LOG_OBJECT (avi, "Stream %d, %d frames, %8" G_GUINT64_FORMAT " bytes",
3142         i, avi->stream[i].idx_n, avi->stream[i].total_bytes);
3143   }
3144 #endif
3145
3146   GST_LOG_OBJECT (avi, "Index massaging done");
3147
3148   stamp = gst_util_get_timestamp () - stamp;
3149
3150   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "massaging index %" GST_TIME_FORMAT,
3151       GST_TIME_ARGS (stamp));
3152
3153   return TRUE;
3154
3155   /* ERRORS */
3156 out_of_mem:
3157   {
3158     GST_WARNING_OBJECT (avi, "Out of memory for %" G_GSIZE_FORMAT " bytes",
3159         sizeof (gst_avi_index_entry) * avi->index_size);
3160     return FALSE;
3161   }
3162 }
3163 #endif
3164
3165 static void
3166 gst_avi_demux_calculate_durations_from_index (GstAviDemux * avi)
3167 {
3168   gint stream;
3169   GstClockTime total;
3170
3171   total = GST_CLOCK_TIME_NONE;
3172
3173   /* all streams start at a timestamp 0 */
3174   for (stream = 0; stream < avi->num_streams; stream++) {
3175     GstClockTime duration, hduration;
3176     GstAviStream *streamc = &avi->stream[stream];
3177     gst_riff_strh *strh = streamc->strh;
3178
3179     if (!strh)
3180       continue;
3181
3182     /* get header duration for the stream */
3183     hduration = streamc->hdr_duration;
3184
3185     /* index duration calculated during parsing, invariant under massage */
3186     duration = streamc->idx_duration;
3187
3188     /* now pick a good duration */
3189     if (GST_CLOCK_TIME_IS_VALID (duration)) {
3190       /* index gave valid duration, use that */
3191       GST_INFO ("Stream %d duration according to index: %" GST_TIME_FORMAT,
3192           stream, GST_TIME_ARGS (duration));
3193     } else {
3194       /* fall back to header info to calculate a duration */
3195       duration = hduration;
3196     }
3197     /* set duration for the stream */
3198     streamc->duration = duration;
3199
3200     /* find total duration */
3201     if (total == GST_CLOCK_TIME_NONE || duration > total)
3202       total = duration;
3203   }
3204
3205   if (GST_CLOCK_TIME_IS_VALID (total) && (total > 0)) {
3206     /* now update the duration for those streams where we had none */
3207     for (stream = 0; stream < avi->num_streams; stream++) {
3208       GstAviStream *streamc = &avi->stream[stream];
3209
3210       if (!GST_CLOCK_TIME_IS_VALID (streamc->duration)
3211           || streamc->duration == 0) {
3212         streamc->duration = total;
3213
3214         GST_INFO ("Stream %d duration according to total: %" GST_TIME_FORMAT,
3215             stream, GST_TIME_ARGS (total));
3216       }
3217     }
3218   }
3219
3220   /* and set the total duration in the segment. */
3221   GST_INFO ("Setting total duration to: %" GST_TIME_FORMAT,
3222       GST_TIME_ARGS (total));
3223
3224   gst_segment_set_duration (&avi->segment, GST_FORMAT_TIME, total);
3225 }
3226
3227 /* returns FALSE if there are no pads to deliver event to,
3228  * otherwise TRUE (whatever the outcome of event sending) */
3229 static gboolean
3230 gst_avi_demux_push_event (GstAviDemux * avi, GstEvent * event)
3231 {
3232   gboolean result = FALSE;
3233   gint i;
3234
3235   GST_DEBUG_OBJECT (avi, "sending %s event to %d streams",
3236       GST_EVENT_TYPE_NAME (event), avi->num_streams);
3237
3238   if (avi->num_streams) {
3239     for (i = 0; i < avi->num_streams; i++) {
3240       GstAviStream *stream = &avi->stream[i];
3241
3242       if (stream->pad) {
3243         result = TRUE;
3244         gst_pad_push_event (stream->pad, gst_event_ref (event));
3245       }
3246     }
3247   }
3248   gst_event_unref (event);
3249   return result;
3250 }
3251
3252 /*
3253  * Read AVI headers when streaming
3254  */
3255 static GstFlowReturn
3256 gst_avi_demux_stream_header_push (GstAviDemux * avi)
3257 {
3258   GstFlowReturn ret = GST_FLOW_OK;
3259   guint32 tag = 0;
3260   guint32 ltag = 0;
3261   guint32 size = 0;
3262   const guint8 *data;
3263   GstBuffer *buf = NULL, *sub = NULL;
3264   guint offset = 4;
3265   gint64 stop;
3266
3267   GST_DEBUG ("Reading and parsing avi headers: %d", avi->header_state);
3268
3269   switch (avi->header_state) {
3270     case GST_AVI_DEMUX_HEADER_TAG_LIST:
3271       if (gst_avi_demux_peek_chunk (avi, &tag, &size)) {
3272         avi->offset += 8 + GST_ROUND_UP_2 (size);
3273         if (tag != GST_RIFF_TAG_LIST)
3274           goto header_no_list;
3275
3276         gst_adapter_flush (avi->adapter, 8);
3277         /* Find the 'hdrl' LIST tag */
3278         GST_DEBUG ("Reading %d bytes", size);
3279         buf = gst_adapter_take_buffer (avi->adapter, size);
3280
3281         if (GST_READ_UINT32_LE (GST_BUFFER_DATA (buf)) != GST_RIFF_LIST_hdrl)
3282           goto header_no_hdrl;
3283
3284         /* mind padding */
3285         if (size & 1)
3286           gst_adapter_flush (avi->adapter, 1);
3287
3288         GST_DEBUG ("'hdrl' LIST tag found. Parsing next chunk");
3289
3290         /* the hdrl starts with a 'avih' header */
3291         if (!gst_riff_parse_chunk (GST_ELEMENT (avi), buf, &offset, &tag, &sub))
3292           goto header_no_avih;
3293
3294         if (tag != GST_RIFF_TAG_avih)
3295           goto header_no_avih;
3296
3297         if (!gst_avi_demux_parse_avih (GST_ELEMENT (avi), sub, &avi->avih))
3298           goto header_wrong_avih;
3299
3300         GST_DEBUG_OBJECT (avi, "AVI header ok, reading elemnts from header");
3301
3302         /* now, read the elements from the header until the end */
3303         while (gst_riff_parse_chunk (GST_ELEMENT (avi), buf, &offset, &tag,
3304                 &sub)) {
3305           /* sub can be NULL on empty tags */
3306           if (!sub)
3307             continue;
3308
3309           switch (tag) {
3310             case GST_RIFF_TAG_LIST:
3311               if (GST_BUFFER_SIZE (sub) < 4)
3312                 goto next;
3313
3314               switch (GST_READ_UINT32_LE (GST_BUFFER_DATA (sub))) {
3315                 case GST_RIFF_LIST_strl:
3316                   if (!(gst_avi_demux_parse_stream (avi, sub))) {
3317                     sub = NULL;
3318                     GST_ELEMENT_WARNING (avi, STREAM, DEMUX, (NULL),
3319                         ("failed to parse stream, ignoring"));
3320                     goto next;
3321                   }
3322                   sub = NULL;
3323                   goto next;
3324                 case GST_RIFF_LIST_odml:
3325                   gst_avi_demux_parse_odml (avi, sub);
3326                   sub = NULL;
3327                   break;
3328                 default:
3329                   GST_WARNING_OBJECT (avi,
3330                       "Unknown list %" GST_FOURCC_FORMAT " in AVI header",
3331                       GST_FOURCC_ARGS (GST_READ_UINT32_LE (GST_BUFFER_DATA
3332                               (sub))));
3333                   /* fall-through */
3334                 case GST_RIFF_TAG_JUNK:
3335                   goto next;
3336               }
3337               break;
3338             default:
3339               GST_WARNING_OBJECT (avi,
3340                   "Unknown off %d tag %" GST_FOURCC_FORMAT " in AVI header",
3341                   offset, GST_FOURCC_ARGS (tag));
3342               /* fall-through */
3343             case GST_RIFF_TAG_JUNK:
3344             next:
3345               /* move to next chunk */
3346               if (sub)
3347                 gst_buffer_unref (sub);
3348               sub = NULL;
3349               break;
3350           }
3351         }
3352         gst_buffer_unref (buf);
3353         GST_DEBUG ("elements parsed");
3354
3355         /* check parsed streams */
3356         if (avi->num_streams == 0) {
3357           goto no_streams;
3358         } else if (avi->num_streams != avi->avih->streams) {
3359           GST_WARNING_OBJECT (avi,
3360               "Stream header mentioned %d streams, but %d available",
3361               avi->avih->streams, avi->num_streams);
3362         }
3363         GST_DEBUG ("Get junk and info next");
3364         avi->header_state = GST_AVI_DEMUX_HEADER_INFO;
3365       } else {
3366         /* Need more data */
3367         return ret;
3368       }
3369       /* fall-though */
3370     case GST_AVI_DEMUX_HEADER_INFO:
3371       GST_DEBUG_OBJECT (avi, "skipping junk between header and data ...");
3372       while (TRUE) {
3373         if (gst_adapter_available (avi->adapter) < 12)
3374           return GST_FLOW_OK;
3375
3376         data = gst_adapter_peek (avi->adapter, 12);
3377         tag = GST_READ_UINT32_LE (data);
3378         size = GST_READ_UINT32_LE (data + 4);
3379         ltag = GST_READ_UINT32_LE (data + 8);
3380
3381         if (tag == GST_RIFF_TAG_LIST) {
3382           switch (ltag) {
3383             case GST_RIFF_LIST_movi:
3384               gst_adapter_flush (avi->adapter, 12);
3385               avi->offset += 12;
3386               goto skipping_done;
3387             case GST_RIFF_LIST_INFO:
3388               GST_DEBUG ("Found INFO chunk");
3389               if (gst_avi_demux_peek_chunk (avi, &tag, &size)) {
3390                 GST_DEBUG ("got size %d", size);
3391                 avi->offset += 12;
3392                 gst_adapter_flush (avi->adapter, 12);
3393                 if (size > 4) {
3394                   buf = gst_adapter_take_buffer (avi->adapter, size - 4);
3395                   /* mind padding */
3396                   if (size & 1)
3397                     gst_adapter_flush (avi->adapter, 1);
3398                   gst_riff_parse_info (GST_ELEMENT (avi), buf,
3399                       &avi->globaltags);
3400                   gst_buffer_unref (buf);
3401
3402                   avi->offset += GST_ROUND_UP_2 (size) - 4;
3403                 } else {
3404                   GST_DEBUG ("skipping INFO LIST prefix");
3405                 }
3406               } else {
3407                 /* Need more data */
3408                 return GST_FLOW_OK;
3409               }
3410               break;
3411             default:
3412               if (gst_avi_demux_peek_chunk (avi, &tag, &size)) {
3413                 avi->offset += 8 + GST_ROUND_UP_2 (size);
3414                 gst_adapter_flush (avi->adapter, 8 + GST_ROUND_UP_2 (size));
3415                 // ??? goto iterate; ???
3416               } else {
3417                 /* Need more data */
3418                 return GST_FLOW_OK;
3419               }
3420               break;
3421           }
3422         } else {
3423           if (gst_avi_demux_peek_chunk (avi, &tag, &size)) {
3424             avi->offset += 8 + GST_ROUND_UP_2 (size);
3425             gst_adapter_flush (avi->adapter, 8 + GST_ROUND_UP_2 (size));
3426             //goto iterate;
3427           } else {
3428             /* Need more data */
3429             return GST_FLOW_OK;
3430           }
3431         }
3432       }
3433       break;
3434     default:
3435       GST_WARNING ("unhandled header state: %d", avi->header_state);
3436       break;
3437   }
3438 skipping_done:
3439
3440   GST_DEBUG_OBJECT (avi, "skipping done ... (streams=%u, stream[0].indexes=%p)",
3441       avi->num_streams, avi->stream[0].indexes);
3442
3443   GST_DEBUG ("Found movi chunk. Starting to stream data");
3444   avi->state = GST_AVI_DEMUX_MOVI;
3445
3446 #if 0
3447   /*GList *index = NULL, *alloc = NULL; */
3448
3449   /* ######################## this need to be integrated with the state */
3450   /* create or read stream index (for seeking) */
3451   if (avi->stream[0].indexes != NULL) {
3452     gst_avi_demux_read_subindexes_push (avi, &index, &alloc);
3453   }
3454   if (!index) {
3455     if (avi->avih->flags & GST_RIFF_AVIH_HASINDEX) {
3456       gst_avi_demux_stream_index (avi, &index, &alloc);
3457     }
3458     /* some indexes are incomplete, continue streaming from there */
3459     if (!index)
3460       gst_avi_demux_stream_scan (avi, &index, &alloc);
3461   }
3462
3463   /* this is a fatal error */
3464   if (!index)
3465     goto no_index;
3466
3467   if (!gst_avi_demux_massage_index (avi, index, alloc))
3468     goto no_index;
3469
3470   gst_avi_demux_calculate_durations_from_index (avi);
3471   /* ######################## */
3472 #endif
3473
3474   /* create initial NEWSEGMENT event */
3475   if ((stop = avi->segment.stop) == GST_CLOCK_TIME_NONE)
3476     stop = avi->segment.duration;
3477
3478   GST_DEBUG_OBJECT (avi, "segment stop %" G_GINT64_FORMAT, stop);
3479
3480   if (avi->seek_event)
3481     gst_event_unref (avi->seek_event);
3482   avi->seek_event = gst_event_new_new_segment
3483       (FALSE, avi->segment.rate, GST_FORMAT_TIME,
3484       avi->segment.start, stop, avi->segment.start);
3485
3486   /* at this point we know all the streams and we can signal the no more
3487    * pads signal */
3488   GST_DEBUG_OBJECT (avi, "signaling no more pads");
3489   gst_element_no_more_pads (GST_ELEMENT (avi));
3490
3491   return GST_FLOW_OK;
3492
3493   /* ERRORS */
3494 no_streams:
3495   {
3496     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL), ("No streams found"));
3497     return GST_FLOW_ERROR;
3498   }
3499 header_no_list:
3500   {
3501     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3502         ("Invalid AVI header (no LIST at start): %"
3503             GST_FOURCC_FORMAT, GST_FOURCC_ARGS (tag)));
3504     return GST_FLOW_ERROR;
3505   }
3506 header_no_hdrl:
3507   {
3508     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3509         ("Invalid AVI header (no hdrl at start): %"
3510             GST_FOURCC_FORMAT, GST_FOURCC_ARGS (tag)));
3511     gst_buffer_unref (buf);
3512     return GST_FLOW_ERROR;
3513   }
3514 header_no_avih:
3515   {
3516     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3517         ("Invalid AVI header (no avih at start): %"
3518             GST_FOURCC_FORMAT, GST_FOURCC_ARGS (tag)));
3519     if (sub)
3520       gst_buffer_unref (sub);
3521
3522     gst_buffer_unref (buf);
3523     return GST_FLOW_ERROR;
3524   }
3525 header_wrong_avih:
3526   {
3527     gst_buffer_unref (buf);
3528     return GST_FLOW_ERROR;
3529   }
3530 }
3531
3532 /*
3533  * Read full AVI headers.
3534  */
3535 static GstFlowReturn
3536 gst_avi_demux_stream_header_pull (GstAviDemux * avi)
3537 {
3538   GstFlowReturn res;
3539   GstBuffer *buf, *sub = NULL;
3540   guint32 tag;
3541 #if 0
3542   GList *index = NULL, *alloc = NULL;
3543 #endif
3544   guint offset = 4;
3545   gint64 stop;
3546   GstElement *element = GST_ELEMENT_CAST (avi);
3547   GstClockTime stamp;
3548
3549   stamp = gst_util_get_timestamp ();
3550
3551   /* the header consists of a 'hdrl' LIST tag */
3552   res = gst_riff_read_chunk (element, avi->sinkpad, &avi->offset, &tag, &buf);
3553   if (res != GST_FLOW_OK)
3554     goto pull_range_failed;
3555   else if (tag != GST_RIFF_TAG_LIST)
3556     goto no_list;
3557   else if (GST_BUFFER_SIZE (buf) < 4)
3558     goto no_header;
3559
3560   GST_DEBUG_OBJECT (avi, "parsing headers");
3561
3562   /* Find the 'hdrl' LIST tag */
3563   while (GST_READ_UINT32_LE (GST_BUFFER_DATA (buf)) != GST_RIFF_LIST_hdrl) {
3564     GST_LOG_OBJECT (avi, "buffer contains %" GST_FOURCC_FORMAT,
3565         GST_FOURCC_ARGS (GST_READ_UINT32_LE (GST_BUFFER_DATA (buf))));
3566
3567     /* Eat up */
3568     gst_buffer_unref (buf);
3569
3570     /* read new chunk */
3571     res = gst_riff_read_chunk (element, avi->sinkpad, &avi->offset, &tag, &buf);
3572     if (res != GST_FLOW_OK)
3573       goto pull_range_failed;
3574     else if (tag != GST_RIFF_TAG_LIST)
3575       goto no_list;
3576     else if (GST_BUFFER_SIZE (buf) < 4)
3577       goto no_header;
3578   }
3579
3580   GST_DEBUG_OBJECT (avi, "hdrl LIST tag found");
3581
3582   /* the hdrl starts with a 'avih' header */
3583   if (!gst_riff_parse_chunk (element, buf, &offset, &tag, &sub))
3584     goto no_avih;
3585   else if (tag != GST_RIFF_TAG_avih)
3586     goto no_avih;
3587   else if (!gst_avi_demux_parse_avih (element, sub, &avi->avih))
3588     goto invalid_avih;
3589
3590   GST_DEBUG_OBJECT (avi, "AVI header ok, reading elements from header");
3591
3592   /* now, read the elements from the header until the end */
3593   while (gst_riff_parse_chunk (element, buf, &offset, &tag, &sub)) {
3594     /* sub can be NULL on empty tags */
3595     if (!sub)
3596       continue;
3597
3598     switch (tag) {
3599       case GST_RIFF_TAG_LIST:
3600       {
3601         guint8 *data;
3602         guint32 fourcc;
3603
3604         if (GST_BUFFER_SIZE (sub) < 4)
3605           goto next;
3606
3607         data = GST_BUFFER_DATA (sub);
3608         fourcc = GST_READ_UINT32_LE (data);
3609
3610         switch (fourcc) {
3611           case GST_RIFF_LIST_strl:
3612             if (!(gst_avi_demux_parse_stream (avi, sub))) {
3613               GST_ELEMENT_WARNING (avi, STREAM, DEMUX, (NULL),
3614                   ("failed to parse stream, ignoring"));
3615               sub = NULL;
3616             }
3617             sub = NULL;
3618             goto next;
3619           case GST_RIFF_LIST_odml:
3620             gst_avi_demux_parse_odml (avi, sub);
3621             sub = NULL;
3622             break;
3623           default:
3624             GST_WARNING_OBJECT (avi,
3625                 "Unknown list %" GST_FOURCC_FORMAT " in AVI header",
3626                 GST_FOURCC_ARGS (fourcc));
3627             GST_MEMDUMP_OBJECT (avi, "Unknown list", GST_BUFFER_DATA (sub),
3628                 GST_BUFFER_SIZE (sub));
3629             /* fall-through */
3630           case GST_RIFF_TAG_JUNK:
3631             goto next;
3632         }
3633         break;
3634       }
3635       default:
3636         GST_WARNING_OBJECT (avi,
3637             "Unknown tag %" GST_FOURCC_FORMAT " in AVI header at off %d",
3638             GST_FOURCC_ARGS (tag), offset);
3639         GST_MEMDUMP_OBJECT (avi, "Unknown tag", GST_BUFFER_DATA (sub),
3640             GST_BUFFER_SIZE (sub));
3641         /* fall-through */
3642       case GST_RIFF_TAG_JUNK:
3643       next:
3644         if (sub)
3645           gst_buffer_unref (sub);
3646         sub = NULL;
3647         break;
3648     }
3649   }
3650   gst_buffer_unref (buf);
3651   GST_DEBUG ("elements parsed");
3652
3653   /* check parsed streams */
3654   if (avi->num_streams == 0)
3655     goto no_streams;
3656   else if (avi->num_streams != avi->avih->streams) {
3657     GST_WARNING_OBJECT (avi,
3658         "Stream header mentioned %d streams, but %d available",
3659         avi->avih->streams, avi->num_streams);
3660   }
3661
3662   GST_DEBUG_OBJECT (avi, "skipping junk between header and data, offset=%"
3663       G_GUINT64_FORMAT, avi->offset);
3664
3665   /* Now, find the data (i.e. skip all junk between header and data) */
3666   do {
3667     guint size;
3668     guint32 tag, ltag;
3669
3670     res = gst_pad_pull_range (avi->sinkpad, avi->offset, 12, &buf);
3671     if (res != GST_FLOW_OK) {
3672       GST_DEBUG_OBJECT (avi, "pull_range failure while looking for tags");
3673       goto pull_range_failed;
3674     } else if (GST_BUFFER_SIZE (buf) < 12) {
3675       GST_DEBUG_OBJECT (avi, "got %d bytes which is less than 12 bytes",
3676           GST_BUFFER_SIZE (buf));
3677       gst_buffer_unref (buf);
3678       return GST_FLOW_ERROR;
3679     }
3680
3681     tag = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf));
3682     size = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf) + 4);
3683     ltag = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf) + 8);
3684
3685     GST_DEBUG ("tag %" GST_FOURCC_FORMAT ", size %u",
3686         GST_FOURCC_ARGS (tag), size);
3687     GST_MEMDUMP ("Tag content", GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
3688     gst_buffer_unref (buf);
3689
3690     switch (tag) {
3691       case GST_RIFF_TAG_LIST:{
3692         switch (ltag) {
3693           case GST_RIFF_LIST_movi:
3694             GST_DEBUG_OBJECT (avi,
3695                 "Reached the 'movi' tag, we're done with skipping");
3696             goto skipping_done;
3697           case GST_RIFF_LIST_INFO:
3698             res =
3699                 gst_riff_read_chunk (element, avi->sinkpad, &avi->offset, &tag,
3700                 &buf);
3701             if (res != GST_FLOW_OK) {
3702               GST_DEBUG_OBJECT (avi, "couldn't read INFO chunk");
3703               goto pull_range_failed;
3704             }
3705             GST_DEBUG ("got size %u", GST_BUFFER_SIZE (buf));
3706             if (size < 4) {
3707               GST_DEBUG ("skipping INFO LIST prefix");
3708               avi->offset += (4 - GST_ROUND_UP_2 (size));
3709               gst_buffer_unref (buf);
3710               continue;
3711             }
3712
3713             sub = gst_buffer_create_sub (buf, 4, GST_BUFFER_SIZE (buf) - 4);
3714             gst_riff_parse_info (element, sub, &avi->globaltags);
3715             if (sub) {
3716               gst_buffer_unref (sub);
3717               sub = NULL;
3718             }
3719             gst_buffer_unref (buf);
3720             /* gst_riff_read_chunk() has already advanced avi->offset */
3721             break;
3722           default:
3723             GST_WARNING_OBJECT (avi,
3724                 "Skipping unknown list tag %" GST_FOURCC_FORMAT,
3725                 GST_FOURCC_ARGS (ltag));
3726             avi->offset += 8 + GST_ROUND_UP_2 (size);
3727             break;
3728         }
3729       }
3730         break;
3731       default:
3732         GST_WARNING_OBJECT (avi, "Skipping unknown tag %" GST_FOURCC_FORMAT,
3733             GST_FOURCC_ARGS (tag));
3734         /* Fall-through */
3735       case GST_MAKE_FOURCC ('J', 'U', 'N', 'Q'):
3736       case GST_MAKE_FOURCC ('J', 'U', 'N', 'K'):
3737         avi->offset += 8 + GST_ROUND_UP_2 (size);
3738         break;
3739     }
3740   } while (1);
3741 skipping_done:
3742
3743   GST_DEBUG_OBJECT (avi, "skipping done ... (streams=%u, stream[0].indexes=%p)",
3744       avi->num_streams, avi->stream[0].indexes);
3745
3746 #if 0
3747   /* create or read stream index (for seeking) */
3748   if (avi->stream[0].indexes != NULL) {
3749     /* we read a super index already (gst_avi_demux_parse_superindex() ) */
3750     gst_avi_demux_read_subindexes_pull (avi, &index, &alloc);
3751   }
3752   if (!index) {
3753 #endif
3754     if (avi->avih->flags & GST_RIFF_AVIH_HASINDEX) {
3755       gst_avi_demux_stream_index (avi);
3756     }
3757 #if 0
3758     /* some indexes are incomplete, continue streaming from there */
3759     if (!index)
3760       gst_avi_demux_stream_scan (avi, &index, &alloc);
3761   }
3762
3763   /* this is a fatal error */
3764   if (!index)
3765     goto no_index;
3766 #endif
3767
3768   gst_avi_demux_calculate_durations_from_index (avi);
3769
3770   /* create initial NEWSEGMENT event */
3771   if ((stop = avi->segment.stop) == GST_CLOCK_TIME_NONE)
3772     stop = avi->segment.duration;
3773
3774   GST_DEBUG_OBJECT (avi, "segment stop %" G_GINT64_FORMAT, stop);
3775
3776   /* do initial seek to the configured segment values */
3777   gst_avi_demux_do_seek (avi, &avi->segment);
3778
3779   if (avi->seek_event)
3780     gst_event_unref (avi->seek_event);
3781   avi->seek_event = gst_event_new_new_segment
3782       (FALSE, avi->segment.rate, GST_FORMAT_TIME,
3783       avi->segment.start, stop, avi->segment.start);
3784
3785   stamp = gst_util_get_timestamp () - stamp;
3786   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "pulling header %" GST_TIME_FORMAT,
3787       GST_TIME_ARGS (stamp));
3788
3789   /* at this point we know all the streams and we can signal the no more
3790    * pads signal */
3791   GST_DEBUG_OBJECT (avi, "signaling no more pads");
3792   gst_element_no_more_pads (GST_ELEMENT_CAST (avi));
3793
3794   return GST_FLOW_OK;
3795
3796   /* ERRORS */
3797 no_list:
3798   {
3799     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3800         ("Invalid AVI header (no LIST at start): %"
3801             GST_FOURCC_FORMAT, GST_FOURCC_ARGS (tag)));
3802     gst_buffer_unref (buf);
3803     return GST_FLOW_ERROR;
3804   }
3805 no_header:
3806   {
3807     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3808         ("Invalid AVI header (no hdrl at start): %"
3809             GST_FOURCC_FORMAT, GST_FOURCC_ARGS (tag)));
3810     gst_buffer_unref (buf);
3811     return GST_FLOW_ERROR;
3812   }
3813 no_avih:
3814   {
3815     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3816         ("Invalid AVI header (no avih at start): %"
3817             GST_FOURCC_FORMAT, GST_FOURCC_ARGS (tag)));
3818     if (sub)
3819       gst_buffer_unref (sub);
3820     gst_buffer_unref (buf);
3821     return GST_FLOW_ERROR;
3822   }
3823 invalid_avih:
3824   {
3825     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3826         ("Invalid AVI header (cannot parse avih at start)"));
3827     gst_buffer_unref (buf);
3828     return GST_FLOW_ERROR;
3829   }
3830 no_streams:
3831   {
3832     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL), ("No streams found"));
3833     return GST_FLOW_ERROR;
3834   }
3835 #if 0
3836 no_index:
3837   {
3838     GST_WARNING ("file without or too big index");
3839     g_list_free (index);
3840     g_list_foreach (alloc, (GFunc) g_free, NULL);
3841     g_list_free (alloc);
3842
3843     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3844         ("Could not get/create index"));
3845     return GST_FLOW_ERROR;
3846   }
3847 #endif
3848 pull_range_failed:
3849   {
3850     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
3851         ("pull_range flow reading header: %s", gst_flow_get_name (res)));
3852     return GST_FLOW_ERROR;
3853   }
3854 }
3855
3856 /* move a stream to an offset */
3857 static void
3858 gst_avi_demux_move_stream (GstAviDemux * avi, GstAviStream * stream,
3859     GstSegment * segment, guint index)
3860 {
3861   GST_DEBUG_OBJECT (avi, "Move stream %d to %u", stream->num, index);
3862
3863   if (segment->rate < 0.0) {
3864     guint next_key;
3865     /* Because we don't know the frame order we need to push from the prev keyframe
3866      * to the next keyframe. If there is a smart decoder downstream he will notice
3867      * that there are too many encoded frames send and return UNEXPECTED when there
3868      * are enough decoded frames to fill the segment. */
3869     next_key = gst_avi_demux_index_next (avi, stream, index, TRUE);
3870
3871     stream->start_entry = 0;
3872     stream->step_entry = index;
3873     stream->current_entry = index;
3874     stream->stop_entry = next_key;
3875
3876     GST_DEBUG_OBJECT (avi, "reverse seek: start %u, step %u, stop %u",
3877         stream->start_entry, stream->step_entry, stream->stop_entry);
3878   } else {
3879     stream->start_entry = index;
3880     stream->step_entry = index;
3881     stream->stop_entry = gst_avi_demux_index_last (avi, stream);
3882   }
3883   if (stream->current_entry != index) {
3884     stream->current_entry = index;
3885     stream->discont = TRUE;
3886   }
3887 }
3888
3889 /*
3890  * Do the actual seeking.
3891  */
3892 static gboolean
3893 gst_avi_demux_do_seek (GstAviDemux * avi, GstSegment * segment)
3894 {
3895   GstClockTime seek_time;
3896   gboolean keyframe;
3897   guint i, index;
3898   GstAviStream *stream;
3899   GstClockTime timestamp, duration;
3900   gboolean kentry;
3901
3902   seek_time = segment->last_stop;
3903   keyframe = !!(segment->flags & GST_SEEK_FLAG_KEY_UNIT);
3904
3905   /* FIXME, this code assumes the main stream with keyframes is stream 0,
3906    * which is mostly correct... */
3907   stream = &avi->stream[0];
3908
3909   /* get the entry index for the requested position */
3910   index = gst_avi_demux_index_for_time (avi, stream, seek_time);
3911
3912   /* take a look at the entry info */
3913   gst_avi_demux_get_entry_info (avi, stream, index,
3914       NULL, NULL, NULL, NULL, &kentry);
3915
3916   GST_DEBUG_OBJECT (avi, "Got entry %u", index);
3917
3918   /* check if we are already on a keyframe */
3919   if (!kentry) {
3920     GST_DEBUG_OBJECT (avi, "not keyframe, searching back");
3921     /* now go to the previous keyframe, this is where we should start
3922      * decoding from. */
3923     index = gst_avi_demux_index_prev (avi, stream, index, TRUE);
3924     GST_DEBUG_OBJECT (avi, "previous keyframe at %u", index);
3925   }
3926
3927   /* take a look at the final entry */
3928   gst_avi_demux_get_entry_info (avi, stream, index,
3929       &timestamp, &duration, NULL, NULL, NULL);
3930
3931   GST_DEBUG_OBJECT (avi,
3932       "Got keyframe entry %d [ts:%" GST_TIME_FORMAT
3933       " / duration:%" GST_TIME_FORMAT "]", index,
3934       GST_TIME_ARGS (timestamp), GST_TIME_ARGS (duration));
3935
3936   if (keyframe) {
3937     /* when seeking to a keyframe, we update the result seek time
3938      * to the time of the keyframe. */
3939     seek_time = timestamp;
3940   }
3941
3942   /* move the main stream */
3943   gst_avi_demux_move_stream (avi, stream, segment, index);
3944
3945   /* now set DISCONT and align the other streams */
3946   for (i = 0; i < avi->num_streams; i++) {
3947     GstAviStream *ostream;
3948
3949     ostream = &avi->stream[i];
3950     if (ostream == stream)
3951       continue;
3952
3953     /* get the entry index for the requested position */
3954     index = gst_avi_demux_index_for_time (avi, ostream, seek_time);
3955
3956     gst_avi_demux_get_entry_info (avi, ostream, index,
3957         NULL, NULL, NULL, NULL, &kentry);
3958     if (!kentry) {
3959       index = gst_avi_demux_index_prev (avi, ostream, index, TRUE);
3960     }
3961     gst_avi_demux_move_stream (avi, ostream, segment, index);
3962   }
3963
3964   GST_DEBUG_OBJECT (avi, "seek: %" GST_TIME_FORMAT
3965       " keyframe seeking:%d", GST_TIME_ARGS (seek_time), keyframe);
3966
3967   /* the seek time is also the last_stop and stream time */
3968   segment->last_stop = seek_time;
3969   segment->time = seek_time;
3970
3971   return TRUE;
3972 }
3973
3974 /*
3975  * Handle seek event.
3976  */
3977 static gboolean
3978 gst_avi_demux_handle_seek (GstAviDemux * avi, GstPad * pad, GstEvent * event)
3979 {
3980   gdouble rate;
3981   GstFormat format;
3982   GstSeekFlags flags;
3983   GstSeekType cur_type = GST_SEEK_TYPE_NONE, stop_type;
3984   gint64 cur, stop;
3985   gboolean flush;
3986   gboolean update;
3987   GstSegment seeksegment = { 0, };
3988
3989   if (event) {
3990     GST_DEBUG_OBJECT (avi, "doing seek with event");
3991
3992     gst_event_parse_seek (event, &rate, &format, &flags,
3993         &cur_type, &cur, &stop_type, &stop);
3994
3995     /* we have to have a format as the segment format. Try to convert
3996      * if not. */
3997     if (format != GST_FORMAT_TIME) {
3998       GstFormat fmt = GST_FORMAT_TIME;
3999       gboolean res = TRUE;
4000
4001       if (cur_type != GST_SEEK_TYPE_NONE)
4002         res = gst_pad_query_convert (pad, format, cur, &fmt, &cur);
4003       if (res && stop_type != GST_SEEK_TYPE_NONE)
4004         res = gst_pad_query_convert (pad, format, stop, &fmt, &stop);
4005       if (!res)
4006         goto no_format;
4007
4008       format = fmt;
4009     }
4010     GST_DEBUG_OBJECT (avi,
4011         "seek requested: rate %g cur %" GST_TIME_FORMAT " stop %"
4012         GST_TIME_FORMAT, rate, GST_TIME_ARGS (cur), GST_TIME_ARGS (stop));
4013     /* FIXME: can we do anything with rate!=1.0 */
4014   } else {
4015     GST_DEBUG_OBJECT (avi, "doing seek without event");
4016     flags = 0;
4017     rate = 1.0;
4018   }
4019
4020   /* save flush flag */
4021   flush = flags & GST_SEEK_FLAG_FLUSH;
4022
4023   if (flush) {
4024     GstEvent *event = gst_event_new_flush_start ();
4025
4026     /* for a flushing seek, we send a flush_start on all pads. This will
4027      * eventually stop streaming with a WRONG_STATE. We can thus eventually
4028      * take the STREAM_LOCK. */
4029     GST_DEBUG_OBJECT (avi, "sending flush start");
4030     gst_avi_demux_push_event (avi, gst_event_ref (event));
4031     gst_pad_push_event (avi->sinkpad, event);
4032   } else {
4033     /* a non-flushing seek, we PAUSE the task so that we can take the
4034      * STREAM_LOCK */
4035     GST_DEBUG_OBJECT (avi, "non flushing seek, pausing task");
4036     gst_pad_pause_task (avi->sinkpad);
4037   }
4038
4039   /* wait for streaming to stop */
4040   GST_DEBUG_OBJECT (avi, "wait for streaming to stop");
4041   GST_PAD_STREAM_LOCK (avi->sinkpad);
4042
4043   /* copy segment, we need this because we still need the old
4044    * segment when we close the current segment. */
4045   memcpy (&seeksegment, &avi->segment, sizeof (GstSegment));
4046
4047   if (event) {
4048     GST_DEBUG_OBJECT (avi, "configuring seek");
4049     gst_segment_set_seek (&seeksegment, rate, format, flags,
4050         cur_type, cur, stop_type, stop, &update);
4051   }
4052   /* do the seek, seeksegment.last_stop contains the new position, this
4053    * actually never fails. */
4054   gst_avi_demux_do_seek (avi, &seeksegment);
4055
4056   if (flush) {
4057     gint i;
4058
4059     GST_DEBUG_OBJECT (avi, "sending flush stop");
4060     gst_avi_demux_push_event (avi, gst_event_new_flush_stop ());
4061     gst_pad_push_event (avi->sinkpad, gst_event_new_flush_stop ());
4062     /* reset the last flow and mark discont, FLUSH is always DISCONT */
4063     for (i = 0; i < avi->num_streams; i++) {
4064       avi->stream[i].last_flow = GST_FLOW_OK;
4065       avi->stream[i].discont = TRUE;
4066     }
4067   } else if (avi->segment_running) {
4068     GstEvent *seg;
4069
4070     /* we are running the current segment and doing a non-flushing seek,
4071      * close the segment first based on the last_stop. */
4072     GST_DEBUG_OBJECT (avi, "closing running segment %" G_GINT64_FORMAT
4073         " to %" G_GINT64_FORMAT, avi->segment.start, avi->segment.last_stop);
4074     seg = gst_event_new_new_segment (TRUE,
4075         avi->segment.rate, avi->segment.format,
4076         avi->segment.start, avi->segment.last_stop, avi->segment.time);
4077     gst_avi_demux_push_event (avi, seg);
4078   }
4079
4080   /* now update the real segment info */
4081   memcpy (&avi->segment, &seeksegment, sizeof (GstSegment));
4082
4083   /* post the SEGMENT_START message when we do segmented playback */
4084   if (avi->segment.flags & GST_SEEK_FLAG_SEGMENT) {
4085     gst_element_post_message (GST_ELEMENT (avi),
4086         gst_message_new_segment_start (GST_OBJECT (avi),
4087             avi->segment.format, avi->segment.last_stop));
4088   }
4089
4090   /* prepare for streaming again */
4091   if ((stop = avi->segment.stop) == GST_CLOCK_TIME_NONE)
4092     stop = avi->segment.duration;
4093
4094   /* queue the segment event for the streaming thread. */
4095   if (avi->seek_event)
4096     gst_event_unref (avi->seek_event);
4097   if (avi->segment.rate > 0.0) {
4098     avi->seek_event = gst_event_new_new_segment (FALSE,
4099         avi->segment.rate, avi->segment.format,
4100         avi->segment.last_stop, stop, avi->segment.time);
4101   } else {
4102     avi->seek_event = gst_event_new_new_segment (FALSE,
4103         avi->segment.rate, avi->segment.format,
4104         avi->segment.start, avi->segment.last_stop, avi->segment.start);
4105   }
4106
4107   if (!avi->streaming) {
4108     avi->segment_running = TRUE;
4109     gst_pad_start_task (avi->sinkpad, (GstTaskFunction) gst_avi_demux_loop,
4110         avi->sinkpad);
4111   }
4112   GST_PAD_STREAM_UNLOCK (avi->sinkpad);
4113
4114   return TRUE;
4115
4116   /* ERRORS */
4117 no_format:
4118   {
4119     GST_DEBUG_OBJECT (avi, "unsupported format given, seek aborted.");
4120     return FALSE;
4121   }
4122 }
4123
4124 /*
4125  * Helper for gst_avi_demux_invert()
4126  */
4127 static inline void
4128 swap_line (guint8 * d1, guint8 * d2, guint8 * tmp, gint bytes)
4129 {
4130   memcpy (tmp, d1, bytes);
4131   memcpy (d1, d2, bytes);
4132   memcpy (d2, tmp, bytes);
4133 }
4134
4135
4136 #define gst_avi_demux_is_uncompressed(fourcc)           \
4137   (fourcc == GST_RIFF_DIB ||                            \
4138    fourcc == GST_RIFF_rgb ||                            \
4139    fourcc == GST_RIFF_RGB || fourcc == GST_RIFF_RAW)
4140
4141 /*
4142  * Invert DIB buffers... Takes existing buffer and
4143  * returns either the buffer or a new one (with old
4144  * one dereferenced).
4145  * FIXME: can't we preallocate tmp? and remember stride, bpp?
4146  */
4147 static GstBuffer *
4148 gst_avi_demux_invert (GstAviStream * stream, GstBuffer * buf)
4149 {
4150   GstStructure *s;
4151   gint y, w, h;
4152   gint bpp, stride;
4153   guint8 *tmp = NULL;
4154
4155   if (stream->strh->type != GST_RIFF_FCC_vids)
4156     return buf;
4157
4158   if (!gst_avi_demux_is_uncompressed (stream->strh->fcc_handler)) {
4159     return buf;                 /* Ignore non DIB buffers */
4160   }
4161
4162   s = gst_caps_get_structure (GST_PAD_CAPS (stream->pad), 0);
4163   if (!gst_structure_get_int (s, "bpp", &bpp)) {
4164     GST_WARNING ("Failed to retrieve depth from caps");
4165     return buf;
4166   }
4167
4168   if (stream->strf.vids == NULL) {
4169     GST_WARNING ("Failed to retrieve vids for stream");
4170     return buf;
4171   }
4172
4173   h = stream->strf.vids->height;
4174   w = stream->strf.vids->width;
4175   stride = w * (bpp / 8);
4176
4177   buf = gst_buffer_make_writable (buf);
4178   if (GST_BUFFER_SIZE (buf) < (stride * h)) {
4179     GST_WARNING ("Buffer is smaller than reported Width x Height x Depth");
4180     return buf;
4181   }
4182
4183   tmp = g_malloc (stride);
4184
4185   for (y = 0; y < h / 2; y++) {
4186     swap_line (GST_BUFFER_DATA (buf) + stride * y,
4187         GST_BUFFER_DATA (buf) + stride * (h - 1 - y), tmp, stride);
4188   }
4189
4190   g_free (tmp);
4191
4192   return buf;
4193 }
4194
4195 /*
4196  * Returns the aggregated GstFlowReturn.
4197  */
4198 static GstFlowReturn
4199 gst_avi_demux_combine_flows (GstAviDemux * avi, GstAviStream * stream,
4200     GstFlowReturn ret)
4201 {
4202   guint i;
4203
4204   /* store the value */
4205   stream->last_flow = ret;
4206
4207   /* any other error that is not-linked can be returned right away */
4208   if (G_UNLIKELY (ret != GST_FLOW_NOT_LINKED))
4209     goto done;
4210
4211   /* only return NOT_LINKED if all other pads returned NOT_LINKED */
4212   for (i = 0; i < avi->num_streams; i++) {
4213     GstAviStream *ostream = &avi->stream[i];
4214
4215     ret = ostream->last_flow;
4216     /* some other return value (must be SUCCESS but we can return
4217      * other values as well) */
4218     if (G_UNLIKELY (ret != GST_FLOW_NOT_LINKED))
4219       goto done;
4220   }
4221   /* if we get here, all other pads were unlinked and we return
4222    * NOT_LINKED then */
4223 done:
4224   GST_LOG_OBJECT (avi, "combined return %s", gst_flow_get_name (ret));
4225   return ret;
4226 }
4227
4228 #if 0
4229 /*
4230  * Read data from one index entry
4231  */
4232 static GstFlowReturn
4233 gst_avi_demux_process_next_entry (GstAviDemux * avi)
4234 {
4235   GstFlowReturn res = GST_FLOW_OK;
4236   gboolean processed = FALSE;
4237   GstAviStream *stream;
4238   gst_avi_index_entry *entry;
4239   GstBuffer *buf;
4240
4241   do {
4242     /* see if we are at the end */
4243     if ((avi->segment.rate > 0 && avi->current_entry >= avi->index_size))
4244       goto eos;
4245
4246     /* get next entry, this will work as we checked for the index size above */
4247     entry = &avi->index_entries[avi->current_entry++];
4248
4249     /* check for reverse playback */
4250     if (avi->segment.rate < 0 && avi->current_entry > avi->reverse_stop_index) {
4251       GST_LOG_OBJECT (avi, "stop_index %d reached", avi->reverse_stop_index);
4252
4253       /* check if we have pushed enough data for this segment */
4254       if (avi->reverse_start_index == 0)
4255         goto eos_reverse_zero;
4256       if (avi->index_entries[avi->reverse_start_index].ts < avi->segment.start)
4257         goto eos_reverse_segment;
4258
4259       if (!(entry = gst_avi_demux_step_reverse (avi)))
4260         goto eos;
4261
4262       avi->current_entry++;
4263     }
4264
4265     /* see if we have a valid stream, ignore if not
4266      * FIXME: can't we check this when building the index?
4267      *   we check it in _parse_index(), _stream_scan()
4268      */
4269     if (entry->stream_nr >= avi->num_streams) {
4270       GST_WARNING_OBJECT (avi,
4271           "Entry %d has non-existing stream nr %d",
4272           avi->current_entry - 1, entry->stream_nr);
4273       continue;
4274     }
4275
4276     /* get stream now */
4277     stream = &avi->stream[entry->stream_nr];
4278
4279     if (avi->segment.rate > 0.0) {
4280       /* only check this for fowards playback for now */
4281       if ((entry->flags & GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME)
4282           && GST_CLOCK_TIME_IS_VALID (entry->ts)
4283           && GST_CLOCK_TIME_IS_VALID (avi->segment.stop)
4284           && (entry->ts > avi->segment.stop)) {
4285         goto eos_stop;
4286       }
4287     }
4288
4289     /* skip empty entries */
4290     if (entry->size == 0 || !stream->pad) {
4291       GST_DEBUG_OBJECT (avi, "Skipping entry %d (%d, %p)",
4292           avi->current_entry - 1, entry->size, stream->pad);
4293       goto next;
4294     }
4295
4296     GST_LOG ("reading buffer (size=%d) from stream %d at current pos %"
4297         G_GUINT64_FORMAT " (%llx)", entry->size, entry->stream_nr,
4298         avi->index_offset + entry->offset, avi->index_offset + entry->offset);
4299
4300     /* pull in the data */
4301     res = gst_pad_pull_range (avi->sinkpad, entry->offset +
4302         avi->index_offset, entry->size, &buf);
4303     if (res != GST_FLOW_OK)
4304       goto pull_failed;
4305
4306     /* check for short buffers, this is EOS as well */
4307     if (GST_BUFFER_SIZE (buf) < entry->size)
4308       goto short_buffer;
4309
4310     /* invert the picture if needed */
4311     buf = gst_avi_demux_invert (stream, buf);
4312
4313     /* mark non-keyframes */
4314     if (!(entry->flags & GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME))
4315       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT);
4316
4317     GST_BUFFER_TIMESTAMP (buf) = entry->ts;
4318     GST_BUFFER_DURATION (buf) = entry->dur;
4319     if (stream->strh->type == GST_RIFF_FCC_vids) {
4320       if (stream->current_frame >= 0)
4321         GST_BUFFER_OFFSET (buf) = stream->current_frame;
4322       else {
4323         gint64 framenum;
4324         GstFormat fmt = GST_FORMAT_DEFAULT;
4325
4326         if (gst_pad_query_convert (stream->pad, GST_FORMAT_TIME, entry->ts,
4327                 &fmt, &framenum))
4328           GST_BUFFER_OFFSET (buf) = framenum;
4329         else
4330           GST_BUFFER_OFFSET (buf) = GST_BUFFER_OFFSET_NONE;
4331       }
4332     } else
4333       GST_BUFFER_OFFSET (buf) = GST_BUFFER_OFFSET_NONE;
4334     GST_BUFFER_OFFSET_END (buf) = GST_BUFFER_OFFSET_NONE;
4335     gst_buffer_set_caps (buf, GST_PAD_CAPS (stream->pad));
4336
4337     GST_DEBUG_OBJECT (avi, "Pushing buffer of size %d, offset %"
4338         G_GUINT64_FORMAT " and time %"
4339         GST_TIME_FORMAT " on pad %s",
4340         GST_BUFFER_SIZE (buf), GST_BUFFER_OFFSET (buf),
4341         GST_TIME_ARGS (entry->ts), GST_PAD_NAME (stream->pad));
4342
4343     /* update current position in the segment */
4344     gst_segment_set_last_stop (&avi->segment, GST_FORMAT_TIME, entry->ts);
4345
4346     /* mark discont when pending */
4347     if (stream->discont) {
4348       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
4349       stream->discont = FALSE;
4350     }
4351
4352     res = gst_pad_push (stream->pad, buf);
4353
4354     /* mark as processed, we increment the frame and byte counters then
4355      * leave the while loop and return the GstFlowReturn */
4356     processed = TRUE;
4357     GST_DEBUG_OBJECT (avi, "Processed buffer %d: %s", entry->index_nr,
4358         gst_flow_get_name (res));
4359
4360     if (avi->segment.rate < 0
4361         && entry->ts > avi->segment.stop && res == GST_FLOW_UNEXPECTED) {
4362       /* In reverse playback we can get a GST_FLOW_UNEXPECTED when
4363        * we are at the end of the segment, so we just need to jump
4364        * back to the previous section.
4365        */
4366       GST_DEBUG_OBJECT (avi, "downstream has reached end of segment");
4367
4368       if (!(entry = gst_avi_demux_step_reverse (avi)))
4369         goto eos;
4370
4371       res = GST_FLOW_OK;
4372
4373       stream->current_frame = entry->frames_before;
4374       stream->current_byte = entry->bytes_before;
4375
4376       continue;
4377     }
4378
4379     /* combine flows */
4380     res = gst_avi_demux_combine_flows (avi, stream, res);
4381
4382   next:
4383     stream->current_frame = entry->frames_before + 1;
4384     stream->current_byte = entry->bytes_before + entry->size;
4385   } while (!processed);
4386
4387 beach:
4388   GST_DEBUG_OBJECT (avi, "returning %s", gst_flow_get_name (res));
4389
4390   return res;
4391
4392   /* ERRORS */
4393 eos:
4394   {
4395     GST_LOG_OBJECT (avi, "Handled last index entry, setting EOS (%d > %d)",
4396         avi->current_entry, avi->index_size);
4397     /* we mark the first stream as EOS */
4398     res = GST_FLOW_UNEXPECTED;
4399     goto beach;
4400   }
4401 eos_stop:
4402   {
4403     GST_LOG_OBJECT (avi, "Found keyframe after segment,"
4404         " setting EOS (%" GST_TIME_FORMAT " > %" GST_TIME_FORMAT ")",
4405         GST_TIME_ARGS (entry->ts), GST_TIME_ARGS (avi->segment.stop));
4406     res = GST_FLOW_UNEXPECTED;
4407     goto beach;
4408   }
4409 eos_reverse_zero:
4410   {
4411     GST_DEBUG_OBJECT (avi, "start_index was 0, setting EOS");
4412     res = GST_FLOW_UNEXPECTED;
4413     goto beach;
4414   }
4415 eos_reverse_segment:
4416   {
4417     GST_DEBUG_OBJECT (avi, "full segment pushed, setting EOS");
4418     res = GST_FLOW_UNEXPECTED;
4419     goto beach;
4420   }
4421 pull_failed:
4422   {
4423     GST_DEBUG_OBJECT (avi,
4424         "pull range failed: pos=%" G_GUINT64_FORMAT " size=%d",
4425         entry->offset + avi->index_offset, entry->size);
4426     goto beach;
4427   }
4428 short_buffer:
4429   {
4430     GST_WARNING_OBJECT (avi, "Short read at offset %" G_GUINT64_FORMAT
4431         ", only got %d/%d bytes (truncated file?)", entry->offset +
4432         avi->index_offset, GST_BUFFER_SIZE (buf), entry->size);
4433     gst_buffer_unref (buf);
4434     res = GST_FLOW_UNEXPECTED;
4435     goto beach;
4436   }
4437 }
4438 #endif
4439
4440 /* move @stream to the next position in its index */
4441 static GstFlowReturn
4442 gst_avi_demux_advance (GstAviDemux * avi, GstAviStream * stream,
4443     GstFlowReturn ret)
4444 {
4445   guint i;
4446
4447   /* move to the next entry */
4448   stream->current_entry++;
4449   stream->current_frame++;
4450
4451   /* see if we reached the end */
4452   if (stream->current_entry >= stream->stop_entry) {
4453     if (avi->segment.rate < 0.0) {
4454       if (stream->step_entry == stream->start_entry) {
4455         /* we stepped all the way to the start, eos */
4456         GST_DEBUG_OBJECT (avi, "reverse reached start %u", stream->start_entry);
4457         goto eos;
4458       }
4459       /* backwards, stop becomes step, find a new step */
4460       stream->stop_entry = stream->step_entry;
4461       stream->step_entry = gst_avi_demux_index_prev (avi, stream,
4462           stream->stop_entry, TRUE);
4463       stream->current_entry = stream->step_entry;
4464
4465       GST_DEBUG_OBJECT (avi,
4466           "reverse playback jump: start %u, step %u, stop %u",
4467           stream->start_entry, stream->step_entry, stream->stop_entry);
4468
4469       /* mark DISCONT */
4470       for (i = 0; i < avi->num_streams; i++) {
4471         avi->stream[i].last_flow = GST_FLOW_OK;
4472         avi->stream[i].discont = TRUE;
4473       }
4474     } else {
4475       /* EOS */
4476       GST_DEBUG_OBJECT (avi, "forward reached stop %u", stream->stop_entry);
4477       goto eos;
4478     }
4479   }
4480   return ret;
4481
4482   /* ERROR */
4483 eos:
4484   {
4485     GST_DEBUG_OBJECT (avi, "we are EOS");
4486     /* setting current_time to -1 marks EOS */
4487     stream->current_time = -1;
4488     return GST_FLOW_UNEXPECTED;
4489   }
4490 }
4491
4492 static GstFlowReturn
4493 gst_avi_demux_loop_data (GstAviDemux * avi)
4494 {
4495   GstFlowReturn ret = GST_FLOW_OK;
4496   guint64 min_time;
4497   guint stream_num, i;
4498   GstAviStream *stream;
4499   gboolean processed = FALSE;
4500   GstBuffer *buf;
4501   guint64 offset, size;
4502   GstClockTime timestamp, duration;
4503   gboolean keyframe;
4504
4505   do {
4506     /* first find the stream with the lowest current position, this is the one
4507      * we should push from next */
4508     min_time = G_MAXUINT64;
4509     stream_num = -1;
4510     for (i = 0; i < avi->num_streams; i++) {
4511       guint64 position;
4512
4513       stream = &avi->stream[i];
4514       position = stream->current_time;
4515
4516       /* position of -1 is EOS */
4517       if (position != -1 && position < min_time) {
4518         min_time = position;
4519         stream_num = i;
4520       }
4521     }
4522
4523     /* all are EOS */
4524     if (G_UNLIKELY (stream_num == -1)) {
4525       GST_DEBUG_OBJECT (avi, "all streams are EOS");
4526       goto eos;
4527     }
4528
4529     /* we have the stream now */
4530     stream = &avi->stream[stream_num];
4531
4532     /* skip streams without pads */
4533     if (!stream->pad) {
4534       GST_DEBUG_OBJECT (avi, "skipping entry from stream %d without pad",
4535           stream_num);
4536       goto next;
4537     }
4538
4539     /* get the timing info for the entry */
4540     gst_avi_demux_get_entry_info (avi, stream, stream->current_entry,
4541         &timestamp, &duration, &offset, &size, &keyframe);
4542
4543     /* skip empty entries */
4544     if (size == 0) {
4545       GST_DEBUG_OBJECT (avi, "Skipping entry %d (%d, %p)",
4546           stream->current_entry, size, stream->pad);
4547       goto next;
4548     }
4549
4550     if (avi->segment.rate > 0.0) {
4551       /* only check this for fowards playback for now */
4552       if (keyframe && GST_CLOCK_TIME_IS_VALID (timestamp)
4553           && GST_CLOCK_TIME_IS_VALID (avi->segment.stop)
4554           && (timestamp > avi->segment.stop)) {
4555         goto eos_stop;
4556       }
4557     }
4558
4559     /* correct for index offset */
4560     offset += avi->index_offset + 8;
4561
4562     GST_LOG ("reading buffer (size=%d) from stream %d at current pos %"
4563         G_GUINT64_FORMAT " (%llx)", size, stream_num, offset, offset);
4564
4565     /* pull in the data */
4566     ret = gst_pad_pull_range (avi->sinkpad, offset, size, &buf);
4567     if (ret != GST_FLOW_OK)
4568       goto pull_failed;
4569
4570     /* check for short buffers, this is EOS as well */
4571     if (GST_BUFFER_SIZE (buf) < size)
4572       goto short_buffer;
4573
4574     /* invert the picture if needed */
4575     buf = gst_avi_demux_invert (stream, buf);
4576
4577     /* mark non-keyframes */
4578     if (!keyframe)
4579       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT);
4580
4581     GST_BUFFER_TIMESTAMP (buf) = timestamp;
4582     GST_BUFFER_DURATION (buf) = duration;
4583     GST_BUFFER_OFFSET (buf) = GST_BUFFER_OFFSET_NONE;
4584     GST_BUFFER_OFFSET_END (buf) = GST_BUFFER_OFFSET_NONE;
4585
4586     gst_buffer_set_caps (buf, GST_PAD_CAPS (stream->pad));
4587
4588     GST_DEBUG_OBJECT (avi, "Pushing buffer of size %d, offset %"
4589         G_GUINT64_FORMAT " and time %"
4590         GST_TIME_FORMAT " on pad %s",
4591         GST_BUFFER_SIZE (buf), GST_BUFFER_OFFSET (buf),
4592         GST_TIME_ARGS (timestamp), GST_PAD_NAME (stream->pad));
4593
4594     /* update current position in the segment */
4595     gst_segment_set_last_stop (&avi->segment, GST_FORMAT_TIME, timestamp);
4596
4597     /* mark discont when pending */
4598     if (stream->discont) {
4599       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
4600       stream->discont = FALSE;
4601     }
4602
4603     ret = gst_pad_push (stream->pad, buf);
4604
4605     /* mark as processed, we increment the frame and byte counters then
4606      * leave the while loop and return the GstFlowReturn */
4607     processed = TRUE;
4608     GST_DEBUG_OBJECT (avi, "Processed buffer %d: %s", stream->current_entry,
4609         gst_flow_get_name (ret));
4610
4611     if (avi->segment.rate < 0) {
4612       if (timestamp > avi->segment.stop && ret == GST_FLOW_UNEXPECTED) {
4613         /* In reverse playback we can get a GST_FLOW_UNEXPECTED when
4614          * we are at the end of the segment, so we just need to jump
4615          * back to the previous section. */
4616         GST_DEBUG_OBJECT (avi, "downstream has reached end of segment");
4617         ret = GST_FLOW_OK;
4618       }
4619     }
4620   next:
4621     ret = gst_avi_demux_advance (avi, stream, ret);
4622
4623     /* combine flows */
4624     ret = gst_avi_demux_combine_flows (avi, stream, ret);
4625   } while (!processed);
4626
4627 beach:
4628   return ret;
4629
4630   /* special cases */
4631 eos:
4632   {
4633     GST_DEBUG_OBJECT (avi, "No samples left for any streams - EOS");
4634     ret = GST_FLOW_UNEXPECTED;
4635     goto beach;
4636   }
4637 eos_stop:
4638   {
4639     GST_LOG_OBJECT (avi, "Found keyframe after segment,"
4640         " setting EOS (%" GST_TIME_FORMAT " > %" GST_TIME_FORMAT ")",
4641         GST_TIME_ARGS (timestamp), GST_TIME_ARGS (avi->segment.stop));
4642     ret = GST_FLOW_UNEXPECTED;
4643     goto beach;
4644   }
4645 pull_failed:
4646   {
4647     GST_DEBUG_OBJECT (avi, "pull range failed: pos=%" G_GUINT64_FORMAT
4648         " size=%d", offset, size);
4649     goto beach;
4650   }
4651 short_buffer:
4652   {
4653     GST_WARNING_OBJECT (avi, "Short read at offset %" G_GUINT64_FORMAT
4654         ", only got %d/%d bytes (truncated file?)", offset,
4655         GST_BUFFER_SIZE (buf), size);
4656     gst_buffer_unref (buf);
4657     ret = GST_FLOW_UNEXPECTED;
4658     goto beach;
4659   }
4660 #if 0
4661 eos_stream:
4662   {
4663     GST_DEBUG_OBJECT (avi, "No samples left for stream");
4664     /* EOS will be raised if all are EOS */
4665     ret = GST_FLOW_OK;
4666     goto beach;
4667   }
4668 #endif
4669 }
4670
4671 /*
4672  * Read data. If we have an index it delegates to
4673  * gst_avi_demux_process_next_entry().
4674  */
4675 static GstFlowReturn
4676 gst_avi_demux_stream_data (GstAviDemux * avi)
4677 {
4678   guint32 tag = 0;
4679   guint32 size = 0;
4680   gint stream_nr = 0;
4681   GstFlowReturn res = GST_FLOW_OK;
4682   GstFormat format = GST_FORMAT_TIME;
4683
4684   if (G_UNLIKELY (avi->have_eos)) {
4685     /* Clean adapter, we're done */
4686     gst_adapter_clear (avi->adapter);
4687     return res;
4688   }
4689
4690   /* Iterate until need more data, so adapter won't grow too much */
4691   while (1) {
4692     if (G_UNLIKELY (!gst_avi_demux_peek_chunk_info (avi, &tag, &size))) {
4693       return GST_FLOW_OK;
4694     }
4695
4696     GST_DEBUG ("Trying chunk (%" GST_FOURCC_FORMAT "), size %d",
4697         GST_FOURCC_ARGS (tag), size);
4698
4699     if (G_LIKELY ((tag & 0xff) >= '0' && (tag & 0xff) <= '9' &&
4700             ((tag >> 8) & 0xff) >= '0' && ((tag >> 8) & 0xff) <= '9')) {
4701       GST_LOG ("Chunk ok");
4702     } else if ((tag & 0xffff) == (('x' << 8) | 'i')) {
4703       GST_DEBUG ("Found sub-index tag");
4704       if (gst_avi_demux_peek_chunk (avi, &tag, &size) || size == 0) {
4705         /* accept 0 size buffer here */
4706         avi->abort_buffering = FALSE;
4707         GST_DEBUG ("  skipping %d bytes for now", size);
4708         gst_adapter_flush (avi->adapter, 8 + GST_ROUND_UP_2 (size));
4709       }
4710       return GST_FLOW_OK;
4711     } else if (tag == GST_RIFF_TAG_idx1) {
4712       GST_DEBUG ("Found index tag, stream done");
4713       avi->have_eos = TRUE;
4714       return GST_FLOW_UNEXPECTED;
4715     } else if (tag == GST_RIFF_TAG_LIST) {
4716       /* movi chunks might be grouped in rec list */
4717       if (gst_adapter_available (avi->adapter) >= 12) {
4718         GST_DEBUG ("Found LIST tag, skipping LIST header");
4719         gst_adapter_flush (avi->adapter, 12);
4720         continue;
4721       }
4722       return GST_FLOW_OK;
4723     } else if (tag == GST_RIFF_TAG_JUNK) {
4724       /* rec list might contain JUNK chunks */
4725       GST_DEBUG ("Found JUNK tag");
4726       if (gst_avi_demux_peek_chunk (avi, &tag, &size) || size == 0) {
4727         /* accept 0 size buffer here */
4728         avi->abort_buffering = FALSE;
4729         GST_DEBUG ("  skipping %d bytes for now", size);
4730         gst_adapter_flush (avi->adapter, 8 + GST_ROUND_UP_2 (size));
4731       }
4732       return GST_FLOW_OK;
4733     } else {
4734       GST_DEBUG ("No more stream chunks, send EOS");
4735       avi->have_eos = TRUE;
4736       return GST_FLOW_UNEXPECTED;
4737     }
4738
4739     if (G_UNLIKELY (!gst_avi_demux_peek_chunk (avi, &tag, &size))) {
4740       /* supposedly one hopes to catch a nicer chunk later on ... */
4741       /* FIXME ?? give up here rather than possibly ending up going
4742        * through the whole file */
4743       if (avi->abort_buffering) {
4744         avi->abort_buffering = FALSE;
4745         gst_adapter_flush (avi->adapter, 8);
4746       }
4747       return GST_FLOW_OK;
4748     }
4749     GST_DEBUG ("chunk ID %" GST_FOURCC_FORMAT ", size %u",
4750         GST_FOURCC_ARGS (tag), size);
4751
4752     stream_nr = CHUNKID_TO_STREAMNR (tag);
4753
4754     if (G_UNLIKELY (stream_nr < 0 || stream_nr >= avi->num_streams)) {
4755       /* recoverable */
4756       GST_WARNING ("Invalid stream ID %d (%" GST_FOURCC_FORMAT ")",
4757           stream_nr, GST_FOURCC_ARGS (tag));
4758       avi->offset += 8 + GST_ROUND_UP_2 (size);
4759       gst_adapter_flush (avi->adapter, 8 + GST_ROUND_UP_2 (size));
4760     } else {
4761       GstAviStream *stream;
4762       GstClockTime next_ts = 0;
4763       GstBuffer *buf;
4764
4765       gst_adapter_flush (avi->adapter, 8);
4766
4767       /* get buffer */
4768       buf = gst_adapter_take_buffer (avi->adapter, GST_ROUND_UP_2 (size));
4769       /* patch the size */
4770       GST_BUFFER_SIZE (buf) = size;
4771       avi->offset += 8 + GST_ROUND_UP_2 (size);
4772
4773       stream = &avi->stream[stream_nr];
4774
4775       /* set delay (if any)
4776          if (stream->strh->init_frames == stream->current_frame &&
4777          stream->delay == 0)
4778          stream->delay = next_ts;
4779        */
4780
4781       /* parsing of corresponding header may have failed */
4782       if (G_UNLIKELY (!stream->pad)) {
4783         GST_WARNING_OBJECT (avi, "no pad for stream ID %" GST_FOURCC_FORMAT,
4784             GST_FOURCC_ARGS (tag));
4785         gst_buffer_unref (buf);
4786       } else {
4787         GstClockTime dur_ts = 0;
4788
4789         /* get time of this buffer */
4790         gst_pad_query_position (stream->pad, &format, (gint64 *) & next_ts);
4791         if (G_UNLIKELY (format != GST_FORMAT_TIME))
4792           goto wrong_format;
4793
4794         stream->current_frame++;
4795         stream->current_byte += size;
4796
4797         /* invert the picture if needed */
4798         buf = gst_avi_demux_invert (stream, buf);
4799
4800         gst_pad_query_position (stream->pad, &format, (gint64 *) & dur_ts);
4801         if (G_UNLIKELY (format != GST_FORMAT_TIME))
4802           goto wrong_format;
4803
4804         GST_BUFFER_TIMESTAMP (buf) = next_ts;
4805         GST_BUFFER_DURATION (buf) = dur_ts - next_ts;
4806         if (stream->strh->type == GST_RIFF_FCC_vids)
4807           GST_BUFFER_OFFSET (buf) = stream->current_frame - 1;
4808         else
4809           GST_BUFFER_OFFSET (buf) = GST_BUFFER_OFFSET_NONE;
4810
4811         gst_buffer_set_caps (buf, GST_PAD_CAPS (stream->pad));
4812         GST_DEBUG_OBJECT (avi,
4813             "Pushing buffer with time=%" GST_TIME_FORMAT ", duration %"
4814             GST_TIME_FORMAT ", offset %" G_GUINT64_FORMAT
4815             " and size %d over pad %s", GST_TIME_ARGS (next_ts),
4816             GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)), GST_BUFFER_OFFSET (buf),
4817             size, GST_PAD_NAME (stream->pad));
4818
4819         /* update current position in the segment */
4820         gst_segment_set_last_stop (&avi->segment, GST_FORMAT_TIME, next_ts);
4821
4822         /* mark discont when pending */
4823         if (G_UNLIKELY (stream->discont)) {
4824           GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
4825           stream->discont = FALSE;
4826         }
4827         res = gst_pad_push (stream->pad, buf);
4828
4829         /* combine flows */
4830         res = gst_avi_demux_combine_flows (avi, stream, res);
4831         if (G_UNLIKELY (res != GST_FLOW_OK)) {
4832           GST_DEBUG ("Push failed; %s", gst_flow_get_name (res));
4833           return res;
4834         }
4835       }
4836     }
4837   }
4838
4839 done:
4840   return res;
4841
4842   /* ERRORS */
4843 wrong_format:
4844   {
4845     GST_DEBUG_OBJECT (avi, "format %s != GST_FORMAT_TIME",
4846         gst_format_get_name (format));
4847     res = GST_FLOW_ERROR;
4848     goto done;
4849   }
4850 }
4851
4852 /*
4853  * Send pending tags.
4854  */
4855 static void
4856 push_tag_lists (GstAviDemux * avi)
4857 {
4858   guint i;
4859
4860   if (!avi->got_tags)
4861     return;
4862
4863   GST_DEBUG_OBJECT (avi, "Pushing pending tag lists");
4864
4865   for (i = 0; i < avi->num_streams; i++)
4866     if (avi->stream[i].pad && avi->stream[i].taglist) {
4867       GST_DEBUG_OBJECT (avi->stream[i].pad, "Tags: %" GST_PTR_FORMAT,
4868           avi->stream[i].taglist);
4869       gst_element_found_tags_for_pad (GST_ELEMENT (avi), avi->stream[i].pad,
4870           avi->stream[i].taglist);
4871       avi->stream[i].taglist = NULL;
4872     }
4873
4874   if (avi->globaltags == NULL)
4875     avi->globaltags = gst_tag_list_new ();
4876
4877   gst_tag_list_add (avi->globaltags, GST_TAG_MERGE_REPLACE,
4878       GST_TAG_CONTAINER_FORMAT, "AVI", NULL);
4879
4880   GST_DEBUG_OBJECT (avi, "Global tags: %" GST_PTR_FORMAT, avi->globaltags);
4881   gst_element_found_tags (GST_ELEMENT (avi), avi->globaltags);
4882   avi->globaltags = NULL;
4883   avi->got_tags = FALSE;
4884 }
4885
4886 static void
4887 gst_avi_demux_loop (GstPad * pad)
4888 {
4889   GstFlowReturn res;
4890   GstAviDemux *avi = GST_AVI_DEMUX (GST_PAD_PARENT (pad));
4891
4892   switch (avi->state) {
4893     case GST_AVI_DEMUX_START:
4894       if (G_UNLIKELY ((res =
4895                   gst_avi_demux_stream_init_pull (avi)) != GST_FLOW_OK)) {
4896         GST_WARNING ("stream_init flow: %s", gst_flow_get_name (res));
4897         goto pause;
4898       }
4899       avi->state = GST_AVI_DEMUX_HEADER;
4900       /* fall-through */
4901     case GST_AVI_DEMUX_HEADER:
4902       if (G_UNLIKELY ((res =
4903                   gst_avi_demux_stream_header_pull (avi)) != GST_FLOW_OK)) {
4904         GST_WARNING ("stream_header flow: %s", gst_flow_get_name (res));
4905         goto pause;
4906       }
4907       avi->state = GST_AVI_DEMUX_MOVI;
4908       break;
4909     case GST_AVI_DEMUX_MOVI:
4910       if (G_UNLIKELY (avi->seek_event)) {
4911         gst_avi_demux_push_event (avi, avi->seek_event);
4912         avi->seek_event = NULL;
4913       }
4914       if (G_UNLIKELY (avi->got_tags)) {
4915         push_tag_lists (avi);
4916       }
4917       /* process each index entry in turn */
4918       res = gst_avi_demux_loop_data (avi);
4919
4920       /* pause when error */
4921       if (G_UNLIKELY (res != GST_FLOW_OK)) {
4922         GST_INFO ("stream_movi flow: %s", gst_flow_get_name (res));
4923         goto pause;
4924       }
4925       break;
4926     default:
4927       GST_ERROR_OBJECT (avi, "unknown state %d", avi->state);
4928       res = GST_FLOW_ERROR;
4929       goto pause;
4930   }
4931
4932   GST_LOG_OBJECT (avi, "state: %d res:%s", avi->state, gst_flow_get_name (res));
4933
4934   return;
4935
4936   /* ERRORS */
4937 pause:
4938   GST_LOG_OBJECT (avi, "pausing task, reason %s", gst_flow_get_name (res));
4939   avi->segment_running = FALSE;
4940   gst_pad_pause_task (avi->sinkpad);
4941
4942   if (GST_FLOW_IS_FATAL (res) || (res == GST_FLOW_NOT_LINKED)) {
4943     gboolean push_eos = TRUE;
4944
4945     if (res == GST_FLOW_UNEXPECTED) {
4946       /* handle end-of-stream/segment */
4947       if (avi->segment.flags & GST_SEEK_FLAG_SEGMENT) {
4948         gint64 stop;
4949
4950         if ((stop = avi->segment.stop) == -1)
4951           stop = avi->segment.duration;
4952
4953         GST_INFO_OBJECT (avi, "sending segment_done");
4954
4955         gst_element_post_message
4956             (GST_ELEMENT (avi),
4957             gst_message_new_segment_done (GST_OBJECT (avi), GST_FORMAT_TIME,
4958                 stop));
4959         push_eos = FALSE;
4960       }
4961     } else {
4962       /* for fatal errors we post an error message */
4963       GST_ELEMENT_ERROR (avi, STREAM, FAILED,
4964           (_("Internal data stream error.")),
4965           ("streaming stopped, reason %s", gst_flow_get_name (res)));
4966     }
4967     if (push_eos) {
4968       GST_INFO_OBJECT (avi, "sending eos");
4969       if (!gst_avi_demux_push_event (avi, gst_event_new_eos ()) &&
4970           (res == GST_FLOW_UNEXPECTED)) {
4971         GST_ELEMENT_ERROR (avi, STREAM, DEMUX,
4972             (NULL), ("got eos but no streams (yet)"));
4973       }
4974     }
4975   }
4976 }
4977
4978
4979 static GstFlowReturn
4980 gst_avi_demux_chain (GstPad * pad, GstBuffer * buf)
4981 {
4982   GstFlowReturn res;
4983   GstAviDemux *avi = GST_AVI_DEMUX (GST_PAD_PARENT (pad));
4984
4985   GST_DEBUG ("Store %d bytes in adapter", GST_BUFFER_SIZE (buf));
4986   gst_adapter_push (avi->adapter, buf);
4987
4988   switch (avi->state) {
4989     case GST_AVI_DEMUX_START:
4990       if ((res = gst_avi_demux_stream_init_push (avi)) != GST_FLOW_OK) {
4991         GST_WARNING ("stream_init flow: %s", gst_flow_get_name (res));
4992         break;
4993       }
4994       break;
4995     case GST_AVI_DEMUX_HEADER:
4996       if ((res = gst_avi_demux_stream_header_push (avi)) != GST_FLOW_OK) {
4997         GST_WARNING ("stream_header flow: %s", gst_flow_get_name (res));
4998         break;
4999       }
5000       break;
5001     case GST_AVI_DEMUX_MOVI:
5002       if (G_UNLIKELY (avi->seek_event)) {
5003         gst_avi_demux_push_event (avi, avi->seek_event);
5004         avi->seek_event = NULL;
5005       }
5006       if (G_UNLIKELY (avi->got_tags)) {
5007         push_tag_lists (avi);
5008       }
5009       res = gst_avi_demux_stream_data (avi);
5010       break;
5011     default:
5012       GST_ELEMENT_ERROR (avi, STREAM, FAILED, (NULL),
5013           ("Illegal internal state"));
5014       res = GST_FLOW_ERROR;
5015       break;
5016   }
5017
5018   GST_DEBUG_OBJECT (avi, "state: %d res:%s", avi->state,
5019       gst_flow_get_name (res));
5020
5021   if (G_UNLIKELY (avi->abort_buffering)) {
5022     avi->abort_buffering = FALSE;
5023     res = GST_FLOW_ERROR;
5024     GST_ELEMENT_ERROR (avi, STREAM, DEMUX, NULL, ("unhandled buffer size"));
5025   }
5026
5027   return res;
5028 }
5029
5030 static gboolean
5031 gst_avi_demux_sink_activate (GstPad * sinkpad)
5032 {
5033   if (gst_pad_check_pull_range (sinkpad)) {
5034     GST_DEBUG ("going to pull mode");
5035     return gst_pad_activate_pull (sinkpad, TRUE);
5036   } else {
5037     GST_DEBUG ("going to push (streaming) mode");
5038     return gst_pad_activate_push (sinkpad, TRUE);
5039   }
5040 }
5041
5042 static gboolean
5043 gst_avi_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
5044 {
5045   GstAviDemux *avi = GST_AVI_DEMUX (GST_OBJECT_PARENT (sinkpad));
5046
5047   if (active) {
5048     avi->segment_running = TRUE;
5049     avi->streaming = FALSE;
5050     return gst_pad_start_task (sinkpad, (GstTaskFunction) gst_avi_demux_loop,
5051         sinkpad);
5052   } else {
5053     avi->segment_running = FALSE;
5054     return gst_pad_stop_task (sinkpad);
5055   }
5056 }
5057
5058 static gboolean
5059 gst_avi_demux_activate_push (GstPad * pad, gboolean active)
5060 {
5061   GstAviDemux *avi = GST_AVI_DEMUX (GST_OBJECT_PARENT (pad));
5062
5063   if (active) {
5064     GST_DEBUG ("avi: activating push/chain function");
5065     avi->streaming = TRUE;
5066   } else {
5067     GST_DEBUG ("avi: deactivating push/chain function");
5068   }
5069
5070   return TRUE;
5071 }
5072
5073 static GstStateChangeReturn
5074 gst_avi_demux_change_state (GstElement * element, GstStateChange transition)
5075 {
5076   GstStateChangeReturn ret;
5077   GstAviDemux *avi = GST_AVI_DEMUX (element);
5078
5079   switch (transition) {
5080     case GST_STATE_CHANGE_READY_TO_PAUSED:
5081       avi->streaming = FALSE;
5082       gst_segment_init (&avi->segment, GST_FORMAT_TIME);
5083       break;
5084     default:
5085       break;
5086   }
5087
5088   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
5089   if (ret == GST_STATE_CHANGE_FAILURE)
5090     goto done;
5091
5092   switch (transition) {
5093     case GST_STATE_CHANGE_PAUSED_TO_READY:
5094       gst_avi_demux_reset (avi);
5095       break;
5096     default:
5097       break;
5098   }
5099
5100 done:
5101   return ret;
5102 }