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