From: Brendan McGrath <bmcgrath(a)codeweavers.com> h264parse does not correctly determine 'nal' alignment if this caps is provided. Fixes video glitches in QuantumBreak. --- dlls/winegstreamer/wg_media_type.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dlls/winegstreamer/wg_media_type.c b/dlls/winegstreamer/wg_media_type.c index 300dace5c52..f2d6e273df2 100644 --- a/dlls/winegstreamer/wg_media_type.c +++ b/dlls/winegstreamer/wg_media_type.c @@ -295,7 +295,6 @@ static void init_caps_from_video_h264(GstCaps *caps, const MFVIDEOFORMAT *format gst_structure_remove_field(gst_caps_get_structure(caps, 0), "format"); gst_structure_set_name(gst_caps_get_structure(caps, 0), "video/x-h264"); gst_caps_set_simple(caps, "stream-format", G_TYPE_STRING, "byte-stream", NULL); - gst_caps_set_simple(caps, "alignment", G_TYPE_STRING, "au", NULL); } static void init_caps_from_video_wmv(GstCaps *caps, const MFVIDEOFORMAT *format, UINT format_size, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6533