mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
mpegtsmux: fix uninitialized variable warning
https://bugzilla.gnome.org/show_bug.cgi?id=710759
This commit is contained in:
parent
84fbc08c25
commit
e7687dbaa2
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ mpegtsmux_prepare_teletext (GstBuffer * buf, MpegTsPadData * pad_data,
|
|||
GstBuffer *out_buf;
|
||||
guint8 *data, *odata;
|
||||
gint size, stuff;
|
||||
gboolean add_id;
|
||||
gboolean add_id = FALSE;
|
||||
GstMapInfo map, omap;
|
||||
|
||||
gst_buffer_map (buf, &map, GST_MAP_READ);
|
||||
|
|
Loading…
Reference in a new issue