diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index 8df0394541..8d009b6ee4 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -4344,12 +4344,12 @@ gst_qt_mux_video_sink_set_caps (GstQTPad * qtpad, GstCaps * caps) } else if (strcmp (mimetype, "video/x-dirac") == 0) { entry.fourcc = FOURCC_drac; } else if (strcmp (mimetype, "video/x-qt-part") == 0) { - guint32 fourcc; + guint32 fourcc = 0; gst_structure_get_uint (structure, "format", &fourcc); entry.fourcc = fourcc; } else if (strcmp (mimetype, "video/x-mp4-part") == 0) { - guint32 fourcc; + guint32 fourcc = 0; gst_structure_get_uint (structure, "format", &fourcc); entry.fourcc = fourcc;