mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
gst/: Printf format fixes (#476128).
Original commit message from CVS: Patch by: Peter Kjellerstedt <pkj at axis com> * gst-libs/gst/app/gstappsink.c: * gst/flv/gstflvdemux.c: * gst/flv/gstflvparse.c: * gst/interleave/deinterleave.c: * gst/switch/gstswitch.c: Printf format fixes (#476128).
This commit is contained in:
parent
3b78ab50ef
commit
eb2aee1b34
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ no_channels:
|
|||
static GstFlowReturn
|
||||
gst_deinterleave_process (GstDeinterleave * self, GstBuffer * buf)
|
||||
{
|
||||
GstFlowReturn ret;
|
||||
GstFlowReturn ret = GST_FLOW_OK; /* initialized to silence a warning */
|
||||
GList *srcs;
|
||||
guint bufsize, i, j, channels, pads_pushed, nframes;
|
||||
GstBuffer **buffers_out;
|
||||
|
|
Loading…
Reference in a new issue