mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
qtdemux: check denominator isn't zero before scaling duration.
When gst_qtdemux_configure_stream sets fps_d, check that n_samples is non-zero before using it as a denominator to scale the stream duration. https://bugzilla.gnome.org/show_bug.cgi?id=706076
This commit is contained in:
parent
b1e442236f
commit
3e9dea3f8c
1 changed files with 1 additions and 1 deletions
|
@ -5596,7 +5596,7 @@ gst_qtdemux_configure_stream (GstQTDemux * qtdemux, QtDemuxStream * stream)
|
||||||
|
|
||||||
stream->fps_n = stream->timescale * factor;
|
stream->fps_n = stream->timescale * factor;
|
||||||
|
|
||||||
if (stream->duration == 0)
|
if (stream->duration == 0 || stream->n_samples == 0)
|
||||||
stream->fps_d = factor;
|
stream->fps_d = factor;
|
||||||
else
|
else
|
||||||
stream->fps_d =
|
stream->fps_d =
|
||||||
|
|
Loading…
Reference in a new issue