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