mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
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:
parent
1997acc8b2
commit
7b69f427f1
1 changed files with 1 additions and 1 deletions
|
@ -5542,7 +5542,7 @@ gst_qtdemux_configure_stream (GstQTDemux * qtdemux, QtDemuxStream * stream)
|
||||||
stream->fps_d = factor;
|
stream->fps_d = factor;
|
||||||
else
|
else
|
||||||
stream->fps_d =
|
stream->fps_d =
|
||||||
gst_util_uint64_scale_int_round (factor, stream->duration,
|
gst_util_uint64_scale_int_round (stream->duration, factor,
|
||||||
stream->n_samples);
|
stream->n_samples);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue