asfdemux: fix build on C89 compilers
authorMatej Knopp <matej.knopp@gmail.com>
Wed, 31 Jul 2013 23:34:05 +0000 (01:34 +0200)
committerSebastian Dröge <slomo@circular-chaos.org>
Thu, 8 Aug 2013 09:56:19 +0000 (11:56 +0200)
gst/asfdemux/gstasfdemux.c

index 36402f7..b64ee40 100644 (file)
@@ -1378,9 +1378,10 @@ gst_asf_demux_update_caps_from_payload (GstASFDemux * demux, AsfStream * stream)
      and often set wrong, inspecting the data is the only way that seem to be working */
   GstTypeFindProbability prob = GST_TYPE_FIND_NONE;
   GstCaps *caps = NULL;
+  int i;
   GstAdapter *adapter = gst_adapter_new ();
 
-  for (int i = 0; i < stream->payloads->len && prob < GST_TYPE_FIND_LIKELY; ++i) {
+  for (i = 0; i < stream->payloads->len && prob < GST_TYPE_FIND_LIKELY; ++i) {
     const guint8 *data;
     AsfPayload *payload;
     int len;