mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
flvmux: Don't calculate duration in streamable mode
There's no header to rewrite, so the duration is left unused. https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/merge_requests/418
This commit is contained in:
parent
a7c887b197
commit
6fdb6ece6e
1 changed files with 1 additions and 1 deletions
|
@ -935,7 +935,7 @@ tags:
|
|||
if (!full)
|
||||
goto end;
|
||||
|
||||
if (mux->duration == GST_CLOCK_TIME_NONE) {
|
||||
if (!mux->streamable && mux->duration == GST_CLOCK_TIME_NONE) {
|
||||
GList *l;
|
||||
guint64 dur;
|
||||
|
||||
|
|
Loading…
Reference in a new issue