From 7692e9e569b42ccd2cba297003d2036899428aeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 21 Aug 2013 16:32:50 +0200 Subject: [PATCH] directsoundsink: WAVEFORMATEX is unsigned for 8 bit integers, and signed for others Probably fixes https://bugzilla.gnome.org/show_bug.cgi?id=705477 --- sys/directsound/gstdirectsoundsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/directsound/gstdirectsoundsink.c b/sys/directsound/gstdirectsoundsink.c index 72a02d7266..56b04187c2 100644 --- a/sys/directsound/gstdirectsoundsink.c +++ b/sys/directsound/gstdirectsoundsink.c @@ -114,7 +114,7 @@ static GstStaticPadTemplate directsoundsink_sink_factory = "layout = (string) interleaved, " "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; " "audio/x-raw, " - "format = (string) S8, " + "format = (string) U8, " "layout = (string) interleaved, " "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ];" "audio/x-ac3, framed = (boolean) true;"