From 7b69f427f11e9c936e624e34863f2956232af5b1 Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Tue, 9 Jul 2013 19:10:17 +0200 Subject: [PATCH] qtdemux: correct argument order in gst_util_uint64_scale_int_round https://bugzilla.gnome.org/show_bug.cgi?id=703350 --- gst/isomp4/qtdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index 55d04eac49..ca5f9d5a7a 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -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); }