Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2013-08-21 18:32:50 +0400
committerSebastian Dröge <slomo@circular-chaos.org>2013-08-21 18:41:21 +0400
commit7692e9e569b42ccd2cba297003d2036899428aeb (patch)
treedbae1c826b41dda8b59a46c4013c05ed44b8e922 /sys/directsound/gstdirectsoundsink.c
parentcebfacd1fa53363fd7e8ff8daaae5e616583f8ed (diff)
directsoundsink: WAVEFORMATEX is unsigned for 8 bit integers, and signed for others
Probably fixes https://bugzilla.gnome.org/show_bug.cgi?id=705477
Diffstat (limited to 'sys/directsound/gstdirectsoundsink.c')
-rw-r--r--sys/directsound/gstdirectsoundsink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/directsound/gstdirectsoundsink.c b/sys/directsound/gstdirectsoundsink.c
index 72a02d726..56b04187c 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;"