mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
matroskamux: Fix compiler warnings when compiling with G_DISABLE_ASSERT
This commit is contained in:
parent
b03a4d9155
commit
5500dd4a20
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue