mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
oggdemux: Fix unitialized variable.
If the package isn't handled, gracefully return GST_FLOW_OK.
This commit is contained in:
parent
5e6162eebb
commit
7d2c90423a
1 changed files with 1 additions and 1 deletions
|
@ -670,7 +670,7 @@ static GstFlowReturn
|
|||
gst_ogg_pad_submit_packet (GstOggPad * pad, ogg_packet * packet)
|
||||
{
|
||||
gint64 granule;
|
||||
GstFlowReturn ret;
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
|
||||
GstOggDemux *ogg = pad->ogg;
|
||||
|
||||
|
|
Loading…
Reference in a new issue