mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
flvmux: index timestamps should be in seconds, not milliseconds
This commit is contained in:
parent
77509c80c9
commit
f9bf5970a3
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ gst_flv_mux_push (GstFlvMux * mux, GstBuffer * buffer)
|
||||||
GstFlvMuxIndexEntry *entry = g_slice_new (GstFlvMuxIndexEntry);
|
GstFlvMuxIndexEntry *entry = g_slice_new (GstFlvMuxIndexEntry);
|
||||||
entry->position = mux->byte_count;
|
entry->position = mux->byte_count;
|
||||||
entry->time =
|
entry->time =
|
||||||
gst_guint64_to_gdouble (GST_BUFFER_TIMESTAMP (buffer)) / GST_MSECOND;
|
gst_guint64_to_gdouble (GST_BUFFER_TIMESTAMP (buffer)) / GST_SECOND;
|
||||||
mux->index = g_list_prepend (mux->index, entry);
|
mux->index = g_list_prepend (mux->index, entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue