Commit ec0d6323 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

winegstreamer: Report MEDIASUBTYPE_IEEE_FLOAT for float types.

parent aec87013
...@@ -169,6 +169,7 @@ static gboolean amt_from_gst_caps_audio_raw(const GstCaps *caps, AM_MEDIA_TYPE * ...@@ -169,6 +169,7 @@ static gboolean amt_from_gst_caps_audio_raw(const GstCaps *caps, AM_MEDIA_TYPE *
wfe->dwChannelMask = 0; wfe->dwChannelMask = 0;
} }
if (GST_AUDIO_INFO_IS_FLOAT(&ainfo)) { if (GST_AUDIO_INFO_IS_FLOAT(&ainfo)) {
amt->subtype = MEDIASUBTYPE_IEEE_FLOAT;
wfe->SubFormat = KSDATAFORMAT_SUBTYPE_IEEE_FLOAT; wfe->SubFormat = KSDATAFORMAT_SUBTYPE_IEEE_FLOAT;
wfx->wBitsPerSample = wfe->Samples.wValidBitsPerSample = 32; wfx->wBitsPerSample = wfe->Samples.wValidBitsPerSample = 32;
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment