qtdemux: correct argument order in gst_util_uint64_scale_int_round
authorMatej Knopp <matej.knopp@gmail.com>
Tue, 9 Jul 2013 17:10:17 +0000 (19:10 +0200)
committerSebastian Dröge <slomo@circular-chaos.org>
Wed, 10 Jul 2013 07:20:17 +0000 (09:20 +0200)
https://bugzilla.gnome.org/show_bug.cgi?id=703350

gst/isomp4/qtdemux.c

index 55d04ea..ca5f9d5 100644 (file)
@@ -5542,7 +5542,7 @@ gst_qtdemux_configure_stream (GstQTDemux * qtdemux, QtDemuxStream * stream)
         stream->fps_d = factor;
       else
         stream->fps_d =
-            gst_util_uint64_scale_int_round (factor, stream->duration,
+            gst_util_uint64_scale_int_round (stream->duration, factor,
             stream->n_samples);
     }