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