qtdemux: correct argument order in gst_util_uint64_scale_int_round

https://bugzilla.gnome.org/show_bug.cgi?id=703350
This commit is contained in:
Matej Knopp 2013-07-09 19:10:17 +02:00 committed by Sebastian Dröge
parent 1997acc8b2
commit 7b69f427f1

View 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);
}