Nikolay Sivov : winegstreamer: Set MF_MT_AUDIO_BLOCK_ALIGNMENT attribute for raw types.

Alexandre Julliard julliard at winehq.org
Fri Dec 10 15:07:50 CST 2021


Module: wine
Branch: master
Commit: bd28c369d052bd33a602e4f7e699d815b9f0e15f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=bd28c369d052bd33a602e4f7e699d815b9f0e15f

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Fri Dec 10 11:02:03 2021 +0300

winegstreamer: Set MF_MT_AUDIO_BLOCK_ALIGNMENT attribute for raw types.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winegstreamer/mfplat.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/winegstreamer/mfplat.c b/dlls/winegstreamer/mfplat.c
index 58200dc409a..5404728ba83 100644
--- a/dlls/winegstreamer/mfplat.c
+++ b/dlls/winegstreamer/mfplat.c
@@ -564,6 +564,7 @@ static IMFMediaType *mf_media_type_from_wg_format_audio(const struct wg_format *
             IMFMediaType_SetUINT32(type, &MF_MT_AUDIO_NUM_CHANNELS, format->u.audio.channels);
             IMFMediaType_SetUINT32(type, &MF_MT_AUDIO_CHANNEL_MASK, format->u.audio.channel_mask);
             IMFMediaType_SetUINT32(type, &MF_MT_ALL_SAMPLES_INDEPENDENT, TRUE);
+            IMFMediaType_SetUINT32(type, &MF_MT_AUDIO_BLOCK_ALIGNMENT, format->u.audio.channels * audio_formats[i].depth / 8);
 
             return type;
         }




More information about the wine-cvs mailing list