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