diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-06-29 19:57:57 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-06-29 19:57:57 +0200 |
commit | 5500dd4a20c45d21795fcb28fc8e5fd15a0f9404 (patch) | |
tree | 877d6239601121fc5c694154e21a849479232680 | |
parent | b03a4d9155ea07c1f4cb57e2a26ed73840f05579 (diff) |
matroskamux: Fix compiler warnings when compiling with G_DISABLE_ASSERT
-rw-r--r-- | gst/matroska/matroska-mux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index 76328fc0e..8c76cd035 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"); |