mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
mpegtsdemux: fix uninitialized variable warning
https://bugzilla.gnome.org/show_bug.cgi?id=710759
This commit is contained in:
parent
b05a1f75fd
commit
84fbc08c25
1 changed files with 1 additions and 1 deletions
|
@ -728,7 +728,7 @@ out:
|
|||
static gboolean
|
||||
mpegts_packetizer_sync (MpegTSPacketizer2 * packetizer)
|
||||
{
|
||||
gboolean found;
|
||||
gboolean found = FALSE;
|
||||
guint8 *data;
|
||||
guint packet_size;
|
||||
gsize size, sync_offset, i;
|
||||
|
|
Loading…
Reference in a new issue