mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
oggdemux: silence a maybe-unitialized warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
parent
3743f69c85
commit
e2d143f65d
1 changed files with 1 additions and 1 deletions
|
@ -4916,7 +4916,7 @@ gst_ogg_demux_loop (GstOggPad * pad)
|
||||||
{
|
{
|
||||||
GstOggDemux *ogg;
|
GstOggDemux *ogg;
|
||||||
gboolean res;
|
gboolean res;
|
||||||
GstFlowReturn ret;
|
GstFlowReturn ret = GST_FLOW_ERROR;
|
||||||
GstEvent *seek;
|
GstEvent *seek;
|
||||||
|
|
||||||
ogg = GST_OGG_DEMUX (GST_OBJECT_PARENT (pad));
|
ogg = GST_OGG_DEMUX (GST_OBJECT_PARENT (pad));
|
||||||
|
|
Loading…
Reference in a new issue