mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
jp2kdecimator: fix maybe-uninitialized compiler error
This commit is contained in:
parent
998e19896b
commit
78acb90a80
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ gst_jp2k_decimator_sink_chain (GstPad * pad, GstObject * parent,
|
|||
{
|
||||
GstJP2kDecimator *self = GST_JP2K_DECIMATOR (parent);
|
||||
GstFlowReturn ret;
|
||||
GstBuffer *outbuf;
|
||||
GstBuffer *outbuf = NULL;
|
||||
|
||||
GST_LOG_OBJECT (pad,
|
||||
"Handling inbuf with timestamp %" GST_TIME_FORMAT " and duration %"
|
||||
|
|
Loading…
Reference in a new issue