mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
directsoundsink: WAVEFORMATEX is unsigned for 8 bit integers, and signed for others
Probably fixes https://bugzilla.gnome.org/show_bug.cgi?id=705477
This commit is contained in:
parent
cebfacd1fa
commit
7692e9e569
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ static GstStaticPadTemplate directsoundsink_sink_factory =
|
||||||
"layout = (string) interleaved, "
|
"layout = (string) interleaved, "
|
||||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; "
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; "
|
||||||
"audio/x-raw, "
|
"audio/x-raw, "
|
||||||
"format = (string) S8, "
|
"format = (string) U8, "
|
||||||
"layout = (string) interleaved, "
|
"layout = (string) interleaved, "
|
||||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ];"
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ];"
|
||||||
"audio/x-ac3, framed = (boolean) true;"
|
"audio/x-ac3, framed = (boolean) true;"
|
||||||
|
|
Loading…
Reference in a new issue