Original commit message from CVS:
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
* gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
Set depth and width for alaw/mulaw (fixes #326601).
+2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
+
+ Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
+ Set depth and width for alaw/mulaw (fixes #326601).
+
2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
* tests/icles/Makefile.am:
} else if (!strncmp (mimetype, "audio/x-alaw", 12)) {
spec->type = GST_BUFTYPE_A_LAW;
spec->format = GST_A_LAW;
+ spec->width = 8;
+ spec->depth = 8;
} else if (!strncmp (mimetype, "audio/x-mulaw", 13)) {
spec->type = GST_BUFTYPE_MU_LAW;
spec->format = GST_MU_LAW;
+ spec->width = 8;
+ spec->depth = 8;
} else {
goto parse_error;
}