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