matroska: init endianess as such and signedness as boolean.

This commit is contained in:
Stefan Kost 2009-03-31 16:25:58 +03:00
parent 0889ac1092
commit ef7bcf7bd1

View file

@ -1300,8 +1300,9 @@ gst_matroska_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps)
return TRUE;
} else if (!strcmp (mimetype, "audio/x-raw-int")) {
gint endianness, width, depth;
gboolean signedness = G_LITTLE_ENDIAN;
gint width, depth;
gint endianness = G_LITTLE_ENDIAN;
gboolean signedness = TRUE;
if (!gst_structure_get_int (structure, "width", &width) ||
!gst_structure_get_int (structure, "depth", &depth) ||