mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
qtdemux: fragmented support; properly init return variable value
Fixes #655918.
This commit is contained in:
parent
2603c2079d
commit
a3e9b676c0
1 changed files with 1 additions and 1 deletions
|
@ -5204,7 +5204,7 @@ qtdemux_add_fragmented_samples (GstQTDemux * qtdemux)
|
|||
guint64 length, offset;
|
||||
GstBuffer *buf = NULL;
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
GstFlowReturn res = TRUE;
|
||||
GstFlowReturn res = GST_FLOW_OK;
|
||||
|
||||
offset = qtdemux->moof_offset;
|
||||
GST_DEBUG_OBJECT (qtdemux, "next moof at offset %" G_GUINT64_FORMAT, offset);
|
||||
|
|
Loading…
Reference in a new issue