Skip to content
Snippets Groups Projects
Commit 7692e9e5 authored by Sebastian Dröge's avatar Sebastian Dröge :tea:
Browse files

directsoundsink: WAVEFORMATEX is unsigned for 8 bit integers, and signed for others

Probably fixes
https://bugzilla.gnome.org/show_bug.cgi?id=705477
parent cebfacd1
No related branches found
No related tags found
No related merge requests found
......@@ -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;"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment