From 5500dd4a20c45d21795fcb28fc8e5fd15a0f9404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 29 Jun 2014 19:57:57 +0200 Subject: [PATCH] matroskamux: Fix compiler warnings when compiling with G_DISABLE_ASSERT --- gst/matroska/matroska-mux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index 76328fc0ed..8c76cd0359 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -1911,8 +1911,8 @@ gst_matroska_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps) guint8 *codec_priv; guint codec_priv_size; guint16 format = 0; - gint block_align; - gint bitrate; + gint block_align = 0; + gint bitrate = 0; if (samplerate == 0 || channels == 0) { GST_WARNING_OBJECT (mux, "Missing channels/samplerate on caps");